/* =========================================
   1. BASE & TYPOGRAPHIE (L'élégance commence ici)
   ========================================= */
:root {
    /* Palette Sombre */
    --bg-body: #050505;
    --bg-card: #141414;
    --text-main: #f4f4f4;
    --text-muted: #aaaaaa; /* Un peu plus clair pour la lisibilité */
    --accent: #c6a87c;        
    --accent-hover: #e5cca5;

    /* ---changement ici : TOUT en Montserrat --- */
    --font-title: 'Montserrat', sans-serif; /* Fini le Playfair Display */
    --font-text: 'Montserrat', sans-serif;
    
    --radius: 0px; /* On passe en angles droits pour faire plus "Pro/Archi" */
    --container-width: 1300px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* 1. CONFIGURATION GÉNÉRALE DU BODY (Comportement) */
body {
    background-color: var(--bg-body); /* Couleur de secours */
    
    /* Le secret pour que l'image ne bouge pas quand on scrolle */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Le reste de ton style habituel */
    color: var(--text-main);
    font-family: var(--font-text);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}


/* Important : On s'assure que le body gère bien les calques */
body {
    position: relative;
    min-height: 100vh;
}

/* LE VOILE NOIR (VERSION TRANSPARENTE 50%) */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0) 0%,        /* Haut : 100% Transparent (Image brute) */
        rgba(0,0,0,0) 60vh,      /* Hero : Reste transparent sur ton titre */
        rgba(0,0,0,0.9) 100vh,   /* Transition : Devient noir à 50% (Tu peux changer 0.5 en 0.7 si tu veux plus sombre) */
        rgba(0,0,0,0.9) 100%     /* Bas : Reste bloqué à 50% d'opacité jusqu'en bas */
    );
    
    z-index: 0;
    pointer-events: none;
}

/* =========================================
   IMAGES DE FOND (AVEC DÉGRADÉ INTÉGRÉ)
   ========================================= */

/* CONFIGURATION DES IMAGES DE FOND */
body.bg-home, body.bg-portfolio, body.bg-shop, body.bg-prestations, body.bg-contact {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Tes URLs d'images (Juste l'image) */
body.bg-home { background-image: url('https://images.unsplash.com/photo-1766859813732-20a127bb6023?q=80&w=1740&auto=format&fit=crop'); }
body.bg-portfolio { background-image: url('https://images.unsplash.com/photo-1447752875215-b2761acb3c5d?w=1600'); }
body.bg-shop { background-image: url('https://images.unsplash.com/photo-1764366795867-a0e7fcbf791e?q=80&w=1740&auto=format&fit=crop'); }
body.bg-prestations { background-image: url('https://images.unsplash.com/photo-1515934751635-c81c6bc9a2d8?w=1600'); }
body.bg-contact { background-image: url('https://images.unsplash.com/photo-1493863641943-9b68992a8d07?w=1600'); }

/* Scrollbar personnalisée */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Sélection de texte */
::selection { background: var(--accent); color: #000; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { width: 100%; height: auto; display: block; object-fit: cover; }
ul { list-style: none; }

/* TITRES STYLE "LIAM CHANDLER" */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif; /* Police bâton */
    font-weight: 300;  /* Fin */
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase; /* Tout en majuscules */
}

/* Le Gros Titre (EMILIAN BITEAU) */
.hero-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;      
    font-weight: 200;       /* TRES FIN (C'est ça le secret du look luxe) */
    margin-bottom: 25px;
    letter-spacing: 8px;    /* Lettres très espacées */
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Ombre pour lire sur l'image */
}

/* Le sous-titre (Photographe...) */
.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;       /* Fin mais lisible */
    font-size: 1.1rem;
    color: #e0e0e0;
    letter-spacing: 4px;    /* Espacé aussi */
    text-transform: uppercase;
    margin-bottom: 50px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.subtitle {
    display: block;
    font-family: var(--font-text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

/* SÉCURITÉ : Tout le contenu passe DEVANT le voile noir */
header, section, footer, .split-section, .container, .page-header {
    position: relative;
    z-index: 1;
}

/* La Navbar reste tout au-dessus */
.navbar {
    z-index: 1000;
}

/* =========================================
   2. NAVIGATION (Transparent -> Sombre)
   ========================================= */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 5%; /* Un peu plus grand au début pour le style */
    width: 100%;
    position: fixed; top: 0; z-index: 1000;
    
    /* PAR DÉFAUT : TRANSPARENT (Comme sur ton image exemple) */
    background: transparent; 
    backdrop-filter: none; /* Pas de flou au début */
    border-bottom: 1px solid transparent; /* Pas de bordure au début */
    
    transition: all 0.4s ease; /* Transition douce quand ça change */
}

/* L'ÉTAT "SCROLLÉ" (C'est le JS qui va activer ça) */
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9); /* Le fond noir apparaît */
    backdrop-filter: blur(10px);     /* Le flou apparaît */
    padding: 15px 5%;                /* La barre se compacte un peu */
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* Le reste ne change pas... */
.logo .name { font-family: var(--font-title); font-size: 1.4rem; letter-spacing: 1px; color: #fff; text-transform: uppercase; }
.logo .tagline { font-size: 0.6rem; letter-spacing: 3px; color: var(--accent); display: block; margin-top: 2px; }
.nav-right { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.8); position: relative; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 1px; background: var(--accent); transition: 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.social-icon svg { width: 20px; fill: #fff; transition: 0.3s; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5)); }
.social-icon:hover svg { fill: var(--accent); transform: translateY(-3px); }

/* =========================================
   3. HEADER & HERO (Version Luxe & Centrée)
   ========================================= */
.page-header {
    height: 100vh; /* Plein écran */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallaxe */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 100px;
}

/* Le conteneur Flex qui force le centrage */
.header-content {
    position: relative;
    z-index: 2;
    display: flex;           /* Active Flexbox */
    flex-direction: column;  /* Empile les éléments verticalement */
    align-items: center;     /* CENTRE tout horizontalement (y compris le bouton) */
    justify-content: center;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

/* 1. Le petit texte au dessus (L'Oeil Sauvage) */
.header-content .subtitle {
    font-family: var(--font-text);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px; /* Très espacé pour le style */
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* 2. Le Nom Principal (EMILIAN BITEAU) */
.hero-name {
    font-family: var(--font-title);
    font-size: 4.5rem; /* Un peu plus petit pour l'élégance */
    font-weight: 200;  /* ULTRA FIN (Thin) comme sur ton exemple */
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 8px; /* Très espacé */
    color: #fff;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

/* 3. La description (Photographe...) */
.hero-desc {
    font-family: var(--font-title); /* On passe en serif pour l'élégance */
    font-style: italic;             /* Italique pour le côté artistique */
    font-size: 1.4rem;
    color: #e0e0e0;
    letter-spacing: 1px;
    margin-bottom: 50px;            /* Espace avant le bouton */
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* 4. Le Bouton "VOIR LE PORTFOLIO" (Refait) */
.btn-solid {
    display: inline-block;
    background: rgba(198, 168, 124, 0.9); /* Doré légèrement transparent */
    color: #050505; /* Texte noir pour le contraste */
    padding: 18px 45px;
    border: 1px solid var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;     /* Texte petit */
    font-weight: 700;       /* Mais gras */
    letter-spacing: 3px;    /* Et très espacé (Luxe) */
    border-radius: 0;       /* Angles droits (plus pro que rond) */
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-decoration: none;
}

.btn-solid:hover {
    background: #fff;       /* Devient blanc au survol */
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
    border-color: #fff;
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Adaptation Mobile */
@media (max-width: 768px) {
    .hero-name { font-size: 3rem; }
    .hero-desc { font-size: 1.1rem; }
    .header-content .subtitle { letter-spacing: 3px; }
}

/* TITRES DES PAGES INTERNES (Style identique à l'accueil) */
.internal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;       /* Grande taille comme l'accueil */
    font-weight: 200;        /* Très fin (Extra Light) */
    text-transform: uppercase;
    letter-spacing: 8px;     /* Lettres très espacées */
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Ombre pour la lisibilité */
    
    /* Animation d'apparition */
    animation: fadeInUp 1.2s ease-out;
}

/* Supprime l'ancienne barre dorée si elle apparaît */
.internal-title::after {
    display: none;
}
/* =========================================
   4. BOUTONS & INPUTS (Minimalisme Chic)
   ========================================= */
.btn-solid, .btn-line, .btn-validate, .btn-add-cart, .btn-gallery {
    display: inline-block; cursor: pointer; text-transform: uppercase;
    font-size: 0.75rem; letter-spacing: 2px; font-weight: 600;
    font-family: var(--font-text); transition: all 0.3s ease;
    padding: 16px 32px;
}

/* Bouton Plein (Doré) */
.btn-solid, .btn-validate {
    background: var(--accent); color: #000; border: none;
    box-shadow: 0 5px 15px rgba(198, 168, 124, 0.2);
}
.btn-solid:hover, .btn-validate:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(198, 168, 124, 0.3);
}

/* Bouton Ligne (Transparent) */
.btn-line {
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3);
}
.btn-line:hover {
    border-color: var(--accent); color: var(--accent);
}

/* Inputs : Juste une ligne en bas */
input, select, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333; /* Ligne discrète */
    padding: 15px 0;
    color: #fff;
    font-family: var(--font-text);
    font-size: 1rem;
    margin-bottom: 30px;
    outline: none;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-bottom-color: var(--accent);
    background: linear-gradient(to bottom, transparent 95%, rgba(198, 168, 124, 0.05) 100%);
}
input::placeholder, textarea::placeholder { color: #555; }

/* =========================================
   5. SECTIONS & CONTACT (Réparé)
   ========================================= */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }

.split-section {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 10%; margin-bottom: 150px; gap: 80px;
}
.split-section.reverse { flex-direction: row-reverse; }

.split-text { flex: 1; }
.split-text p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 20px; }

.split-img { flex: 1; position: relative; }
.split-img img {
    box-shadow: -20px 20px 0px rgba(30,30,30,0.5);
    filter: grayscale(20%); transition: 0.5s;
}
.split-section:hover .split-img img { filter: grayscale(0%); transform: scale(1.02); }

/* --- CORRECTION CONTACT (Taille et Centrage) --- */
.contact-container {
    width: 100%;
    max-width: 600px;       /* Largeur max fixée */
    margin: 50px auto;      /* Centré */
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}
.contact-container .subtitle { margin-bottom: 20px; }

/* =========================================
   6. PORTFOLIO & WATERMARK
   ========================================= */
.filters {
    display: flex; justify-content: center; gap: 30px; margin-bottom: 60px;
}
.filter-btn {
    background: none; border: none; color: #666;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem;
    cursor: pointer; transition: 0.3s; position: relative;
}
.filter-btn.active, .filter-btn:hover { color: #fff; }
.filter-btn.active::after {
    content: '•'; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); color: var(--accent);
}

.gallery-grid {
    column-count: 3; column-gap: 30px;
    max-width: var(--container-width); margin: 0 auto; padding-bottom: 100px;
}
.gallery-item {
    break-inside: avoid; margin-bottom: 30px;
    position: relative; overflow: hidden; cursor: pointer;
}
.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-item:hover img { transform: scale(1.05); opacity: 0.8; }

/* Watermark Portfolio (Petit Coin) */
.watermark-corner {
    position: absolute; bottom: 15px; right: 20px; text-align: right;
    pointer-events: none; opacity: 0; transition: 0.4s;
}
.gallery-item:hover .watermark-corner { opacity: 1; }
.wm-id { display: block; font-weight: 600; color: var(--accent); font-size: 0.9rem; }

/* =========================================
   7. BOUTIQUE (Style Structuré & Lisible)
   ========================================= */

/* Mise en page : Le panier a maintenant une largeur fixe confortable (400px) */
.shop-layout {
    display: flex; /* On passe en Flex pour mieux gérer l'espace */
    justify-content: space-between;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start; /* Important pour le sticky */
}

/* La colonne des produits (prend tout l'espace restant) */
.products-column {
    flex: 1; /* Prend toute la largeur disponible */
    display: grid;
    /* On force 2 colonnes max pour que les images soient GRANDES */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 50px;
}

/* --- LA CARTE PRODUIT --- */
.product-item {
    background: rgba(20, 20, 20, 0.6); /* Fond très léger pour détacher du fond */
    border: 1px solid rgba(255,255,255,0.05); /* Bordure subtile */
    padding-bottom: 30px;
    transition: transform 0.4s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent); /* S'illumine en doré au survol */
}

/* Image */
.product-item .prod-img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 25px;
}

/* Infos Texte */
.prod-info {
    padding: 0 25px; /* On aère le texte sur les côtés */
    text-align: left; /* Alignement à gauche comme sur les sites pro */
}

.prod-info h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.prod-info .price {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

/* NOUVEAU : La Description technique */
.prod-desc {
    font-size: 0.85rem;
    color: #aaa; /* Gris clair lisible */
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: var(--font-text);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

/* Boutons */
.shop-actions {
    display: flex; flex-direction: column; gap: 10px;
}

.btn-gallery {
    background: transparent;
    border: 1px solid #444;
    color: #ddd;
    padding: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex; justify-content: space-between; align-items: center;
    transition: 0.3s;
}
.btn-gallery:hover { border-color: var(--accent); color: #fff; }

.btn-add-cart {
    background: #fff; color: #000; border: none;
    padding: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem;
    transition: 0.3s;
}
.btn-add-cart:hover { background: var(--accent); }


/* --- LE PANIER (Large et Lisible) --- */
.cart-column {
    width: 400px; /* Largeur FIXE et confortable */
    flex-shrink: 0; /* Empêche de rétrécir */
}

.cart-sticky-box {
    background: #111; /* Fond noir uni pour la lisibilité */
    border: 1px solid #333;
    padding: 30px;
    position: sticky; top: 120px;
}

.cart-sticky-box h3 {
    font-size: 1.4rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 15px; margin-bottom: 25px;
    color: #fff; letter-spacing: 2px;
}

/* Liste des articles */
#cart-list {
    margin-bottom: 20px;
    max-height: 300px; overflow-y: auto; /* Scroll si trop d'articles */
}
.cart-item-row {
    background: #1a1a1a;
    padding: 15px; margin-bottom: 10px;
    border: 1px solid #333;
}
.cart-item-row h4 { font-size: 1rem; color: #fff; margin-bottom: 5px; }
.cart-item-row p { font-size: 0.8rem; color: #888; }

.cart-total-row {
    font-size: 1.5rem; color: #fff; font-weight: 300;
    display: flex; justify-content: space-between;
    margin: 30px 0; padding-top: 20px;
    border-top: 1px solid #444;
}

/* Formulaire Panier */
.form-client input, .form-client textarea {
    background: #000;
    border: 1px solid #444;
    padding: 15px;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 15px; /* Espace entre les champs */
}
.form-client input:focus, .form-client textarea:focus {
    border-color: var(--accent);
    background: #050505;
}

.btn-validate {
    width: 100%; padding: 18px; font-size: 1rem; margin-top: 10px;
}

/* Mobile */
@media (max-width: 1000px) {
    .shop-layout { flex-direction: column; }
    .cart-column { width: 100%; }
    .products-column { grid-template-columns: 1fr; }
}

/* =========================================
   8. MODAL GALERIE BOUTIQUE (CORRIGÉ & FIXÉ)
   ========================================= */
.modal-overlay {
    display: none; /* Caché par défaut */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); /* Fond très sombre */
    z-index: 99999; /* Au-dessus de tout */
    justify-content: center; align-items: center;
    backdrop-filter: blur(5px);
}

/* Force l'affichage flex quand actif */
.modal-overlay.active {
    display: flex !important;
}

/* La Boite Modale */
.modal-box {
    background: #111;
    width: 90%; max-width: 1000px;
    height: 85vh; /* Hauteur fixe */
    max-height: 800px;
    border: 1px solid var(--accent); /* Bordure dorée fine */
    box-shadow: 0 0 60px rgba(0,0,0,1);
    border-radius: 8px;
    display: flex; flex-direction: column;
}

.modal-header {
    background: #161616; padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-top { display: flex; justify-content: space-between; margin-bottom: 20px; }
.close-btn { font-size: 2rem; color: #666; transition: 0.3s; cursor: pointer; }
.close-btn:hover { color: #fff; }

/* Filtres Modal */
.modal-filters { display: flex; gap: 15px; flex-wrap: wrap; }
.modal-filter-btn {
    background: transparent; border: 1px solid #333; color: #888;
    padding: 8px 20px; border-radius: 30px; font-size: 0.7rem;
    cursor: pointer; transition: 0.3s;
}
.modal-filter-btn:hover, .modal-filter-btn.active {
    border-color: var(--accent); color: var(--accent); background: rgba(198, 168, 124, 0.05);
}

/* LA GRILLE BOUTIQUE (Qui permet le scroll) */
#gallery-grid {
    flex: 1; /* Prend toute la place dispo */
    overflow-y: auto; /* Scroll activé */
    padding: 30px;
    background: #0a0a0a;
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    align-content: start;
}

.gallery-thumb { position: relative; height: 140px; cursor: pointer; }
.gallery-thumb img {
    width: 100%; height: 100%; border-radius: 4px; opacity: 0.6; transition: 0.3s;
    border: 2px solid transparent; object-fit: cover;
}
.gallery-thumb:hover img { opacity: 1; transform: scale(1.05); }

.gallery-thumb.selected img {
    border-color: var(--accent); opacity: 1;
    box-shadow: 0 0 20px rgba(198, 168, 124, 0.2);
}

.modal-footer {
    background: #161616; padding: 20px; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.btn-confirm-selection {
    background: var(--accent); color: #000; border: none;
    padding: 12px 40px; font-weight: bold; border-radius: 4px;
}

/* =========================================
   9. LIGHTBOX PORTFOLIO (CORRIGÉE)
   ========================================= */
/* Fenêtre spécifique pour le Portfolio en grand */
#image-modal {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 10001; /* Très haut */
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0,0,0,0.98); /* Fond quasi noir */
    justify-content: center; align-items: center;
}

#image-modal .modal-content {
    max-width: 90%; max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0,0,0,1);
    animation: zoomIn 0.3s ease;
}

/* Croix et Flèches */
#image-modal .close-modal {
    position: absolute; top: 20px; right: 40px;
    color: #fff; font-size: 3rem; font-weight: 300;
    cursor: pointer; z-index: 10002; line-height: 1;
}
#image-modal .close-modal:hover { color: var(--accent); }

.prev, .next {
    cursor: pointer; position: absolute; top: 50%;
    width: auto; padding: 20px; margin-top: -50px;
    color: white; font-weight: bold; font-size: 3rem;
    transition: 0.3s; user-select: none; z-index: 10002;
}
.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover { color: var(--accent); }

@keyframes zoomIn { from {transform: scale(0.9); opacity: 0;} to {transform: scale(1); opacity: 1;} }

/* =========================================
   10. NOTIFICATIONS & PRESTATIONS
   ========================================= */
#toast-container {
    position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 10000; display: flex; flex-direction: column; gap: 15px; pointer-events: none;
}
.toast {
    background: #1a1a1a; color: #fff; padding: 15px 30px;
    border-left: 3px solid var(--accent);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border-radius: 4px; font-size: 0.9rem; display: flex; align-items: center; gap: 15px;
    opacity: 0; transform: translateY(20px); transition: 0.4s;
}
.toast.visible { opacity: 1; transform: translateY(0); }

/* Cartes Prix (Prestations) */
.pricing-container { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; margin-top: 60px; }
.price-card {
    background: var(--bg-card); padding: 50px 40px; width: 380px; text-align: center;
    border: 1px solid rgba(255,255,255,0.03); border-radius: var(--radius);
    transition: 0.4s; position: relative;
}
.price-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.price-card .price { font-size: 3.5rem; color: var(--accent); margin: 30px 0; font-family: var(--font-title); }
.price-card ul li { margin-bottom: 15px; color: #aaa; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }

/* =========================================
   11. PIED DE PAGE (VRAI FOOTER + CREDIT)
   ========================================= */
footer {
    background-color: #000;
    border-top: 1px solid #222;
    padding: 60px 20px;
    margin-top: 150px; /* Bien séparé du contenu */
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    font-family: var(--font-text);
}

footer p {
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Le Crédit Créateur */
.creator-credit {
    display: block;
    margin-top: 20px;
    font-size: 0.75rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.creator-credit span {
    color: var(--accent);
    font-weight: 600;
}

/* =========================================
   12. MEDIA QUERIES (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; padding: 15px; background: #050505; }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .internal-title { font-size: 2.5rem; }
    .split-section, .split-section.reverse { flex-direction: column; gap: 40px; margin-bottom: 80px; }
    .gallery-grid { column-count: 1; }
    .shop-layout { grid-template-columns: 1fr; }
    .cart-sticky-box { position: static; margin-top: 50px; }
    .modal-box { width: 100%; height: 100vh; border-radius: 0; }
    
    /* Correctif mobile galerie */
    #gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-thumb { height: 100px; }
}

/* =========================================
   13. ANIMATION SCROLL REVEAL (NOUVEAU)
   ========================================= */
/* État initial : Caché et décalé */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px); /* Arrive de la gauche */
    transition: all 1s ease-out;
}
.reveal-right {
    opacity: 0;
    transform: translateX(100px); /* Arrive de la droite */
    transition: all 1s ease-out;
}

/* État Actif : Visible et à sa place */
.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   14. PAGE CONTACT
   ========================================= */
.contact-layout {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    align-items: flex-start;
}

/* Infos (Gauche) */
.contact-info {
    flex: 1;
    color: #fff;
}
.contact-info h3 {
    font-size: 2rem; margin-bottom: 20px; letter-spacing: 3px;
}
.contact-intro {
    font-family: var(--font-text);
    color: #aaa; margin-bottom: 50px; line-height: 1.8;
}
.info-item {
    margin-bottom: 30px;
}
.info-item .label {
    display: block; font-size: 0.75rem; text-transform: uppercase;
    color: var(--accent); letter-spacing: 2px; margin-bottom: 5px;
}
.info-item .value {
    font-size: 1.1rem; color: #fff; text-decoration: none;
    font-family: var(--font-title); letter-spacing: 1px;
}
.info-item .value:hover { color: var(--accent); transition: 0.3s; }

/* Formulaire (Droite) */
.contact-form-container {
    flex: 1.2; /* Un peu plus large que les infos */
    background: rgba(20, 20, 20, 0.6);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group { margin-bottom: 20px; }

/* Style des champs (Identique Boutique) */
.contact-form-container input, 
.contact-form-container textarea {
    width: 100%;
    background: #050505;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    font-family: var(--font-text);
    font-size: 0.9rem;
    transition: 0.3s;
}

.contact-form-container input:focus, 
.contact-form-container textarea:focus {
    border-color: var(--accent);
    background: #000;
    outline: none;
}

/* Mobile */
@media (max-width: 900px) {
    .contact-layout { flex-direction: column; gap: 50px; padding: 0 20px; }
    .contact-form-container { width: 100%; padding: 20px; }
}

/* STYLE PAGE FERMÉE */
#boutique-fermee {
    min-height: 60vh; /* Prend de la hauteur */
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-closed-container {
    text-align: center;
    padding: 60px;
    max-width: 700px;
    background: rgba(20, 20, 20, 0.5); /* Fond léger */
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
}

.shop-closed-container i {
    font-size: 3rem;
    color: var(--accent); /* Doré */
    margin-bottom: 30px;
}

.shop-closed-container h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.shop-closed-container p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 10px;
}