/* ══════════════════════════════════════════════════════════
   vindjevakantiehuisje.nl — Premium Travel Design v3
   ══════════════════════════════════════════════════════════ */

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

:root {
    --bg: #f6efe6;
    --surface: #fffaf4;
    --surface-glass: rgba(255,250,244,.72);
    --text: #1b2428;
    --text-light: rgba(27,36,40,.58);
    --heading: #173c3a;
    --accent: #d97445;
    --accent-hover: #bf6035;
    --accent-gradient: linear-gradient(135deg, #d97445 0%, #e18958 100%);
    --accent-gradient-hover: linear-gradient(135deg, #bf6035 0%, #cf6c3c 100%);
    --gold: #e3bb6a;
    --line: rgba(23,60,58,.12);
    --shadow: 0 20px 60px rgba(23,36,40,.14);
    --shadow-hover: 0 28px 80px rgba(23,36,40,.20);
    --shadow-sm: 0 4px 16px rgba(23,36,40,.08);
    --radius-xl: 28px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1280px, calc(100vw - 48px));
    --footer-bg: #173c3a;
}

html { scroll-behavior: smooth; }

body {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text);
    background: linear-gradient(180deg, #fbf6ef 0%, var(--bg) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .display-title {
    font-family: "Fraunces", Georgia, serif;
    color: var(--heading);
    letter-spacing: -0.03em;
    text-wrap: balance;
    line-height: 1.05;
}

a { color: var(--accent); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: var(--container);
    margin: 0 auto;
}

/* ── Navigation ──────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background .3s ease, backdrop-filter .3s ease;
}
.site-nav.scrolled {
    background: rgba(255,250,244,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    transition: color .3s ease;
}
.scrolled .nav-logo { color: var(--heading); }
.logo-icon { font-size: 1.6rem; }
.logo-tld { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .02em;
    transition: color .25s ease;
}
.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--accent); }

/* ── Hero (Full-Screen Photo) ────────────────────────── */
.destination-hero {
    position: relative;
    min-height: 92svh;
    display: grid;
    align-items: end;
    isolation: isolate;
    overflow: hidden;
}
.destination-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.destination-hero__media img,
.destination-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}
.destination-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12,22,26,.18) 0%, rgba(12,22,26,.42) 50%, rgba(12,22,26,.78) 100%),
        radial-gradient(circle at top right, rgba(227,187,106,.2), transparent 30%);
    z-index: 1;
}
.destination-hero__inner {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin: 0 auto;
    padding: 140px 0 48px;
}

/* ── Hero Content ────────────────────────────────────── */
.destination-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.destination-hero h1 {
    max-width: 720px;
    margin: 0 0 14px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: .95;
    color: #fffaf4;
}
.destination-hero__lead {
    max-width: 640px;
    margin: 0 0 32px;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255,250,244,.85);
}

/* ── Travel Search Form ──────────────────────────────── */
@keyframes searchSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.travel-search {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr .8fr .7fr auto;
    gap: 0;
    background: rgba(255,250,244,.92);
    border: 1.5px solid rgba(255,255,255,.5);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 20px 60px rgba(23,36,40,.18),
        0 0 0 1px rgba(255,255,255,.1),
        inset 0 1px 0 rgba(255,255,255,.4);
    overflow: hidden;
    animation: searchSlideUp .6s cubic-bezier(.22,1,.36,1) .2s both;
}
.travel-search__item {
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    transition: background .25s ease, box-shadow .25s ease;
    position: relative;
}
.travel-search__item:hover {
    background: rgba(255,255,255,.5);
}
.travel-search__item:focus-within {
    background: rgba(255,255,255,.7);
    box-shadow: inset 0 -2px 0 var(--accent);
}
.travel-search__item:last-of-type { border-right: 0; }

.travel-search label {
    display: block;
    margin-bottom: 5px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
}
.travel-search input,
.travel-search select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font: 600 15px/1.3 "Manrope", sans-serif;
    color: var(--heading);
    cursor: pointer;
}
.travel-search input::placeholder { color: rgba(27,36,40,.38); }
.travel-search select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23173c3a' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
}

/* Destination field with search icon */
.travel-search__dest {
    position: relative;
}
.travel-search__dest .search-icon {
    position: absolute;
    right: 14px;
    bottom: 18px;
    width: 18px;
    height: 18px;
    color: var(--accent);
    opacity: .5;
    transition: opacity .25s ease;
    pointer-events: none;
}
.travel-search__dest:focus-within .search-icon {
    opacity: 1;
}

.travel-search__check {
    display: flex;
    align-items: center;
    padding: 18px 18px;
    border-right: 1px solid var(--line);
    transition: background .25s ease;
}
.travel-search__check:hover {
    background: rgba(255,255,255,.5);
}
.travel-search__check label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--heading);
    cursor: pointer;
    margin: 0;
    white-space: nowrap;
}
.travel-search__check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
    border-radius: 4px;
}

.travel-search__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 210px;
    border: 0;
    padding: 0 32px;
    background: var(--accent-gradient);
    color: #fff;
    font: 700 15px/1 "Manrope", sans-serif;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
    letter-spacing: .02em;
}
.travel-search__submit:hover {
    transform: translateY(-1px);
    background: var(--accent-gradient-hover);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 8px 24px rgba(217,116,69,.35);
}
.travel-search__submit:active {
    transform: translateY(0);
}
.travel-search__submit svg { flex-shrink: 0; }

/* ── Suggestion Strip ────────────────────────────────── */
.suggestion-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}
.suggestions-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,250,244,.6);
    margin-bottom: 10px;
}
.suggestion-card {
    display: block;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: rgba(255,250,244,.1);
    backdrop-filter: blur(14px);
    color: #fff;
    transition: transform .25s ease, background .25s ease;
}
.suggestion-card:hover {
    transform: translateY(-4px);
    background: rgba(255,250,244,.18);
    color: #fff;
}
.suggestion-photo {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
}
.suggestion-info { padding: 10px 4px 4px; }
.suggestion-name {
    display: block;
    font-weight: 700;
    font-size: .9rem;
    line-height: 1.2;
    margin-bottom: 2px;
}
.suggestion-country {
    font-size: .75rem;
    color: rgba(255,250,244,.65);
}

/* ── Sections ────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--surface); }
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    text-align: center;
    margin-bottom: 16px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Destination Cards (editorial style) ─────────────── */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    display: block;
    color: var(--text);
    transform: translateY(0);
    transition: transform .35s ease, box-shadow .35s ease;
}
.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    color: var(--text);
}
.card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.destination-card:hover .card-image,
.destination-card:hover .card-image img {
    transform: scale(1.06);
}
.card-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(16,24,29,.82) 100%);
    pointer-events: none;
}
.card-type {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,250,244,.14);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
    color: #fff;
}
.card-body h3 {
    margin: 0 0 6px;
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.1;
}
.card-country {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 8px;
}
.card-cta {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold);
}

/* ── Country Grid ────────────────────────────────────── */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.country-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--text);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.country-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent);
    color: var(--text);
}
.country-flag { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.country-name { display: block; font-weight: 700; font-size: .95rem; }
.country-count { display: block; font-size: .8rem; color: var(--text-light); }

/* ── Steps ───────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    max-width: 960px;
    margin: 0 auto;
}
.step { text-align: center; padding: 28px 20px; }
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(217,116,69,.3);
}
.step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.step p { color: var(--text-light); font-size: .95rem; }

/* ── Content Sections ────────────────────────────────── */
.content-section { max-width: 800px; }
.content-section h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.dest-description {
    line-height: 1.8;
    margin-bottom: 24px;
}
.dest-info-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}
.info-label { font-weight: 700; color: var(--text-light); min-width: 120px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: all .25s ease;
    font-family: "Manrope", sans-serif;
    border: none;
}
.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 6px 20px rgba(217,116,69,.25);
}
.btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--heading);
    border: 2px solid var(--line);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.section-cta { text-align: center; margin-top: 48px; }

/* ── Breadcrumb ──────────────────────────────────────── */
.breadcrumb-overlay {
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 3;
    font-size: .85rem;
}
.breadcrumb-overlay a { color: rgba(255,255,255,.65); }
.breadcrumb-overlay a:hover { color: #fff; }
.breadcrumb-overlay .bc-sep { color: rgba(255,255,255,.35); margin: 0 8px; }
.breadcrumb-overlay .bc-current { color: rgba(255,255,255,.9); font-weight: 600; }

.breadcrumb {
    background: var(--surface);
    padding: 14px 0;
    font-size: .85rem;
    border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }
.bc-sep { color: var(--text-light); margin: 0 8px; }
.bc-current { color: var(--text); font-weight: 600; }

/* ── Pagination ──────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 600;
    font-size: .9rem;
    transition: all .25s ease;
}
.page-link:hover { border-color: var(--accent); color: var(--accent); }
.page-link.current {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
}

/* ── Cookie Banner ───────────────────────────────────── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--heading);
    color: rgba(255,250,244,.9);
    padding: 18px 0;
    z-index: 1000;
    box-shadow: 0 -8px 30px rgba(0,0,0,.15);
}
.cookie-inner {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-inner p { font-size: .85rem; margin: 0; flex: 1; }
.cookie-inner a { color: var(--gold); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-sm { padding: 10px 22px; font-size: .8rem; }

/* ── Legal Pages ─────────────────────────────────────── */
.legal-page { max-width: 800px; padding-top: 100px; }
.legal-page h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-page h2 { font-size: 1.2rem; margin-top: 36px; margin-bottom: 12px; }
.legal-page p { margin-bottom: 14px; line-height: 1.75; }
.legal-page ul { margin-bottom: 16px; padding-left: 24px; }
.legal-page li { margin-bottom: 8px; line-height: 1.65; }
.legal-updated { color: var(--text-light); font-size: .85rem; margin-bottom: 28px; }
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: .85rem;
}
.legal-table th, .legal-table td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    text-align: left;
}
.legal-table th { background: var(--surface); font-weight: 700; }

/* ── No Results ──────────────────────────────────────── */
.no-results { text-align: center; padding: 56px 0; color: var(--text-light); }
.result-count { color: var(--text-light); margin-bottom: 28px; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
    margin-top: 0;
    padding: 60px 0 0;
    background: var(--footer-bg);
    color: rgba(255,250,244,.8);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}
.footer-brand .logo-text {
    font-family: "Fraunces", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fffaf4;
}
.footer-brand .logo-tld { color: var(--accent); }
.footer-brand p { margin-top: 12px; font-size: .9rem; line-height: 1.6; color: rgba(255,250,244,.65); }
.footer-col h4 {
    font-family: "Manrope", sans-serif;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,250,244,.45);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,250,244,.8); font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255,250,244,.1);
    font-size: .8rem;
    color: rgba(255,250,244,.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom a { color: rgba(255,250,244,.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 991px) {
    .travel-search { grid-template-columns: 1fr 1fr; border-radius: var(--radius-md); animation-delay: .1s; }
    .travel-search__dest { grid-column: 1 / -1; }
    .travel-search__submit { min-height: 60px; grid-column: 1 / -1; border-radius: 0 0 var(--radius-md) var(--radius-md); }
    .travel-search__dest .search-icon { bottom: 20px; }
    .suggestion-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .destination-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .destination-hero h1 { font-size: 2.4rem; }
    .site-nav .container { height: 70px; }
    .breadcrumb-overlay { top: 78px; }
}

@media (max-width: 640px) {
    :root { --container: calc(100vw - 32px); }
    .destination-hero { min-height: 80svh; }
    .destination-hero__inner { padding: 100px 0 28px; }
    .destination-hero h1 { font-size: 2rem; }
    .travel-search { grid-template-columns: 1fr; border-radius: var(--radius-md); animation-delay: .05s; }
    .travel-search__item { border-right: 0; border-bottom: 1px solid var(--line); }
    .travel-search__check { border-right: 0; border-bottom: 1px solid var(--line); }
    .travel-search__submit { min-height: 56px; font-size: 16px; }
    .suggestion-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .suggestion-card {
        flex: 0 0 78%;
        scroll-snap-align: start;
    }
    .destination-grid { grid-template-columns: 1fr; gap: 20px; }
    .card-image { aspect-ratio: 3/4; }
    .country-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section { padding: 48px 0; }
    .cookie-inner { flex-direction: column; text-align: center; }
    .nav-hide-mobile { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto; }
    .destination-card, .destination-card .card-image,
    .suggestion-card, .travel-search__submit { transition: none !important; }
}
