/* ============================================
   LA PLANCHE À PAPA — Premium Dark Theme
   Boulangerie Artisanale — Barvaux, Belgique
   ============================================ */

:root {
    /* Brand Colors — Warm Bakery Palette */
    --gold: #c7944a;
    --gold-light: #d4a86e;
    --gold-dark: #a07535;
    --gold-glow: rgba(199, 148, 74, 0.15);

    /* Secondary warm tones */
    --warm: #b35e3a;
    --warm-glow: rgba(179, 94, 58, 0.12);

    /* Neutrals */
    --black: #0a0a0a;
    --dark-1: #111111;
    --dark-2: #171717;
    --dark-3: #1e1e1e;
    --dark-4: #2a2a2a;
    --gray-1: #555;
    --gray-2: #888;
    --gray-3: #aaa;
    --gray-4: #ccc;
    --white: #f5f0eb;
    --pure-white: #ffffff;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-pad: 120px;
    --container-max: 1200px;

    /* Misc */
    --radius: 6px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--gray-3);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* ============================================
   Preloader
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 40px;
    animation: pulse 1.5s ease-in-out infinite;
    border-radius: 50%;
    object-fit: cover;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--dark-4);
    border-radius: 1px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: var(--gold);
    border-radius: 1px;
    animation: loading 1.5s ease forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.2;
    font-weight: 500;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-2);
    max-width: 600px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-center .section-desc {
    margin: 0 auto;
}

/* ============================================
   Layout
   ============================================ */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section {
    padding: var(--section-pad) 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(199, 148, 74, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--pure-white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(199, 148, 74, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    border-radius: 50%;
}

.navbar.scrolled .nav-logo-img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    border-radius: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pure-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
    margin-left: 8px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.bar {
    width: 28px;
    height: 2px;
    background: var(--pure-white);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 0 20px;
}

.hero-logo-wrapper {
    margin-bottom: 30px;
    padding-top: 20px;
}

.hero-logo {
    width: 260px;
    height: 260px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.6));
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(199, 148, 74, 0.3);
}

.hero-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 20px;
    animation: expandWidth 1s ease-out 0.9s forwards;
    transform: scaleX(0);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gray-4);
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 1.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2.5s infinite;
}

.scroll-hint span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-8px) translateX(-50%);
    }

    60% {
        transform: translateY(-4px) translateX(-50%);
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--dark-1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 16px;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-accent {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 40px;
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.about-img-accent:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-3);
    border: 1px solid rgba(199, 148, 74, 0.2);
    padding: 16px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
}

.about-badge i {
    font-size: 1.5rem;
    color: var(--gold);
}

.about-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    color: var(--gray-4);
}

.about-quote {
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    margin: 30px 0;
}

.about-quote p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--dark-4);
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat i {
    font-size: 1.3rem;
    color: var(--gold);
}

.stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
    color: var(--gray-3);
}

/* ============================================
   Services / Nos Spécialités
   ============================================ */
.services {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

.service-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-2);
    line-height: 1.6;
}

/* ============================================
   Gallery / Photos
   ============================================ */
.gallery {
    background: var(--dark-1);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 30%,
            rgba(10, 10, 10, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.gallery-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    transform: translateY(10px);
    transition: transform 0.4s;
}

.gallery-info p {
    font-size: 0.85rem;
    color: var(--gray-2);
    transform: translateY(10px);
    transition: transform 0.4s 0.05s;
}

.gallery-item:hover .gallery-info h3,
.gallery-item:hover .gallery-info p {
    transform: translateY(0);
}

/* ============================================
   Parallax Quote
   ============================================ */
.parallax-quote {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 750px;
    padding: 0 20px;
}

.parallax-content i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.parallax-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 20px;
}

.parallax-content cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ============================================
   Horaires / Schedule
   ============================================ */
.horaires {
    background: var(--black);
}

.horaires-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.schedule-card {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: var(--radius);
    padding: 40px;
    transition: var(--transition);
}

.schedule-card:hover {
    border-color: rgba(199, 148, 74, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.schedule-card h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.schedule-card h3 i {
    color: var(--gold);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-4);
    font-size: 0.95rem;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row .day {
    color: var(--white);
    font-weight: 500;
}

.schedule-row .time {
    color: var(--gold);
    font-weight: 600;
}

.schedule-row.closed .day,
.schedule-row.closed .time {
    color: var(--gray-1);
}

.schedule-row.closed .time {
    font-style: italic;
}

.special-note {
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--gold-glow);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    font-size: 0.85rem;
    color: var(--gold-light);
    line-height: 1.5;
}

.special-note i {
    margin-right: 8px;
    color: var(--gold);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--dark-4);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: brightness(0.8) contrast(1.1) saturate(0);
    transition: filter 0.4s;
}

.map-container:hover iframe {
    filter: brightness(0.9) contrast(1.05) saturate(0.5);
}

/* ============================================
   Facebook Section
   ============================================ */
.facebook-section {
    background: var(--dark-1);
    position: relative;
    overflow: hidden;
}

.facebook-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(24, 119, 242, 0.06), transparent 60%);
    pointer-events: none;
}

.fb-hero {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fb-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1877F2, #0d5bbf);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(24, 119, 242, 0.3);
    animation: fbPulse 3s ease-in-out infinite;
}

.fb-icon-circle i {
    font-size: 2.8rem;
    color: #fff;
}

@keyframes fbPulse {

    0%,
    100% {
        box-shadow: 0 10px 40px rgba(24, 119, 242, 0.3);
    }

    50% {
        box-shadow: 0 10px 60px rgba(24, 119, 242, 0.5);
    }
}

.fb-hero .section-title {
    margin-bottom: 20px;
}

.fb-desc {
    font-size: 1.05rem;
    color: var(--gray-2);
    line-height: 1.8;
    margin-bottom: 36px;
}

.fb-likes-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    padding: 14px 28px;
    border-radius: 50px;
    margin-bottom: 36px;
}

.fb-likes-counter i {
    color: #e74c3c;
    font-size: 1.1rem;
}

.fb-likes-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.fb-likes-label {
    font-size: 0.85rem;
    color: var(--gray-2);
}

.fb-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 48px;
    background: #1877F2;
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.fb-follow-btn:hover {
    background: #1565c0;
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(24, 119, 242, 0.45);
}

.fb-follow-btn i {
    font-size: 1.3rem;
}

/* ============================================
   Actualités / News
   ============================================ */
.actualites {
    background: var(--black);
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 850px;
    margin: 0 auto;
}

.news-card {
    display: flex;
    gap: 30px;
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateX(6px);
    border-left-color: var(--gold-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-date {
    min-width: 70px;
    text-align: center;
    border-right: 1px solid var(--dark-4);
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.news-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-2);
    margin-top: 6px;
    display: block;
}

.news-content {
    flex: 1;
}

.news-tag {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.95rem;
    color: var(--gray-2);
    line-height: 1.6;
}

.news-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--dark-1);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-intro {
    font-size: 1rem;
    margin: 24px 0 40px;
    color: var(--gray-2);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-2);
    margin-bottom: 4px;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
}

a.contact-value:hover {
    color: var(--gold);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.contact-socials a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: #1877F2;
    color: var(--pure-white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

/* Contact Image */
.contact-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.contact-image:hover img {
    transform: scale(1.03);
}

.contact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.contact-image-overlay p {
    color: var(--pure-white);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-image-overlay i {
    color: var(--gold);
    margin-right: 8px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-2);
    padding: 60px 0 40px;
    border-top: 1px solid var(--dark-4);
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    opacity: 0.8;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray-2);
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--dark-4);
}

.footer-nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-2);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-1);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ============================================
   Lightbox Gallery
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-content img {
    animation: lightboxZoomIn 0.4s ease forwards;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
}

.lightbox-caption h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
}

.lightbox-caption p {
    font-size: 0.9rem;
    color: var(--gray-2);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 2;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 0.85rem;
    color: var(--gray-2);
    letter-spacing: 2px;
}

/* ============================================
   Scroll-Triggered Animation
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .about-grid {
        gap: 50px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        gap: 50px;
    }

    .fb-follow-btn {
        padding: 18px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 70px;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-item {
        margin: 8px 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 20px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Gallery */
    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .gallery-item.tall {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

    .gallery-overlay {
        opacity: 1;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Facebook */
    .fb-icon-circle {
        width: 80px;
        height: 80px;
    }

    .fb-icon-circle i {
        font-size: 2.2rem;
    }

    .fb-follow-btn {
        padding: 16px 32px;
        font-size: 0.95rem;
    }

    .fb-likes-counter {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Horaires */
    .horaires-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Parallax fallback mobile */
    .parallax-bg {
        background-attachment: scroll;
    }

    /* Hero */
    .hero-logo {
        width: 180px;
        height: 180px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    /* News */
    .news-card {
        flex-direction: column;
        gap: 16px;
    }

    .news-date {
        flex-direction: row;
        gap: 10px;
        align-items: baseline;
        border-right: none;
        border-bottom: 1px solid var(--dark-4);
        padding-right: 0;
        padding-bottom: 12px;
        min-width: auto;
    }

    /* Lightbox mobile */
    .lightbox-prev {
        left: 10px;
        width: 44px;
        height: 44px;
    }

    .lightbox-next {
        right: 10px;
        width: 44px;
        height: 44px;
    }
}