/* ==========================================
   STYLES PAGES GÉO-CIBLÉES
   (photographe-mariage-marseille / aix-en-provence / cassis / france)
   ========================================== */

/* ── Navbar — texte foncé dès le chargement (fond blanc en haut de page) ── */
.page-geo .navbar .nav-links a { color: #000; }
.page-geo .nav-logo::after      { background: #000; }
.page-geo .nav-links li::before { background: #000; }
.page-geo .navbar.scrolled .nav-links a { color: #333; }
.page-geo .menu-close-btn { color: #000; }


/* ── Hero — surtitre + H1 + séparateur ornemental + chapeau ─────────── */

.geo-hero {
    padding: 160px 0 70px;
    background: #fff;
}

.geo-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px;
}

.geo-overline {
    font-family: "din-2014", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #a95d4f;
    text-transform: uppercase;
    margin: 0 0 26px;
}

.geo-h1 {
    font-family: "orpheuspro", serif;
    font-size: 44px;
    font-weight: 300;
    color: #2c1a18;
    line-height: 1.3;
    letter-spacing: 0;
    margin: 0;
    max-width: 720px;
}

.geo-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 190px;
    margin: 36px 0;
}

.geo-divider-line {
    flex: 1;
    height: 1px;
    background: #d9c9bc;
    display: block;
}

.geo-divider-ornament {
    flex-shrink: 0;
}

.geo-lead {
    font-family: "din-2014", sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #444;
    line-height: 1.8;
    margin: 0;
    max-width: 700px;
}


/* ── Corps d'article ──────────────────────────────────────────────── */

.geo-article {
    background: #fff;
    padding: 10px 0 100px;
}

.geo-article-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px;
}

.geo-section {
    margin: 0 0 54px;
}

.geo-section-title {
    font-family: "orpheuspro", serif;
    font-weight: 400;
    font-size: 25px;
    color: #2c1a18;
    line-height: 1.35;
    margin: 0 0 16px;
    padding-left: 22px;
    position: relative;
}

.geo-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #c9a882;
}

.geo-section p,
.geo-outro p {
    font-family: "din-2014", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.85;
    margin: 0;
}

.geo-article a {
    color: #a95d4f;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ── Galerie d'images ─────────────────────────────────────────────── */

.geo-gallery-wrap {
    margin: 0 0 54px;
}

.geo-gallery-kicker {
    font-family: "din-2014", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: #a95d4f;
    text-transform: uppercase;
    margin: 0 0 18px;
    padding-left: 22px;
}

.geo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.geo-gallery img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.geo-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* ── Clôture d'article ────────────────────────────────────────────── */

.geo-outro {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e4d9cd;
}

.geo-outro .geo-section-title {
    margin-bottom: 16px;
}

.geo-outro p {
    margin-bottom: 18px;
}

.geo-outro-cta {
    font-family: "orpheuspro", serif !important;
    font-style: italic;
    font-size: 18px !important;
    color: #333 !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}


/* ── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .geo-hero-inner,
    .geo-article-inner {
        padding: 0 50px;
    }

    .geo-h1 {
        font-size: 36px;
    }

    .geo-gallery {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .geo-hero {
        padding: 120px 0 50px;
    }

    .geo-hero-inner,
    .geo-article-inner {
        padding: 0 24px;
    }

    .geo-h1 {
        font-size: 28px;
        line-height: 1.35;
    }

    .geo-divider {
        margin: 28px 0;
        width: 150px;
    }

    .geo-lead {
        font-size: 15px;
    }

    .geo-section {
        margin-bottom: 42px;
    }

    .geo-section-title {
        font-size: 21px;
    }

    .geo-section p,
    .geo-outro p {
        font-size: 14px;
        line-height: 1.75;
    }

    .geo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .geo-outro-cta {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .geo-gallery {
        grid-template-columns: 1fr;
    }

    .geo-gallery img {
        aspect-ratio: 3 / 2;
    }
}
