html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
}
.gold-gradient {
    background: linear-gradient(45deg, #d4af37, #f7e08a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-canvas {
    background-color: #fdfcfb;
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
}
.hero-overlay {
    background: rgba(10, 25, 47, 0.6);
}

@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(10, 25, 47, 0.75);
    }
    .paint-text-effect {
        animation: none;
        -webkit-text-fill-color: white;
    }
    #accueil h1 {
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
}

.paint-text-effect {
    background: linear-gradient(
        to right,
        #ffffff 20%,
        #d4af37 40%,
        #f2dcdb 60%,
        #ffffff 80%
    );
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.collections-swiper {
    padding-bottom: 50px;
}

.collections-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.85);
    opacity: 0.6;
}
.collections-swiper .swiper-slide-active,
.collections-swiper .swiper-slide-duplicate-active {
    transform: scale(1); 
    opacity: 1;
}

.collections-swiper .swiper-slide .group {
    transition: padding 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.collections-swiper .swiper-slide-active .group,
.collections-swiper .swiper-slide-duplicate-active .group {
    border: 2px solid #555;
    padding: 10px;
    background-color: #cccccc;
    background-image: url('https://i.imgur.com/k2tCgEa.jpeg');
    background-size: cover;
    background-clip: padding-box;
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.35),
        inset 0 0 0 8px #fdfcfb;
}

.swiper-button-next, .swiper-button-prev {
    color: #d4af37 !important;
}

.swiper-pagination-bullet-active {
    background: #d4af37 !important;
}

/* --- CORRECTION MENU : BLANC ET GRAS --- */
#primary-menu a, 
.md\:flex.items-center.space-x-8 a,
header nav a {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-family: 'Montserrat', sans-serif !important; 
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    opacity: 1 !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

#primary-menu a:hover,
header nav a:hover {
    color: #d4af37 !important;
    transition: color 0.3s ease;
}

#mobile-menu a {
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 12px 0;
    display: block;
    text-align: center;
}