/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BODY */
body {
    font-family: 'Nunito', sans-serif;
    padding-top: 80px;
    color: #01333a;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 12px 40px;
    z-index: 1000;
}

.menu-left img {
    height: 45px;
}

.menu-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.menu-links a {
    margin: 0 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #01333a;
}

.menu-links a:hover {
    color: #00d5be;
}

.menu-icon {
    margin-left: 28px;
}

/* SECTION ATELIER */
.atelier-section {
    background: #feca00;
    padding: 100px 80px;
    position: relative;
}

.atelier-texture {
    position: absolute;
    inset: 0;
    background-image: none;
}

.atelier-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.atelier-left img {
    max-width: 100%;
}

.atelier-right {
    max-width: 600px;
}

.atelier-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.atelier-right p {
    margin-bottom: 30px;
}

/* CONTACT */
.atelier-contact {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
}

/* CARROUSEL */
.carousel-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #01333a;
}

.carousel-btn:hover {
    color: #00d5be;
}

.carousel-viewport {
    width: 330px; /* 3 logos visibles */
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.carousel-track img {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .atelier-content {
        flex-direction: column;
        text-align: center;
    }

    .carousel-container {
        justify-content: center;
    }
}
