/* ============================================================
   site.css — Raúl van Harmelen Photography

   Import in _Host.cshtml or index.html:
     <link href="css/site.css" rel="stylesheet" />
   ============================================================ */


/* ════════════════════════════════════════════════════════════
   FONT IMPORTS
   Add or swap @import lines here to change typefaces globally.
   Segoe UI is a Windows/macOS system font — no import needed.
   ════════════════════════════════════════════════════════════ */
/* Card fonts (Playfair Display, Josefin Sans, Cinzel) — add this link to your _Host.cshtml:
   <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Fraunces:ital,opsz,wght@0,9..144,200;0,9..144,300;1,9..144,200;1,9..144,300&family=Josefin+Sans:wght@300;600;700&family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap" rel="stylesheet" />
*/

/* Add more @import lines above this comment to load extra fonts,
   then reference them via the --font-* variables below. */


/* ════════════════════════════════════════════════════════════
   FONT CONFIGURATION
   Change the values here to globally swap typefaces.
   Pages or bestemming components can override --font-heading
   or --font-body via an inline style on their root element.
   ════════════════════════════════════════════════════════════ */
:root {
    /* Logo / brand name in the top-left nav corner */
    --font-logo:    'Segoe UI', system-ui, -apple-system, sans-serif;

    /* Hero titles, section headings, large display text */
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* Navigation, body copy, labels, buttons */
    --font-body:    'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Registreert --page-accent als animeerbare CSS property */
@property --page-accent {
    syntax: '<color>';
    inherits: true;
    initial-value: #e8b84b;
}

/* ════ DESIGN TOKENS ════ */
:root {
    --page-accent: #e8b84b; /* blijft staan — dit is de runtime waarde */
    /* rest van je tokens... */
}
/* ════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════════════════════════ */
:root {
    /* Page accent — driven at runtime by AccentService.
       MainLayout writes this as an inline CSS variable on the
       root <div>, so every component picks up the correct color
       without needing page-specific CSS selectors. */
    --page-accent:    #e8b84b;

    /* Default accent values per top-level page (used by MainLayout) */
    --accent-home:          #e8b84b;
    --accent-bestemmingen:  #d4734a;
    --accent-beelden:       #5b9ec9;
    --accent-contact:       #7eb88a;

    --nav-height:   68px;
    --text-main:    #f0ece6;
    --text-muted:   rgba(240, 236, 230, 0.55);
    --border-subtle: rgba(240, 236, 230, 0.08);
    --surface:       rgba(240, 236, 230, 0.04);
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: #0c0b0a;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

button { cursor: pointer; font-family: inherit; }

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}


/* ── Navigation ── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-height);
    background: linear-gradient(to bottom, rgba(12,11,10,0.72) 0%, rgba(12,11,10,0.0) 100%);
    transition: background 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    padding: 0 2rem;
    position: relative;
}

/* Brand name — top left, inherits the page accent so it shifts with every page/bestemming */
.nav-brand {
    font-family: var(--font-logo);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--page-accent);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.2s;
    flex-shrink: 0;
}

.nav-brand:hover {
    opacity: 0.7;
    color: var(--page-accent);
}

/* Desktop links — absolute center */
.nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

    .nav-links a {
        font-family: var(--font-body);
        font-weight: 300;
        font-size: 0.78rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(240, 236, 230, 0.7);
        text-decoration: none;
        position: relative;
        padding-bottom: 0;
        transition: color 0.2s ease, --page-accent 0.5s ease;
    }

.nav-links a:hover { color: var(--text-main); }

.nav-links a.active {
    font-weight: 500;
    color: var(--page-accent);
}

    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0; /* sits below text without affecting its layout height */
        height: 1px;
        transition: background 0.5s ease;
        opacity: 0.7;
    }

/* Hamburger button */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    padding: 4px;
    margin-left: auto;
    line-height: 1;
}

.hamburger-icon { width: 22px; height: 16px; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger-icon span { display: block; height: 2px; background: var(--text-main); transition: transform 0.25s, opacity 0.25s; }

.nav-hamburger.open .hamburger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .hamburger-icon span:nth-child(2) { opacity: 0; }
.nav-hamburger.open .hamburger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(12, 11, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    padding: 1rem 2rem 1.5rem;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240, 236, 230, 0.7);
    text-decoration: none;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(240, 236, 230, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.2s;
}

.nav-mobile-menu a.active {
    font-weight: 500;
    color: var(--page-accent);
}

.nav-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--page-accent);
    flex-shrink: 0;
}


/* ── Hero ── */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #0d0a18;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ── Hero content: base styles shared by all templates ── */
.hero-content {
    position: absolute;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
}

/* ── Hero title position templates ── */
/* Classic / default: title anchored bottom-left */
.hero-content.hero-pos-bottom-left {
    left: 0;
    right: 0;
    bottom: 4rem;
    max-width: 900px;
    align-items: flex-start;
}

/* Editorial: title anchored bottom-right */
.hero-content.hero-pos-bottom-right {
    right: 3rem;
    left: auto;
    bottom: 4rem;
    max-width: 700px;
    text-align: right;
    align-items: flex-end;
}

/* Centered: title centered both axes */
.hero-content.hero-pos-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    max-width: 700px;
    text-align: center;
    align-items: center;
}

/* Archival: title near the top, below the nav */
.hero-content.hero-pos-top-left {
    top: calc(var(--nav-height) + 3rem);
    left: 0;
    right: 0;
    bottom: auto;
    max-width: 900px;
    align-items: flex-start;
}

/* ── Eyebrow ── */
.hero-eyebrow {
    font-family: var(--font-heading), Georgia, serif; /* eyebrow stays serif italic — it's a label, not a heading */
    font-style: italic;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--page-accent);
    margin-bottom: 0.75rem;
}

.hero-eyebrow-below {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ── Hero title ── */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

/* ── CTA button ── */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--page-accent);
    color: var(--page-accent);
    transition: background 0.25s, color 0.25s;
}

.hero-cta:hover {
    background: var(--page-accent);
    color: #0c0b0a;
}

/* ── CTA positioning ── */

/* Absolutely positioned desktop CTA (bottom-right by default) */
.hero-cta-wrapper {
    position: absolute;
    bottom: 4rem;
    right: 3rem;
}

/* Variant: CTA on the bottom-left */
.hero-cta-wrapper.hero-cta-left {
    left: 3rem;
    right: auto;
}

/* In-flow CTA — used by Centered template and on mobile */
.hero-cta-inline {
    margin-top: 2rem;
}

/* Show mobile-only inline CTA; hide desktop-only absolute wrapper */
.hero-cta-mobile-only  { display: none; }
.hero-cta-desktop-only { display: block; }

/* ── Fallback: pages that don't use HeroSection (older inline heroes) ── */
/* These pages have their own hero-content / hero-cta-wrapper without template classes.
   Keep them working by applying the classic layout implicitly. */
.hero-content:not([class*="hero-pos-"]) {
    left: 0; right: 0;
    bottom: 4rem;
    max-width: 900px;
    align-items: flex-start;
}


/* ── Page content ── */
.page-content { min-height: 50vh; }


/* ── Home page ── */
.home-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 6rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.home-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    padding: 1.5rem;
    background: var(--surface);
    border-top: 1px solid var(--page-accent);
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--page-accent);
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240, 236, 230, 0.45);
    margin-top: 0.25rem;
}

.home-teasers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 3rem 8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.teaser-card { text-decoration: none; display: block; }
.teaser-card:hover .teaser-img { transform: scale(1.04); }
.teaser-img-wrap { overflow: hidden; margin-bottom: 1rem; }
.teaser-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform 0.5s ease; }

.teaser-tag {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--page-accent);
    margin-bottom: 0.4rem;
}

.teaser-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}


/* ── Bestemmingen ── */
.page-bestemmingen .page-content,
.bestemmingen-page { background: color-mix(in srgb, var(--page-accent) 6%, #000000); min-height: 100vh; }

.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 5rem 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(240, 236, 230, 0.15);
    color: rgba(240, 236, 230, 0.6);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--page-accent);
    border-color: var(--page-accent);
    color: #0c0b0a;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 3rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.destination-card {
    background: var(--surface);
    border-bottom: 1px solid var(--page-accent);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: opacity 0.2s;
}

.destination-card:hover { opacity: 0.9; }
.destination-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform 0.5s; }
.destination-card:hover img { transform: scale(1.04); }
.destination-card-img-wrap { overflow: hidden; }

.destination-card-body { padding: 1.25rem 1.5rem 1.5rem; }

.destination-country {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240, 236, 230, 0.35);
    margin-bottom: 0.4rem;
}

.destination-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

.destination-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
}


/* ── Bestemming card (image-overlay portrait style) ─────────────────────────
   Per-card CSS variables (set via inline style on the element):
     --card-accent : the destination's accent hex color
     --card-font   : the destination's CSS font-family string
   ─────────────────────────────────────────────────────────────────────────── */
.bestemming-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #0c0b0a;
}

.bestemming-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.bestemming-card:hover img { transform: scale(1.06); }

.bestemming-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.32) 45%,
            transparent 100%
    );
    transition: background 0.35s;
}

.bestemming-card:hover .bestemming-card-overlay {
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.52) 60%,
            rgba(0, 0, 0, 0.1) 100%
    );
}

.bestemming-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.bestemming-card-country {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--card-accent, var(--page-accent));
    margin-bottom: 0.35rem;
}

.bestemming-card-title {
    /* font-family overridden per card via --card-font */
    font-family: var(--card-font, var(--font-heading));
    font-weight: 700;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.bestemming-card-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.bestemming-card-tag {
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.22rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.bestemming-card-tag:hover,
.bestemming-card-tag.active {
    border-color: var(--card-accent, var(--page-accent));
    color: var(--card-accent, var(--page-accent));
    background: rgba(255, 255, 255, 0.05);
}

/* Card grids */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cards-grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

/* Tag filter bar for bestemmingen page */
.tag-filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 4rem 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tag-filter-btn {
    background: transparent;
    border: 1px solid rgba(240, 236, 230, 0.15);
    color: rgba(240, 236, 230, 0.6);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tag-filter-btn.active,
.tag-filter-btn:hover {
    background: var(--page-accent);
    border-color: var(--page-accent);
    color: #0c0b0a;
}


/* ── Beelden ── */
.page-beelden .page-content,
.beelden-page { background: color-mix(in srgb, var(--page-accent) 6%, #000000); min-height: 100vh; }

.gallery-columns {
    columns: 3 280px;
    column-gap: 1rem;
    padding: 5rem 3rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(1);
}

.gallery-item img { aspect-ratio: 1 / 1; height: auto; }


/* ── Contact ── */
.page-contact .page-content,
.contact-page { background: color-mix(in srgb, var(--page-accent) 6%, #000000); min-height: 100vh; }

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
    padding: 5rem 3rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1.25rem;
}

.contact-info-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-detail-icon { color: var(--page-accent); flex-shrink: 0; }

.contact-detail-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.875rem;
    color: rgba(240, 236, 230, 0.6);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240, 236, 230, 0.4);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(240, 236, 230, 0.05);
    border: 1px solid rgba(240, 236, 230, 0.12);
    border-radius: 0;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--page-accent); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240, 236, 230, 0.25); }

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--page-accent);
    border: none;
    color: #060c09;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.btn-submit:hover { opacity: 0.85; }

.contact-success {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem;
    background: var(--surface);
    border-top: 1px solid var(--page-accent);
}

.contact-success-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--page-accent);
}

.contact-success-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ── Utility ── */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ── Beelden teaser section ── */
.beelden-teaser {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beelden-teaser-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.05;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.beelden-teaser-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.beelden-teaser-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 38ch;
}

/* ── Image strip (horizontal scroll) ── */
.image-strip-outer {
    padding-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.image-strip-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 3rem;
    cursor: grab;
}

.image-strip-scroll:active { cursor: grabbing; }
.image-strip-scroll::-webkit-scrollbar { display: none; }

.image-strip {
    display: flex;
    gap: 0.75rem;
    width: max-content;
}

.image-strip-item {
    width: 260px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    overflow: hidden;
}

.image-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.9);
}

.image-strip-item:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}

/* ── Recente bestemmingen section ── */
.recent-bestemmingen {
    padding: 5rem 3rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--page-accent);
    margin-bottom: 0.6rem;
}

.recent-bestemmingen-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.recent-bestemmingen-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.recent-bestemmingen-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 55ch;
    margin: 0 auto;
    line-height: 1.7;
}

.recent-bestemmingen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.recent-bestemmingen-more {
    text-align: center;
    margin-top: 3rem;
}

.bestemmingen-grid {
    container-type: inline-size; /* add this line */
}

/* ── Contact CTA section ── */
.contact-cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cta-image {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.contact-cta-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-cta-content {
    background: color-mix(in srgb, var(--page-accent) 8%, #000000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.5rem 3.5rem;
}

.contact-cta-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    color: var(--page-accent);   /* accent title draws the eye without overwhelming */
    margin-bottom: 1.25rem;
}

.contact-cta-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2.25rem;
    max-width: 40ch;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: 1px solid var(--page-accent);
    color: var(--page-accent);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.8rem 1.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    width: fit-content;
}

.contact-cta-btn:hover {
    background: var(--page-accent);
    color: #0c0b0a;
}


/* ── Footer ── */
.footer {
    /* Subtle accent tint — shifts with every page without dominating */
    background-color: color-mix(in srgb, var(--page-accent) 8%, #000000);
    color: var(--page-accent);
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s ease;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 1.1rem;
    font-weight: 700;
    color: inherit;
}

.footer-logo a { color: inherit; text-decoration: none; }

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    /* Absolute center is tricky in space-between; use flex + margin auto trick */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Wrapper needs position:relative to contain the absolute social block */
.footer-content { position: relative; }

.footer-social a {
    color: inherit;
    opacity: 0.85;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
}

.footer-social a:hover { opacity: 1; }

.social-icon {
    width: 1.4rem;
    height: 1.4rem;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--page-accent);
    opacity: 0.65;
    white-space: nowrap;
}


/* ── Shared typography ── */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}


/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero: all positioned variants collapse to bottom-left on mobile */
    .hero-content,
    .hero-content.hero-pos-bottom-left,
    .hero-content.hero-pos-bottom-right,
    .hero-content.hero-pos-top-left {
        left: 0; right: 0; bottom: 2rem;
        top: auto; transform: none;
        padding: 0 1.5rem;
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
    }

    .hero-content.hero-pos-center {
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto; right: auto;
        padding: 0 1.5rem;
        max-width: 90%;
    }

    .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }

    /* On mobile: hide the absolute CTA wrapper, show the in-flow one instead */
    .hero-cta-desktop-only { display: none !important; }
    .hero-cta-mobile-only  { display: block; }

    .home-intro { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
    .home-teasers { grid-template-columns: 1fr; padding: 0 1.5rem 4rem; }

    .filter-bar { padding: 3rem 1.5rem 1.5rem; }
    .destinations-grid { grid-template-columns: 1fr; padding: 1.5rem 1.5rem 4rem; }

    .gallery-columns { columns: 2 160px; padding: 3rem 1rem 4rem; }

    .contact-inner { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem 4rem; }

    /* New home sections */
    .beelden-teaser { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 1.5rem 2rem; }
    .beelden-teaser-text { max-width: 100%; }
    .image-strip-scroll { padding: 0 1.5rem; }
    .image-strip-item { width: 200px; }
    .recent-bestemmingen { padding: 3.5rem 1.5rem 4rem; }
    .recent-bestemmingen-grid { grid-template-columns: 1fr; gap: 1rem; }
    .contact-cta-section { grid-template-columns: 1fr; }
    .contact-cta-image { min-height: 280px; }
    .contact-cta-content { padding: 3rem 1.5rem; }

    .cards-grid-3  { grid-template-columns: 1fr; }
    .cards-grid-auto { grid-template-columns: repeat(2, 1fr); }
    .tag-filter-bar { padding: 3rem 1.5rem 1.5rem; }

    /* Footer: stack on very small screens */
    .footer-social { position: static; transform: none; }
    .footer-content { flex-direction: column; justify-content: center; gap: 0.75rem; }
    .footer-copyright { text-align: center; width: 100%; }
}

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

/* ══════════════════════════════════════════════════════════════
   HERO TYPOGRAPHY TEMPLATES
   Spiegelt de BestemmingCard typografie op de detailpagina.
   ══════════════════════════════════════════════════════════════ */

/* ── Italic ── Libre Baskerville, links uitgelijnd */
.hero-title--italic {
    font-family: 'Libre Baskerville', Georgia, serif !important;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.hero-eyebrow--italic {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    letter-spacing: 0.08em;
    /*letter-spacing: 0.04em;*/
    text-transform: none;
    color: var(--page-accent);
}

/* ── Roman ── Playfair Display SC, gecentreerd */
.hero-template--roman {
    align-items: center;
    text-align: center;
}

.hero-title--roman {
    font-family: 'Playfair Display SC', Georgia, serif !important;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.05;
}

.hero-eyebrow--roman {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--page-accent);
}

/* ── Helvetica ── Helvetica Neue light, links */
.hero-title--helvetica {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 300;
    font-style: normal;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-eyebrow--helvetica {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    letter-spacing: 0.08em;
    text-transform: none;
    opacity: 0.70;
    color: var(--page-accent);
}

/* ── Contrast ── Helvetica Neue black italic titel, Baskervville subtitle */
.hero-title--contrast {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.02em;
    line-height: 1.0;
}

.hero-eyebrow--contrast {
    font-family: 'Baskervville', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--page-accent);
}