/* ==========================================================================
   16. PAGE GALERIE & PRODUITS – ULTRA PRO (COMPLET)
   ========================================================================== */

/* ----- TITRES ----- */
.galerie-titre {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1E1E1F;
    text-align: center;
    margin-bottom: 10px;
}

.galerie-sous-titre {
    text-align: center;
    color: #C29D53;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.galerie-cta {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.galerie-cta a {
    color: #C29D53;
    font-weight: 700;
    text-decoration: underline;
}

.galerie-section-titre {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #1E1E1F;
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.galerie-section-titre::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: #C29D53;
}

.galerie-section-titre i {
    color: #C29D53;
    margin-right: 10px;
}

.galerie-categorie {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #C29D53;
    margin: 40px 0 20px;
    letter-spacing: 1px;
}

/* ----- FILTRES ----- */
.filtres {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filtre-btn {
    background: transparent;
    border: 1px solid #1E1E1F;
    color: #1E1E1F;
    padding: 12px 28px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.filtre-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E1E1F, #333);
    transition: left 0.3s ease;
    z-index: 0;
}

.filtre-btn:hover::before,
.filtre-btn.actif::before {
    left: 0;
}

.filtre-btn span {
    position: relative;
    z-index: 1;
}

.filtre-btn:hover,
.filtre-btn.actif {
    color: #FFFFFF;
}

/* ===== GRILLE GALERIE (Photos & Vidéos) ===== */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
}

.galerie-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #1E1E1F;
    border: 2px solid transparent;
}

.galerie-item:nth-child(1) { grid-row: span 2; }
.galerie-item:nth-child(3) { grid-row: span 2; }
.galerie-item:nth-child(6) { grid-row: span 2; }

.galerie-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(194, 157, 83, 0.35);
    z-index: 10;
    border-color: #C29D53;
}

.galerie-item img,
.galerie-item video {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease,
                filter 0.5s ease;
    filter: brightness(0.9);
}

.galerie-item:hover img,
.galerie-item:hover video {
    transform: scale(1.12);
    opacity: 0.8;
    filter: brightness(1.1);
}

.galerie-item .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #1E1E1F;
    padding: 8px 16px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    z-index: 5;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.galerie-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(30, 30, 31, 0.98) 0%,
        rgba(30, 30, 31, 0.7) 50%,
        transparent 100%
    );
    padding: 60px 25px 25px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.galerie-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.galerie-item .overlay .titre {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.galerie-item .overlay .description {
    font-size: 0.8rem;
    color: #C29D53;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.galerie-item video::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 20px 20px;
}

.galerie-item video::-webkit-media-controls-play-button {
    background: #C29D53;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.galerie-item video::-webkit-media-controls-play-button:hover {
    transform: scale(1.2);
}

/* ===== GRILLE PRODUITS ===== */
.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
}

.produit-card {
    background: #FFFFFF;
    border: 1px solid rgba(194, 157, 83, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    border-radius: 20px;
}

.produit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(194, 157, 83, 0.18);
    border-color: #C29D53;
}

.produit-card figure {
    position: relative;
    overflow: hidden;
}

.produit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.5s ease;
    filter: brightness(0.9);
}

.produit-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.badge-produit {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #C29D53, #a8843e);
    color: #FFFFFF;
    padding: 6px 14px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    z-index: 5;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(194, 157, 83, 0.3);
}

.produit-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    padding: 20px 15px 5px;
    color: #1E1E1F;
}

.produit-prix {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #C29D53;
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-produit {
    display: inline-block;
    background: linear-gradient(135deg, #C29D53, #a8843e);
    color: #FFFFFF;
    padding: 10px 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(194, 157, 83, 0.3);
    border: none;
}

.btn-produit:hover {
    background: linear-gradient(135deg, #a8843e, #8a6b30);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 30px rgba(194, 157, 83, 0.5);
    color: #FFFFFF;
}

/* ===== CALL-TO-ACTION ===== */
.galerie-cta-bottom {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(145deg, #FFFFFF, #FDF6F0);
    border: 1px solid rgba(194, 157, 83, 0.15);
    margin-top: 50px;
    border-radius: 20px;
}

.galerie-cta-bottom p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: #1E1E1F;
    margin-bottom: 25px;
}

.galerie-cta-bottom a {
    display: inline-block;
    background: linear-gradient(135deg, #e5c463, #d4a83a);
    color: #1a1a1a;
    padding: 18px 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(229, 196, 99, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
}

.galerie-cta-bottom a:hover {
    background: linear-gradient(135deg, #d4a83a, #c49a2e);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(229, 196, 99, 0.6);
}


/* ==========================================================================
   17. PAGE ÉQUIPE – ULTRA PRO (STYLE GALERIE)
   ========================================================================== */

.page-equipe h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1E1E1F;
    text-align: center;
    margin-bottom: 10px;
}

.page-equipe > section:first-of-type p {
    text-align: center;
    color: #C29D53;
    font-style: italic;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* Titres de catégorie */
.page-equipe .features h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #1E1E1F;
    text-align: left;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(194, 157, 83, 0.3);
    letter-spacing: 1px;
}

/* Grille équipe */
.page-equipe .features ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Carte coiffeur */
.page-equipe .features article {
    background: #FFFFFF;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border-radius: 20px;
    text-align: center;
}

.page-equipe .features article:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(194, 157, 83, 0.2);
    border-color: #C29D53;
}

/* Photo */
.page-equipe .features article img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.5s ease;
    filter: brightness(0.9);
}

.page-equipe .features article:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Nom */
.page-equipe .features h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    padding: 18px 15px 5px;
    color: #1E1E1F;
    letter-spacing: 0.5px;
}

/* Spécialité */
.page-equipe .features p {
    padding: 0 15px 20px;
    font-size: 0.8rem;
    color: #C29D53;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Ligne décorative */
.page-equipe .features article::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C29D53, transparent);
    margin: 0 auto 15px;
    transition: width 0.3s ease;
}

.page-equipe .features article:hover::after {
    width: 80px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .page-equipe .features ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-equipe .features ul {
        grid-template-columns: 1fr;
    }
    .page-equipe h1 {
        font-size: 2.5rem;
    }
    .page-equipe .features article img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-equipe h1 {
        font-size: 2rem;
    }
    .page-equipe .features h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   18. PAGE CONTACT – ULTRA PRO
   ========================================================================== */

.page-contact h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1E1E1F;
    text-align: center;
    margin-bottom: 10px;
}

.page-contact .section-subtitle {
    text-align: center;
    color: #C29D53;
    font-style: italic;
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* ===== CARTES COORDONNÉES DÉCORATIVES ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.contact-card {
    background: linear-gradient(145deg, #FFFFFF, #FDF6F0);
    padding: 35px 25px;
    border: 1px solid rgba(194, 157, 83, 0.15);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 157, 83, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-card:hover::after { opacity: 1; }

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C29D53, #e5c463, #C29D53, transparent);
    transition: width 0.5s ease;
    border-radius: 0 0 5px 5px;
}

.contact-card:hover::before { width: 90%; }

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(194, 157, 83, 0.18);
    border-color: rgba(194, 157, 83, 0.4);
}

.contact-card > i {
    font-size: 2.5rem;
    color: #C29D53;
    margin-bottom: 15px;
    display: block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card:hover > i {
    transform: scale(1.2);
    color: #a8843e;
    text-shadow: 0 5px 15px rgba(194, 157, 83, 0.3);
}

.contact-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: #1E1E1F;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-card p,
.contact-card address {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
    line-height: 1.6;
}

.contact-card a {
    color: #C29D53;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a:hover { 
    color: #a8843e;
    text-decoration: underline;
}

/* ----- RÉSEAUX SOCIAUX ----- */
.contact-social .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    padding: 0;
}

.contact-social .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid #C29D53;
    border-radius: 50%;
    color: #C29D53;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.contact-social .social-links a:hover {
    background: #C29D53;
    color: #FFFFFF;
    transform: scale(1.15) rotate(-5deg);
}

/* ----- BOUTON WHATSAPP DÉCORATIF ----- */
.contact-social .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-social .btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-social .btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.contact-social .btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
    color: #FFFFFF;
}

.contact-social .btn-whatsapp i {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.contact-social .btn-whatsapp:hover i {
    transform: rotate(-10deg) scale(1.2);
}

/* ===== FORMULAIRE TRANSPARENT (COMME RÉSERVATION) ===== */
.page-contact form {
    max-width: 700px;
    margin: 0 auto 40px auto;
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(194, 157, 83, 0.25) !important;
    padding: 50px;
    border-radius: 0px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03) !important;
}

.page-contact fieldset {
    border: none !important;
    padding: 0 !important;
    margin: 0 0 45px 0 !important;
    background: transparent !important;
}

.page-contact legend {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1E1E1F;
    margin-bottom: 30px;
    padding: 0 0 10px 0;
    font-weight: 400;
    width: 100%;
    border-bottom: 1px solid rgba(194, 157, 83, 0.15);
}

.page-contact label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #1E1E1F;
    margin-bottom: 10px;
}

.page-contact input[type="text"],
.page-contact input[type="tel"],
.page-contact input[type="email"],
.page-contact textarea {
    width: 100% !important;
    padding: 16px 20px !important;
    background-color: rgba(253, 246, 240, 0.5) !important;
    border: 1px solid rgba(30, 30, 31, 0.08) !important;
    border-radius: 4px !important;
    font-family: 'Segoe UI', system-ui, sans-serif !important;
    font-size: 1rem !important;
    color: #1E1E1F !important;
    margin-bottom: 25px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.page-contact input:focus,
.page-contact textarea:focus {
    background-color: #FFFFFF !important;
    border-color: #C29D53 !important;
    box-shadow: 0 0 12px rgba(194, 157, 83, 0.15) !important;
}

.page-contact textarea {
    resize: vertical;
    min-height: 110px;
}

.page-contact ::placeholder {
    color: #9A9A9F;
    font-size: 0.95rem;
}

.page-contact button[type="submit"] {
    width: 80% !important;
    background-color: #e5c463 !important;
    color: #1a1a1a !important;
    border: none !important;
    padding: 18px 0 !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border-radius: 50px 0 50px 0 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(229, 196, 99, 0.2) !important;
    transition: all 0.25s ease !important;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-contact button[type="submit"]:hover {
    background-color: #d9b64b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(229, 196, 99, 0.35) !important;
}

.page-contact .form-confirmation {
    text-align: center;
    margin-top: 20px;
    color: #C29D53;
    font-weight: 500;
    font-style: italic;
}

.map-placeholder {
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(194, 157, 83, 0.12);
}

.map-placeholder img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.map-placeholder figcaption {
    background: #FFFFFF;
    padding: 12px;
    text-align: center;
    font-size: 0.85rem;
    color: #C29D53;
    font-weight: 600;
    letter-spacing: 1px;
}

.page-contact .contact-rappel {
    text-align: center;
    background: linear-gradient(145deg, #FFFFFF, #FDF6F0);
    border: 1px solid rgba(194, 157, 83, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact .contact-rappel p {
    margin: 10px 0;
    font-weight: 500;
    color: #555;
    font-size: 1rem;
}

.page-contact .contact-rappel i {
    color: #C29D53;
    margin-right: 10px;
    font-size: 1.1rem;
}

.page-contact .contact-rappel a {
    color: #C29D53;
    font-weight: 600;
    text-decoration: none;
}


/* ==========================================================================
   19. RESPONSIVE POUR TOUT LE SITE
   ========================================================================== */

@media (max-width: 992px) {
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .galerie-item:nth-child(1),
    .galerie-item:nth-child(3),
    .galerie-item:nth-child(6) {
        grid-row: span 1;
    }
    .page-equipe .features ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .galerie-grid {
        grid-template-columns: 1fr;
    }
    .galerie-item:nth-child(1),
    .galerie-item:nth-child(3),
    .galerie-item:nth-child(6) {
        grid-row: span 1;
    }
    .galerie-item img,
    .galerie-item video {
        min-height: 250px;
    }
    .galerie-titre {
        font-size: 2.5rem;
    }
    .produits-grid {
        grid-template-columns: 1fr;
    }
    .page-equipe .features ul {
        grid-template-columns: 1fr;
    }
    .page-equipe h1 {
        font-size: 2.5rem;
    }
    .page-contact h1 {
        font-size: 2.5rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        padding: 25px 20px;
    }
    .page-contact form {
        padding: 30px 20px;
    }
    .page-contact button[type="submit"] {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .galerie-titre {
        font-size: 2rem;
    }
    .page-equipe h1 {
        font-size: 2rem;
    }
    .page-contact h1 {
        font-size: 2rem;
    }
    .page-contact .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(194, 157, 83, 0.3);
}
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #FFFFFF;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox .close:hover {
    color: #C29D53;
}
.lightbox .caption {
    color: #C29D53;
    margin-top: 15px;
    font-size: 1rem;
    letter-spacing: 1px;
}
