/* GLOBAL */
body {
    font-family: 'Lora', serif;
    background: #0D0D0D; 
    color: #0D0D0D;
}

/* le bandeau défilant*/
.bandeau-container {
    width: 100%;
    background-color: #333; 
    color: #fff; 
    overflow: hidden; 
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000; 
    padding: 10px 0;
    height: 33px;        
    line-height: 33px;   
    font-size: 16px;     
    padding: 0;
}

/* Le texte qui bouge */
.texte-defilant {
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    /* L'animation : nom, durée, courbe de vitesse, répétition */
    animation: defilement 15s linear infinite; 
    display: inline-block;
    padding-left: 100%; /* Commence hors de l'écran à droite */
}

/* La définition de l'animation */
@keyframes defilement {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #0D0D0D; /* noir */
}

.logo {
    display: flex;
    align-items: center;
    color: #C08E4A;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    
}

.logo img {
    height: 110px; 
}

/* NAV */
nav a {
    margin: 0 15px;
    color: #F2E5C7; /* or pâle */
    text-decoration: none;
    font-size: 20px;
}

nav a:hover {
    color: #D4AF37; /* or brillant */
}

/* HERO */
.hero {
    background: url('hero.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: #FAF7F2; /* clair */
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #F2E5C7; /* or doux */
}

.hero p {
    font-size: 18px;
}

/* BUTTONS */
.btn {
    background-color: #D4AF37; /* or */
    color: #0D0D0D; /* noir */
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 17px;
    display:inline-block;
    font-size: 20px;
}

.btn:hover {
    background-color: #B8952D; /* or foncé */
}

/* TITRES */
.best-sellers h2,
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    color: gold;
    border-left: 5px solid #D4AF37; 
    padding-left: 12px;
}

/* PRODUITS */
.items .item img {
    height: 500px;
    border-radius: 10px;
    border: 2px solid #D4AF37; /* cadre or */

}

.items {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.item
    {
        width: 350px;
    }

.item h3, .item h4, .item h5 {
    margin-top: 15px;
    margin-bottom: 5px;
    color: #C08E4A;
    font-size: 22px;
}

.item p {
    margin-top: 1px;
    margin-bottom: 1px;
    color: white;
    font-size: 18px;
}


/* ABOUT SECTION */
.about {
    background: #0D0D0D;
    color: #F2E5C7;
    padding: 80px 60px;
    border-radius: 30px;
    font-size: 30px;
}

.about-text h2 {
    color: #D4AF37;
}

h3 {
    color: #D4AF37; /* doré */
    margin-right: 150px;
}

.about-text h6 {
    font-size: 24px;
    margin-bottom: 5px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 0px;
}

/* FOOTER */
footer {
    background-color: #0D0D0D;
    color: #F2E5C7;
    text-align: center;
    padding: 20px;
}

.site-footer { text-align: center; padding: 1.5rem 0; }
.social-links { margin-top: 0.6rem; display:flex; justify-content:center; gap:1rem; align-items:center; }
.social-links a { display:inline-block; }
.social-icon { width:36px; height:36px; display:block; object-fit:contain; }
.social-links a:focus { outline: 2px solid #000; outline-offset: 3px; }



/* BOUTIQUE – HERO */
.shop-hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #0D0D0D;  /* noir */
    color: #F2E5C7;             /* or pâle */
}

.shop-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #D4AF37;          /* or brillant */
    margin-bottom: 10px;
}

/* GRILLE DE PRODUITS */
.product-grid {
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* CARTE PRODUIT */
.product-card {
    background-color: #FAF7F2;  /* blanc cassé */
    border: 2px solid #D4AF37;  /* or subtil */
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #D4AF37;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    color: #0D0D0D;
    margin-bottom: 8px;
}

.price {
    color: #B8952D; /* or foncé */
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* OVERLAY DOUX POUR TRANSITION */
#transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0); /* transparent */
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, background 0.5s ease-in-out;
    z-index: 9999;
}

body.transitioning #transition-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.2); /* léger voile noir transparent */
}


/* PAGE PRODUIT PREMIUM */
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px;
    color: #fff;
    background: #000;
    min-height: 100vh;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.thumbnails img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}

.thumbnails img:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

.product-info h1 {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 28px;
    margin-bottom: 20px;
}

.product-description {
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-gold {
    background: #d4af37;
    color: #000;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.product-details {
    margin-top: 40px;
}

.product-details h2 {
    font-size: 26px;
    color: #d4af37;
    margin-bottom: 15px;
}

.product-details ul {
    list-style: none;
    padding: 0;
}

.product-details li {
    margin-bottom: 10px;
    font-size: 18px;
}

nav { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;

}

.page-content {
    max-width: 900px;
    margin: 120px auto 80px;
    padding: 0 20px;
    color: #fff;
    line-height: 1.8;
}

.page-content h1,
.page-content h2 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 35px;
}

.page-content p {
    margin-bottom: 20px;
    font-size: 20px;
}

blockquote {
    margin: 40px 0;
    padding-left: 20px;
    border-left: 3px solid #d4af37;
    font-style: italic;
    color: #ccc;
    font-size: 18px;
}

.site-footer {
    background: #0b0b0b;
    padding: 50px 20px 30px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.footer-brand img {
    width: 70px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-legal {
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.footer-legal a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal span {
    margin: 0 8px;
    color: #444;
}

.footer-legal a:hover {
    color: #d4af37;
}

.footer-copy {
    font-size: 12px;
    color: #555;
}

.buy-btn {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

.legal-text {
    font-size: 12px;
    color: #aaa;
    margin-top: 15px;
}

.legal-text a {
    color: #d4af37;
    text-decoration: none;
}

/* =========================================
   STYLE UNIQUEMENT POUR LA PAGE CONTACT
   ========================================= */

/* 1. Le fond d'écran juste pour cette section */
.mon-formulaire-specific {
    /* Ton image de fond ici */
    background-image: url('https://images.unsplash.com/photo-1563241527-30058e578672?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    
    /* Pour prendre toute la place disponible sans écraser le menu */
    width: 100%;
    min-height: 85vh; 
    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

/* Petit voile noir pour lisibilité */
.mon-formulaire-specific::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* 2. La carte effet verre (Glassmorphism) */
.mon-formulaire-specific .glass-container {
    position: relative;
    z-index: 1; /* Pour passer au dessus du voile noir */
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    color: white;
    gap: 40px;
}

/* 3. Style des textes à gauche */
.mon-formulaire-specific .contact-infos {
    flex: 1;
    min-width: 250px;
    font-size: 24px;
}

.mon-formulaire-specific .titre-contact {
    font-family: 'Playfair Display', serif; /* Ta police titre */
    color: #d4af37; /* Couleur Or */
    font-size: 2rem;
    margin-bottom: 15px;
}

.mon-formulaire-specific .details .ligne {
    margin-bottom: 10px;
    font-size: 20px;
}
.mon-formulaire-specific .details i {
    color: #d4af37;
    margin-right: 10px;
    width: 20px;
}

.mon-formulaire-specific .socials {
    margin-top: 20px;
    font-size: 1.5rem;
    letter-spacing: 15px;
    cursor: pointer;
}

/* 4. Style du Formulaire à droite */
.mon-formulaire-specific .the-form {
    flex: 1.2;
    min-width: 250px;
}

.mon-formulaire-specific .champ {
    margin-bottom: 15px;
}

.mon-formulaire-specific label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Champs de saisie (input) - Isolés pour ne pas toucher les autres pages */
.mon-formulaire-specific input, 
.mon-formulaire-specific textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.9);
    font-family: sans-serif;
    color: #333;
}

/* Bouton - Isolé */
.mon-formulaire-specific .btn-envoyer {
    width: 100%;
    padding: 12px;
    background-color: #d4af37;
    border: none;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    margin-top: 10px;
}

.mon-formulaire-specific .btn-envoyer:hover {
    background-color: white;
}

/* Mobile */
@media (max-width: 768px) {
    .mon-formulaire-specific .glass-container {
        flex-direction: column;
        padding: 20px;
    }
}

/* --- Correctif pour les icônes cliquables --- */

.mon-formulaire-specific .socials a {
    text-decoration: none; /* Enlève le soulignement moche */
    color: white;          /* Couleur de base de l'icône */
    margin-right: 15px;    /* Espace entre les icônes */
    transition: 0.3s;      /* Animation douce */
}

/* Quand on passe la souris dessus */
.mon-formulaire-specific .socials a:hover {
    color: #d4af37;       /* Devient couleur Or */
    transform: scale(1.2); /* Grossit légèrement */
}