/*CHARTE GRAPHIQUE ET COULEURS - ABORE

   
   PALETTE DE COULEURS PRINCIPALE :
   
   - Or chaud principal : #C9A961 (doré luxueux)
   - Or clair : #D4AF37 (or classique)
   - Or foncé : #9D7B3A (or terreux)
   - Bronze : #8B6F47 (tons chauds)
   - Noir profond : #1A1A1A (élégance)
   - Noir doux : #2D2D2D (textes)
   - Crème : #F5F1E8 (fond lumineux)
   - Blanc cassé : #FAF8F5 (backgrounds)
   
   
   
   TYPOGRAPHIE :
 
   - Titres : 'Playfair Display' (serif élégant)
   - Texte : 'Montserrat' (sans-serif moderne)
   
   
   
   AMBIANCE :
  
   Luxe, raffinement, héritage africain, chaleur dorée,
   sophistication, prestige, élégance intemporelle */

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2D2D2D;
    background-color: #FAF8F5;
    line-height: 1.6;
    overflow-x: hidden;
}






/* SECTION HERO AVEC IMAGE DE FOND*/

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(
        rgba(26, 26, 26, 0.4), 
        rgba(26, 26, 26, 0.6)
    ), url('../images_produits/images1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}











/* Header transparent qui devient opaque au scroll */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
}

.header-transparent.scrolled {
    background: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}










/* Logo luxueux */
.logo-luxe {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #C9A961;
    letter-spacing: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}










/* Menu de navigation */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #FAF8F5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A961;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #C9A961;
}

.btn-compte {
    background: linear-gradient(135deg, #C9A961, #D4AF37);
    padding: 10px 25px;
    border-radius: 25px;
    color: #1A1A1A;
    font-weight: 500;
}

.btn-compte::after {
    display: none;
}

.btn-compte:hover {
    background: linear-gradient(135deg, #D4AF37, #C9A961);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.panier-icon {
    font-size: 16px;
}

/* Contenu du hero */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 40px 80px;
}

.hero-text {
    max-width: 900px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: #FAF8F5;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: #F5F1E8;
    margin-bottom: 45px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Boutons du hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #C9A961, #D4AF37);
    color: #1A1A1A;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.5);
    background: linear-gradient(135deg, #D4AF37, #C9A961);
}

.btn-secondary {
    background: transparent;
    color: #FAF8F5;
    border: 2px solid #C9A961;
}

.btn-secondary:hover {
    background: rgba(201, 169, 97, 0.2);
    transform: translateY(-3px);
    border-color: #D4AF37;
}





/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    color: #C9A961;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-arrow {
    color: #C9A961;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}









/* 
   SECTION COLLECTION DE PRODUITS
 */

.collection-section {
    background: #FAF8F5;
    padding: 100px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}







/* Grille de produits moderne */
.grille-produits-moderne {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.carte-produit-luxe {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.carte-produit-luxe:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.produit-image-container {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: #F5F1E8;
}

.produit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carte-produit-luxe:hover .produit-image {
    transform: scale(1.08);
}

.badge-nouveau {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C9A961, #D4AF37);
    color: #1A1A1A;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.produit-info {
    padding: 30px;
    text-align: center;
}

.produit-nom {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.produit-prix {
    color: #C9A961;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-voir-produit {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-voir-produit:hover {
    background: #1A1A1A;
    color: #FAF8F5;
}





/* Bouton voir plus */
.voir-plus-container {
    text-align: center;
    margin-top: 50px;
}

.btn-voir-plus {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #C9A961, #D4AF37);
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.btn-voir-plus:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}








/* SECTION VALEURS */

.valeurs-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 100px 0;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.valeur-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.valeur-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.4);
}

.valeur-icon {
    font-size: 50px;
    margin-bottom: 25px;
}

.valeur-titre {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #C9A961;
    margin-bottom: 15px;
}

.valeur-description {
    color: #F5F1E8;
    font-size: 14px;
    line-height: 1.8;
	
	
	
	
}

/* FOOTER MODERNE */

.footer-moderne {
    background: #1A1A1A;
    color: #F5F1E8;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-titre {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #C9A961;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-desc {
    color: #999;
    font-size: 14px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #C9A961;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C9A961;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #C9A961;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}








/* RESPONSIVE DESIGN */

@media (max-width: 1200px) {
    .grille-produits-moderne {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .valeurs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .nav-menu {
        display: none; /* À remplacer par un menu burger en production */
    }
    
    .grille-produits-moderne {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .valeurs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .container-header {
        padding: 0 20px;
    }
    
    .logo-luxe {
        font-size: 24px;
    }
}





/* ========================================
   PAGE DES CATÉGORIES – STYLE PREMIUM
   ======================================== */

/* Bandeau d’intro */
.categories-hero {
    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    padding: 160px 40px 120px;
    text-align: center;
    color: #FAF8F5;
}

.categories-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    color: #C9A961;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.categories-subtitle {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.85;
}

/* Grille des catégories */
.categories-section {
    padding: 100px 0;
}

.grid-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

/* Carte individuelle */
.categorie-card {
    display: block;
    background: white;
    border-radius: 14px;
    padding: 45px 30px;
    text-align: center;
    text-decoration: none;
    color: #1A1A1A;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(201,169,97,0.25);
}

.categorie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.18);
    border-color: #C9A961;
}

/* Icône élégante */
.categorie-icone {
    font-size: 48px;
    margin-bottom: 20px;
    color: #C9A961;
}

/* Nom de la catégorie */
.categorie-nom {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Description */
.categorie-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Bouton d’action */
.categorie-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #C9A961, #D4AF37);
    color: #1A1A1A;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.categorie-card:hover .categorie-btn {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201,169,97,0.35);
}

/* Responsive */
@media (max-width: 900px) {
    .grid-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-categories {
        grid-template-columns: 1fr;
    }

    .categories-title {
        font-size: 40px;
    }
}









