/* --- Gestion de la sélection (UI Clean) --- */
/* Par défaut, on interdit la sélection sur tout le site (images, boutons, nav...) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');


/* --- Gestion de la sélection et du curseur (UI Clean) --- */

/* 1. On interdit la sélection partout par défaut */
html, body, h1, h2, h3, h4, h5, h6, a, button, .luxe-title, .luxe-subtitle, img {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
    -webkit-tap-highlight-color: transparent;
    cursor: default; /* Force la flèche standard au lieu du curseur texte */
}

/* 2. On autorise la sélection UNIQUEMENT sur les paragraphes et les inputs */
p, input, textarea, .selectable {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text; /* Ici on remet le curseur texte "I" */
}

/* 3. On remet la main (pointer) sur les éléments cliquables */
a, button, .btn-main, .btn-outline, .gallery-item, .pricing-tab, .pricing-card, .tab-btn, .list-item, .action-btn {
    cursor: pointer;
}

html {
    scroll-behavior: smooth; /* Navigation fluide entre les ancres */
    scroll-padding-top: 100px; /* Décalage pour la navbar fixe */
}

body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
    width: 100%;
    overflow-x: hidden;
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-color: #121212; color: #f5f5f5;
    -webkit-font-smoothing: antialiased; /* Rendu de texte plus net */
}

/* ... MAIS on l'autorise sur les contenus textuels (pour que les gens puissent copier) */
p, h1, h2, h3, h4, h5, h6, input, textarea, .selectable {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: default; /* Remet le curseur normal au lieu de la barre | sauf si on clique */
}

/* S'assurer que les boutons et liens gardent le curseur "main" */
a, button, .btn-main, .btn-outline, .gallery-item {
    cursor: pointer;
}

/* Reset et Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: #121212; color: #f5f5f5; }

/* Utilitaires */
.hidden { display: none !important; }
.btn-main { background: #d4af37; color: #000; padding: 10px 20px; text-decoration: none; border: none; cursor: pointer; font-weight: 600; margin-top:40px; }
.btn-outline { background: transparent; border: 1px solid #f5f5f5; color: #f5f5f5; padding: 8px 15px; cursor: pointer; }

/* --- Animation de page --- */
.page-section {
    min-height: 100vh;
    /* On enlève le overflow hidden ici pour laisser scroller si le contenu est long */
    animation: fadeIn 0.8s ease-out; /* Un peu plus rapide et fluide */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
    /* J'ai supprimé le 'transform: translateY' qui causait le bug de scrollbar */
}

/* Cache les pages non actives */
.hidden { display: none !important; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 50px; background: rgba(0,0,0,0.9); position: fixed; width: 100%; top: 0; z-index: 100; border-bottom: 1px solid #333; }
.nav-logo { height: 50px; width: auto; } /* Ajuste la hauteur selon ton logo */
.nav-links a { color: #fff; text-decoration: none; margin: 0 15px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: #d4af37; }

/* Hero */
.hero { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    /* MODIFICATION : Ajout de fixed pour l'effet Parallax */
    background: url('https://placehold.co/1920x1080/1a1a1a/1a1a1a') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* C'est cette ligne qui fait la magie */
    position: relative;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 10px; }

/* Modal */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: flex; justify-content: center; align-items: center; z-index: 200; }
/* Le conteneur principal du modal */
.modal-content {
    background-color: var(--deep-black, #111);
    /* NOUVEAU : Position relative indispensable pour que la doublure s'accroche dessus */
    position: relative;
    margin: 8% auto; /* Un peu plus haut pour l'élégance */
    width: 90%;
    max-width: 650px; /* Un poil plus large pour respirer */
    
    /* NOUVEAU : Des angles très doux, loin du rectangle brut */
    border-radius: 20px;
    
    /* NOUVEAU : Une bordure dorée très fine pour le côté premium */
    border: 1px solid var(--primary-gold, #d4af37);
    
    padding: 50px 40px; /* De grands espaces internes (le vide c'est le luxe) */
    color: #fff;
    
    /* NOUVEAU : Une ombre très profonde pour faire flotter la carte loin du fond */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    
    animation: fadeInModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; /* Petite animation avec un rebond fluide */
    z-index: 1; /* S'assure qu'il est devant la doublure */
}
/* La croix de fermeture */
.close-modal {
    color: var(--primary-gold, #d4af37); /* Dorée */
    float: right;
    font-size: 28px;
    font-weight: 300; /* Beaucoup plus fine qu'avant */
    position: absolute; /* Position absolue pour la placer parfaitement dans le coin */
    top: 20px;
    right: 25px;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 2;
}

.close-modal:hover,
.close-modal:focus {
    color: #fff; /* Devient blanche au survol */
    text-decoration: none;
    cursor: pointer;
    transform: rotate(90deg); /* Petite rotation élégante au survol */
}
.modal-content input { width: 100%; padding: 10px; margin: 10px 0; background: #333; border: 1px solid #444; color: white; }
.error-msg { color: #ff6b6b; margin-top: 10px; font-size: 0.9rem; }

/* --- Section Espace Client --- */
.client-section { padding: 100px 50px; min-height: 100vh; background: #121212; }
.client-header { text-align: center; margin-bottom: 40px; }
.client-header h2 { font-size: 2rem; color: #d4af37; margin-bottom: 10px; }

/* Grille de photos */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.3s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }

/* --- Overlay et Actions sur les photos --- */
.gallery-item { cursor: pointer; position: relative; }

/* Le calque noir (uniquement au survol) */
.item-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); 
    opacity: 0; transition: opacity 0.3s;
    /* Important : permet de cliquer sur le coeur même si l'overlay est caché */
    pointer-events: none; 
}
.gallery-item:hover .item-overlay { opacity: 1; }

/* Le bouton Cœur de la grille */
.fav-btn {
    position: absolute; bottom: 10px; right: 10px; z-index: 10;
    background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.7); border-radius: 50%;
    width: 40px; height: 40px; display: flex; justify-content: center; align-items: center;
    color: white; font-size: 1.2rem; transition: all 0.3s; cursor: pointer;
    pointer-events: auto; /* Réactive le clic */
    opacity: 0; /* Caché par défaut */
    transform: translateY(10px);
}

/* Apparition au survol */
.gallery-item:hover .fav-btn { opacity: 1; transform: translateY(0); }

/* ETAT ACTIVE : Toujours visible, même sans survol */
.fav-btn.active {
    opacity: 1 !important; 
    transform: translateY(0) !important;
    background: #d4af37; border-color: #d4af37; color: black;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- Bouton Coeur Lightbox (Nouveau) --- */
.lightbox-fav-btn {
    position: absolute; bottom: 30px; right: 30px;
    background: rgba(255,255,255,0.1); border: 1px solid #fff;
    width: 60px; height: 60px; border-radius: 50%;
    color: white; font-size: 2rem; cursor: pointer; z-index: 1002;
    display: flex; justify-content: center; align-items: center;
    transition: all 0.3s;
}

/* NOUVEAU : Bouton Panier Lightbox */
.lightbox-cart-btn {
    position: absolute; bottom: 30px; right: 100px; /* Décalé vers la gauche */
    background: rgba(255,255,255,0.1); border: 1px solid #fff;
    width: 60px; height: 60px; border-radius: 50%;
    color: white; font-size: 1.8rem; cursor: pointer; z-index: 1002;
    display: flex; justify-content: center; align-items: center;
    transition: all 0.3s;
}
.lightbox-cart-btn:hover { background: rgba(212, 175, 55, 0.3); }

/* État Actif (Dans le panier) */
.lightbox-cart-btn.active { 
    background: #d4af37; border-color: #d4af37; color: black; 
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
.lightbox-fav-btn:hover { background: rgba(212, 175, 55, 0.3); }
.lightbox-fav-btn.active { background: #d4af37; border-color: #d4af37; color: black; }

/* --- Lightbox (Mode Cinéma) --- */
.lightbox {
    position: fixed; z-index: 1000; left: 0; top: 0;
    width: 100%; height: 100%; overflow: auto;
    background-color: rgba(0,0,0,0.95);
    display: flex; justify-content: center; align-items: center;
}
.lightbox-content {
    margin: auto; display: block; max-width: 90%; max-height: 90vh;
    border: 2px solid #333; box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.close-lightbox {
    position: absolute; top: 20px; right: 35px;
    color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer;
}
.close-lightbox:hover { color: #d4af37; }

/* --- Lightbox Navigation --- */
.prev, .next {
    cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px;
    margin-top: -50px; color: white; font-weight: bold; font-size: 30px;
    transition: 0.3s ease; border-radius: 0 3px 3px 0; user-select: none;
    background-color: rgba(0,0,0,0.3); /* Fond léger pour contraste */
}
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev { left: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: rgba(212, 175, 55, 0.8); color: black; }


/* --- Sélecteur de Galerie --- */
.gallery-select {
    background: #1e1e1e; color: #f5f5f5;
    border: 1px solid #333; padding: 10px 20px;
    font-size: 1rem; border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer; outline: none; min-width: 250px;
}
.gallery-select:focus { border-color: #d4af37; }



/* --- Barre de Sélection Flottante --- */
.selection-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(18, 18, 18, 0.95); border-top: 1px solid #333;
    padding: 15px 40px; z-index: 900;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}
.selection-bar.hidden { transform: translateY(100%); display: flex !important; } /* On cache en glissant vers le bas */

.selection-info { font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.count-badge { color: #d4af37; font-weight: bold; font-size: 1.3rem; }
.btn-main.is-small { padding: 8px 15px; font-size: 0.9rem; }

/* --- Modal de Révision --- */
.review-content { width: 80%; max-width: 900px; max-height: 90vh; overflow-y: auto; text-align: left; }
.review-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px; margin: 20px 0; padding-bottom: 20px; border-bottom: 1px solid #333;
}
.review-item img { width: 100%; height: 100px; object-fit: cover; border-radius: 4px; border: 1px solid #444; }

.review-actions textarea {
    width: 100%; background: #2a2a2a; border: 1px solid #444;
    color: white; padding: 10px; margin-bottom: 15px; resize: vertical;
}
.success-msg { color: #4caf50; margin-top: 10px; text-align: center; }

/* --- DASHBOARD LAYOUT --- */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    padding-top: 80px; /* Espace pour la navbar fixe */
    background: #121212;
}

/* Sidebar (Menu Gauche) */
.dashboard-sidebar {
    width: 280px;
    background: #1a1a1a;
    border-right: 1px solid #333;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: fixed; /* Fixe sur le côté */
    height: 100vh;
    top: 80px; /* Sous la navbar */
    left: 0;
}

.dashboard-content {
    flex: 1;
    margin-left: 280px; /* Pousse le contenu à droite */
    padding: 40px;
    background: #121212;
}

/* Profil Résumé */
.user-profile-summary {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}
.avatar-circle {
    width: 60px; height: 60px;
    background: #333; border-radius: 50%;
    margin: 0 auto 10px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5rem;
}

/* Navigation Dashboard */
.dash-nav { display: flex; flex-direction: column; gap: 10px; }
.dash-link {
    background: transparent; border: none;
    color: #888; text-align: left; padding: 12px 15px;
    cursor: pointer; font-size: 1rem; border-radius: 6px;
    transition: all 0.2s; display: flex; align-items: center; gap: 10px;
}
.dash-link:hover { background: rgba(255,255,255,0.05); color: #fff; }
.dash-link.active { background: #d4af37; color: #000; font-weight: 600; }
.dash-link.logout-link { margin-top: auto; color: #ff6b6b; }
.dash-link.logout-link:hover { background: rgba(255, 107, 107, 0.1); }

.badge {
    background: #333; color: white;
    padding: 2px 8px; border-radius: 10px;
    font-size: 0.8rem; margin-left: auto;
}
.dash-link.active .badge { background: #000; color: #d4af37; }

/* Gestion des Onglets */
.dash-tab.hidden { display: none; }
.dash-tab.active { display: block; animation: fadeIn 0.3s; }

/* --- NOUVEAU STYLE DES TEXTES (Éditorial / Luxe) --- */
.section-header-styled {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}
.section-header-styled h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Plus fin = plus classe */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}
.section-header-styled .subtitle {
    color: #d4af37; /* Or */
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px;
}
.text-separator {
    width: 50px; height: 1px;
    background: #333;
    margin: 0 auto 20px;
}
.section-header-styled .description {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- BOUTON PANIER FLOTTANT --- */
.floating-cart {
    position: fixed; bottom: 30px; right: 30px;
    z-index: 900; cursor: pointer;
    animation: bounceIn 0.5s;
}
.cart-icon-wrapper {
    background: #d4af37;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    transition: transform 0.2s;
}
.cart-icon-wrapper:hover { transform: scale(1.1); }
.cart-emoji { font-size: 1.8rem; }
.cart-badge {
    position: absolute; top: -5px; right: -5px;
    background: #ff6b6b; color: white;
    font-size: 0.8rem; font-weight: bold;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    border: 2px solid #121212;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* --- UPDATE GRILLE PHOTO (Double Boutons) --- */
/* On change la position des boutons pour en mettre 2 */
.photo-actions {
    position: absolute; bottom: 10px; right: 10px;
    display: flex; gap: 10px; z-index: 10;
}

.action-btn {
    background: rgba(0,0,0,0.6); 
    border: 1px solid rgba(255,255,255,0.5);
    width: 35px; height: 35px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: white; cursor: pointer; transition: all 0.3s;
    opacity: 0; transform: translateY(10px);
}
.gallery-item:hover .action-btn { opacity: 1; transform: translateY(0); }

/* Décalage d'animation pour effet sympa */
.gallery-item:hover .action-btn:nth-child(2) { transition-delay: 0.05s; }

.action-btn:hover { background: #fff; color: #000; }
.action-btn.active-fav { background: #ff6b6b; border-color: #ff6b6b; color: white; opacity: 1 !important; transform: translateY(0) !important;}
.action-btn.active-cart { background: #d4af37; border-color: #d4af37; color: white; opacity: 1 !important; transform: translateY(0) !important;}


/* --- ZONES TEXTE PANIER --- */
.cart-actions-area {
    margin-top: 30px; border-top: 1px solid #333; padding-top: 20px;
}
#cartMessage {
    width: 100%; background: #222; border: 1px solid #444;
    color: #fff; padding: 15px; margin: 15px 0; border-radius: 4px;
}

@keyframes popOut {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; margin: 0; padding: 0; }
}

.gallery-item.removing {
    animation: popOut 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: none; /* Empêche de recliquer pendant l'anim */
}

.portfolio-header {
    text-align: center; padding: 100px 20px 60px;
}
.luxe-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 400;
    margin-bottom: 10px; letter-spacing: 2px;
    color: #fff;
}
.luxe-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #888; text-transform: uppercase;
    letter-spacing: 3px; font-size: 0.8rem;
}

/* Blocs Éditoriaux */
.editorial-block {
    display: flex; align-items: center; justify-content: space-between;
    padding: 50px 10%; margin-bottom: 50px; gap: 50px;
}

/* Images */
.editorial-img {
    flex: 1.2;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background-color: #1a1a1a; /* Fond gris pendant le chargement */
    /* L'image garde ses propriétés existantes */
}
.editorial-img img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform 1.5s ease;
}
.editorial-img:hover img { transform: scale(1.03); } /* Zoom très lent et subtil */

/* Textes */
.editorial-text {
    flex: 0.8; padding: 20px;
}
.category-tag {
    color: #d4af37; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    display: block; margin-bottom: 15px;
}
.editorial-text h3 {
    font-family: 'Playfair Display', serif; 
    font-size: 2.2rem; 
    margin-bottom: 20px;
    line-height: 1.2;
    
    /* AJOUTE CES DEUX LIGNES : */
    cursor: default;       /* Force la flèche standard */
    user-select: none;     /* Interdit la sélection (bleu) */
}
.editorial-text p {
    color: #ccc; line-height: 1.8; margin-bottom: 30px; font-weight: 300;
}
.link-underline {
    color: #fff; text-decoration: none; text-transform: uppercase;
    font-size: 0.8rem; letter-spacing: 2px; padding-bottom: 5px;
    border-bottom: 1px solid #d4af37; transition: all 0.3s;
}
.link-underline:hover { color: #d4af37; padding-bottom: 8px; }

/* Bloc Pleine Largeur */
.full-width-block {
    width: 100%; height: 60vh; position: relative; margin-bottom: 100px; overflow: hidden;
}
.full-width-block img { width: 100%; height: 100%; object-fit: cover; }
.overlay-text {
    position: absolute; bottom: 40px; left: 50px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.overlay-text h3 { font-family: 'Playfair Display', serif; font-size: 2.5rem; }
.overlay-text p { letter-spacing: 2px; text-transform: uppercase; }

.reveal-img, .reveal-text {
    opacity: 0; 
    transform: translateY(30px); /* 30px suffit pour l'effet, 50px est trop long */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* On cible précisément */
    will-change: opacity, transform; /* Optimisation GPU majeure */
}

.reveal-visible {
    opacity: 1; 
    transform: translateY(0);
}

/* --- PORTFOLIO MASONRY (Style Pinterest / Luxe) --- */
.masonry-wrapper {
    column-count: 3; /* 3 Colonnes sur PC */
    column-gap: 20px;
    padding: 0 50px 100px;
}

.masonry-item {
    break-inside: avoid; /* Empêche de couper une image en deux */
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
}

.masonry-item img {
    width: 100%;
    height: auto; /* Laisse la hauteur s'adapter (Portrait/Paysage) */
    display: block;
    transition: transform 0.5s ease;
}

/* Effet Hover Luxe */
.masonry-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.masonry-overlay {
    position: absolute; bottom: 20px; left: 20px;
    opacity: 0; transition: opacity 0.3s;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* --- SECTION CONTACT LUXE --- */
.contact-container {
    display: flex;
    min-height: 80vh; /* Prend presque tout l'écran */
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Colonne Info */
.contact-info { flex: 1; text-align: left; }
.contact-details { margin-top: 40px; }
.contact-text { color: #ccc; line-height: 1.8; margin-bottom: 30px; font-weight: 300; }
.info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: #fff; }
.info-item a { color: #fff; text-decoration: none; transition: 0.3s; }
.info-item a:hover { color: #d4af37; }

/* Colonne Formulaire */
.contact-form-wrapper {
    flex: 1;
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Champs Inputs (Style Flottant) */
.form-group { position: relative; margin-bottom: 25px; }

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 10px 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group select { color: #aaa; } /* Couleur par défaut du select */
.form-group select:focus, .form-group select:valid { color: #fff; }
.form-group option { background: #1a1a1a; color: #fff; }

/* Focus Effects */
.form-group input:focus, .form-group textarea:focus { border-bottom-color: #d4af37; }

/* Labels Flottants */
.form-group label {
    position: absolute;
    top: 10px; left: 0;
    color: #888;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Quand on clique ou qu'il y a du texte, le label monte */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: #d4af37;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #0a0a0a; /* Plus foncé que le fond normal */
    color: #fff;
    padding: 60px 50px 20px;
    border-top: 1px solid #222;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #ccc; text-decoration: none; transition: 0.3s;
}
.footer-links a:hover { color: #d4af37; padding-left: 5px; }

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 2px;
}
.social-links a:hover { color: #d4af37; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    justify-content: space-between; /* Copyright à gauche, Mentions à droite */
    max-width: 1200px;
    margin: 0 auto;
}

.legal-link { color: #666; text-decoration: none; }
.legal-link:hover { color: #888; text-decoration: underline; }

/* --- SECTION À PROPOS (Luxe) --- */

.about-header {
    text-align: center;
    padding: 120px 20px 60px; /* Espace en haut pour la navbar */
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 50px;
}

/* Photo avec Cadre Décoratif */
.about-image {
    flex: 1;
    position: relative;
    max-width: 450px;
    cursor: pointer; /* Indique qu'on peut interagir */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2; /* L'image est devant */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    filter: grayscale(100%); /* Noir et Blanc chic par défaut */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Animation fluide "luxe" */
}

.about-image:hover img {
    filter: grayscale(0%); /* La couleur revient */
    transform: translate(-5px, -5px); /* L'image monte un peu vers la gauche */
}

.about-image:hover .frame-decoration {
    transform: translate(10px, 10px); /* Le cadre descend vers la droite */
    border-color: #d4af37; /* L'or devient vif */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); /* Légère lueur */
}

.frame-decoration {
    position: absolute;
    display:none;
    top: 20px; left: -20px; /* Décalage initial */
    width: 100%; height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.4); /* Or très fin et discret */
    z-index: 1; /* Le cadre est derrière */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Texte */
.about-text {
    flex: 1;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 30px;
    cursor: default;       /* Force la flèche standard */
    user-select: none;
}

.about-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text em {
    color: #fff;
    font-style: italic;
}

.signature {
    font-family: 'Playfair Display', serif; /* Ou une font manuscrite si tu en importes une */
    font-size: 1.5rem;
    color: #d4af37;
    margin-top: 40px;
    text-align: right;
}

/* Stats (Optionnel) */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 2rem; color: #fff; font-weight: bold; font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }

/* Bandeau "Approche" */
.approach-banner {
    background: #1a1a1a;
    padding: 80px 50px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.approach-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.approach-item p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- PAGE 404 --- */
.error-container {
    min-height: 60vh; /* Prend de la place mais laisse voir le footer */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
}

/* --- BANDEAU COOKIES (RGPD) --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000; /* Au-dessus de tout */
    max-width: 400px;
    width: calc(100% - 40px); /* Marge sur mobile */
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    background: rgba(18, 18, 18, 0.9); /* Très sombre */
    backdrop-filter: blur(10px); /* Effet verre fumé */
    border: 1px solid #333;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: #d4af37;
    text-decoration: underline;
    font-size: 0.85rem;
    margin-left: 5px;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
}

/* Animation d'entrée */
@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Ajustement bouton */
.btn-main.is-small {
    margin-top: 0; /* Annule la marge par défaut du btn-main */
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* --- PRELOADER LUXE --- */
#preloader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0a0a0a; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.loader-content {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.loader-logo {
    width: 80px; opacity: 0;
    animation: fadeInLogo 1.5s ease-in-out forwards;
}
.loader-line {
    width: 0; height: 1px; background: #d4af37;
    animation: loadLine 2s ease-in-out forwards;
}

#preloader.loaded {
    opacity: 0; visibility: hidden;
}

@keyframes fadeInLogo {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes loadLine {
    0% { width: 0; }
    50% { width: 50px; }
    100% { width: 150px; opacity: 0; }
}

/* --- MODULE COMMANDES & CHAT LUXE --- */

/* La grille des commandes (Liste) */
.orders-grid {
    display: flex; flex-direction: column; gap: 15px; max-width: 800px; margin: 0 auto;
}
.order-card {
    background: #1a1a1a; border: 1px solid #333; padding: 20px;
    border-radius: 4px; display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s; cursor: pointer;
}
.order-card:hover { border-color: #d4af37; transform: translateX(5px); }

.order-info h4 { color: #fff; margin-bottom: 5px; font-size: 1.1rem; }
.order-info p { color: #888; font-size: 0.9rem; }
.order-status {
    padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
}
/* Couleurs des statuts */
.status-attente { background: rgba(255, 255, 255, 0.1); color: #ccc; border: 1px solid #555; }
.status-traitement { background: rgba(212, 175, 55, 0.1); color: #d4af37; border: 1px solid #d4af37; }
.status-termine { background: rgba(76, 175, 80, 0.1); color: #4caf50; border: 1px solid #4caf50; }

/* --- VUE CHAT (CONCIERGERIE) --- */
#orderChatView { max-width: 800px; margin: 0 auto; animation: fadeIn 0.4s; }

.chat-header {
    background: #1a1a1a; padding: 20px; margin: 20px 0;
    border-bottom: 1px solid #d4af37; text-align: center;
    position: relative;
}
.chat-status-badge {
    display: inline-block; padding: 4px 10px; font-size: 0.75rem; 
    border: 1px solid #555; border-radius: 4px; margin-bottom: 10px; color: #aaa;
}
.chat-total { font-size: 1.2rem; color: #d4af37; font-family: 'Playfair Display', serif; margin-top: 10px; }

/* Zone des messages */
.chat-messages-area {
    min-height: 300px; max-height: 500px; overflow-y: auto;
    padding: 20px; background: #0e0e0e; border: 1px solid #222;
    display: flex; flex-direction: column; gap: 20px;
}

/* Bulles de discussion */
.message-bubble {
    max-width: 80%; padding: 15px 20px; border-radius: 4px;
    font-size: 0.95rem; line-height: 1.6; position: relative;
}
.message-bubble .msg-date {
    display: block; font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 8px; text-align: right;
}

/* Client (Moi) -> À droite, Doré */
.msg-me {
    align-self: flex-end; background: rgba(212, 175, 55, 0.15); 
    border: 1px solid rgba(212, 175, 55, 0.3); color: #f5f5f5;
    border-radius: 10px 10px 0 10px;
}

/* Photographe (Toi) -> À gauche, Gris foncé */
.msg-admin {
    align-self: flex-start; background: #222; 
    border: 1px solid #333; color: #ccc;
    border-radius: 10px 10px 10px 0;
}

/* Zone de saisie */
.chat-input-area {
    display: flex; gap: 10px; margin-top: 20px;
    background: #1a1a1a; padding: 15px; border: 1px solid #333;
}
#chatInput {
    flex: 1; background: transparent; border: none; color: #fff; 
    resize: none; outline: none; font-family: 'Montserrat', sans-serif;
}

/* =========================================
   FINITIONS LUXE (Skeletons, Toasts, Micro)
   ========================================= */

/* --- A. SKELETON LOADING (L'effet "Shimmer") --- */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
}

/* Skeleton spécifique pour une carte de commande */
.skeleton-card {
    height: 80px; width: 100%; margin-bottom: 15px;
    border: 1px solid #333;
}

/* --- B. TOAST NOTIFICATIONS (Alertes Flottantes) --- */
#toast-container {
    position: fixed; top: 100px;; right: 20px; z-index: 10000;
    display: flex; flex-direction: column; gap: 10px;
}

.toast {
    min-width: 250px; max-width: 350px;
    background: rgba(18, 18, 18, 0.95);
    border-left: 4px solid #d4af37; /* Or */
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border-radius: 2px;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: space-between;
    animation: slideInRight 0.3s ease-out forwards;
    backdrop-filter: blur(5px);
    opacity: 0; transform: translateX(100%); /* Départ hors écran */
}

/* Variante Erreur */
.toast.error { border-left-color: #ff6b6b; }
/* Variante Succès */
.toast.success { border-left-color: #4caf50; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(50px); }
}

/* --- C. MICRO-INTERACTIONS (Effet tactile) --- */
/* Quand on clique, le bouton s'enfonce légèrement */
button:active, .btn-main:active, .btn-outline:active, .action-btn:active {
    transform: scale(0.96) !important; /* Le !important force l'override des autres transforms */
    transition: transform 0.1s ease;
}

/* Effet "Glow" sur le bouton principal au survol */
.btn-main {
    transition: all 0.3s ease, box-shadow 0.3s ease;
}
.btn-main:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- SECTION TARIFS LUXE --- */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 50px;
}

.pricing-card {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    overflow: hidden;
    flex-direction: column;
}

/* Interaction : Lévitation et halo doré au survol */
.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Carte Centrale (Mise en avant) */
.pricing-card.featured {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(145deg, #1a1a1a, #111);
    transform: scale(1.05); /* Légèrement plus grande sur PC */
    z-index: 2;
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: #d4af37;
}

.featured-badge {
    position: absolute;
    
    /* 1. Largeur FIXE : le ruban aura exactement la même taille et inclinaison partout */
    width: 230px; 
    
    /* 2. Position par rapport au coin supérieur droit */
    top: 15px;
    right: -75px;
    
    /* 3. On incline le ruban */
    transform: rotate(45deg);
    
    /* 4. On centre parfaitement le texte dans cette largeur fixe */
    text-align: center;
    
    /* 5. Un peu de marge en haut/bas, mais plus rien sur les côtés */
    padding: 7px 0; 
    
    /* Design */
    background-color: #d4af37;
    color: #111111;
    font-size: 0.8em; 
    font-weight: 700;
    letter-spacing: 0.5px; /* Petit espacement de luxe */
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
}

.pricing-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.pricing-price span {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    display: block;
    margin-top: 5px;
}

.pricing-desc {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1; /* Pousse les boutons toujours en bas */
}

.pricing-features li {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Puces personnalisées en or */
.pricing-features li::before {
    content: '✦'; 
    color: #d4af37;
    font-size: 0.8rem;
}

.pricing-card .btn-main, 
.pricing-card .btn-outline {
    text-align: center;
    width: 100%;
    margin-top: auto;
}

/* --- NOUVEAU : Onglets Tarifs --- */
.pricing-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.pricing-tab {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px; /* Style "pilule" moderne */
}

.pricing-tab:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: #fff;
}

.pricing-tab.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
    font-weight: 600;
}

/* Gérer l'affichage fluide des grilles */
.pricing-category {
    animation: fadeIn 0.5s ease-out;
}
.pricing-category.hidden {
    display: none;
}














/* --- RESPONSIVE MOBILE (Max 768px) --- */
@media screen and (max-width: 768px) {
    
    /* 1. Navbar & Menu Burger */
    .navbar {
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .nav-logo {
        height: 40px; /* Logo un peu plus petit sur mobile */
    }

    .burger-menu {
        display: block;
        cursor: pointer;
        z-index: 101;
    }
    
    .burger-menu .bar {
        display: block; width: 25px; height: 3px; margin: 5px auto;
        background-color: #f5f5f5; transition: all 0.3s ease-in-out;
    }

    /* Animation Burger */
    .burger-menu.active .bar:nth-child(2) { opacity: 0; }
    .burger-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Liens Navbar */
    .nav-links {
        position: fixed; left: -100%; top: 71px; /* Juste sous la navbar */
        flex-direction: column; background-color: rgba(18, 18, 18, 0.98);
        width: 100%; text-align: center; transition: 0.3s;
        padding: 20px 0; border-bottom: 1px solid #333;
    }
    .nav-links.active { left: 0; }
    .nav-links a { margin: 20px 0; display: block; font-size: 1.2rem; }

    /* Correction HERO (Le bouton sur le texte) */
    .hero-content h1 { font-size: 2rem; line-height: 1.2; } /* Titre plus petit */
    .hero-content p { margin-bottom: 30px; font-size: 0.9rem; } /* Espace avant le bouton */

    /* 2. Grille Portfolio */
    .container, .client-section { padding: 80px 15px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-item img { height: 150px; }
    .lightbox-content { max-width: 95%; }

    /* 3. DASHBOARD MOBILE (CORRIGÉ) */
    .dashboard-container {
        flex-direction: column;
        padding-top: 110px; /* Augmenté pour dégager le bouton sous la navbar */
        position: relative;
    }
    
    /* Le Bouton pour ouvrir le menu */
    .dash-mobile-toggle {
        display: block; 
        background: #333; color: #d4af37;
        border: 1px solid #444; padding: 10px 20px;
        margin: 0 15px 20px; border-radius: 4px;
        cursor: pointer; font-weight: bold; width: fit-content;
    }

    /* La Sidebar (Tiroir) */
    .dashboard-sidebar {
        position: fixed; top: 0; left: 0;
        height: 100vh; width: 280px;
        background: #1a1a1a; z-index: 1001;
        transform: translateX(-100%); transition: transform 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0,0,0,0.5);
        flex-direction: column; border-right: 1px solid #333;
        overflow-y: auto; padding-top: 20px;
    }
    .dashboard-sidebar.active { transform: translateX(0); }
    .user-profile-summary { display: block; margin-top: 40px; }

    /* Overlay */
    .dash-overlay {
        display: block; position: fixed; top: 0; left: 0;
        width: 100%; height: 100%; background: rgba(0,0,0,0.7);
        z-index: 1000; backdrop-filter: blur(2px);
    }

    /* Croix de fermeture du menu Dashboard */
    .close-sidebar-mobile {
        display: block; position: absolute;
        top: 15px; right: 20px;
        font-size: 30px; cursor: pointer; color: #fff; z-index: 1005;
    }

    /* Ajustement contenu */
    .dashboard-content { margin-left: 0; padding: 0 15px 40px; }

    /* CORRECTION LIENS DASHBOARD (Vertical et Texte visible) */
    .dash-nav { 
        flex-direction: column; /* Retour à la verticale */
        width: 100%; 
        gap: 10px;
    }
    
    .dash-link { 
        padding: 12px 15px; 
        font-size: 1rem; 
        justify-content: flex-start; /* Alignement à gauche */
        text-align: left;
        width: 100%;
    }
    
    /* On force l'affichage du texte (span) qui était caché */
    .dash-link span:not(.badge) { display: inline-block !important; }

    .editorial-block {
        flex-direction: column; padding: 40px 20px; gap: 30px;
    }
    .editorial-block.reverse { 
        flex-direction: column-reverse; /* Inverse l'ordre vertical : Image remonte, Texte descend */
    }
    .editorial-img, .editorial-text { flex: 1; width: 100%; }
    .luxe-title { font-size: 2rem; }
    .editorial-text h3 { font-size: 1.8rem; }

    .site-footer { padding: 40px 20px; }
    .footer-content { flex-direction: column; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .hero { background-attachment: scroll; }
}

/* Sur PC (> 768px), on cache les éléments mobiles */
@media screen and (min-width: 769px) {
    .burger-menu { display: none; }
    .dash-mobile-toggle, .close-sidebar-mobile, .dash-overlay { display: none !important; }
}

/* --- Responsive Masonry --- */
@media screen and (max-width: 1024px) {
    .masonry-wrapper { column-count: 2; padding: 0 20px 50px; }
}
@media screen and (max-width: 600px) {
    .masonry-wrapper { column-count: 1; } /* 1 Colonne sur mobile */
}

/* Responsive Mobile */
@media screen and (max-width: 900px) {
    .pricing-container {
        padding: 0 20px;
    }
    .pricing-card.featured {
        transform: scale(1); /* Annule le grossissement sur mobile pour ne pas casser la grille */
    }
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    .contact-container { flex-direction: column; padding: 100px 20px; gap: 40px; }
    .contact-info { text-align: center; }
    .contact-form-wrapper { width: 100%; }
    .about-content {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }
    .about-image { width: 100%; max-width: 100%; }
    .frame-decoration { top: 15px; left: 15px; } /* On décale vers l'intérieur sur mobile pour pas que ça sorte */
    .about-text { text-align: center; }
    .signature { text-align: center; }
    .about-stats { justify-content: center; }
}