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

:root {
    --cream:   #dfdccc;
    --gold:    #c8a96e;
    --dark:    #1a1a1a;
    --muted:   #aaa;
    --white:   #ffffff;
    --glass-light: rgba(255,255,255,0.10);
    --glass-dark:  rgba(10,10,10,0.55);
    --radius:  12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: var(--cream);
    overflow-x: hidden;
    background: #111;
}

h2 {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    color: var(--cream);
}

h3 { font-weight: 400; color: var(--cream); }

.section-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 90px 24px;
    text-align: center;
}

.section-sub {
    color: var(--muted);
    margin-bottom: 2.5rem;
    font-size: .9rem;
    letter-spacing: .06em;
}

/* ── GLOBAL VIDEO BACKGROUND ─────────────────────────────────── */
#bg-video {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

/* Subtle dark tint so text stays readable across all sections */
#bg-tint {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

/* On mobile, hide the video — bg-tint provides a dark fallback */
@media (max-width: 680px) {
    #bg-video { display: none; }
    #bg-tint { background: rgba(12, 30, 35, 0.97); }
}

/* All sections are transparent — video shows through */
section {
    position: relative;
    background: transparent;
}

/* Alternating section overlays for visual rhythm */
section:nth-child(odd) .section-inner::before  { display: none; }

/* ── NAV ──────────────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    background: rgba(10,10,10,0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background .3s;
}

#navbar.scrolled { background: rgba(10,10,10,0.75); }

.nav-logo {
    color: var(--cream);
    font-size: .82rem;
    letter-spacing: .35em;
    font-weight: 300;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .7;
    transition: opacity .2s, color .2s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.4rem;
    cursor: pointer;
}

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
}

.hero-content {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: .72rem;
    letter-spacing: .45em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    opacity: .75;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 100;
    letter-spacing: .28em;
    text-transform: uppercase;
    margin-bottom: .4rem;
    color: var(--cream);
}

.hero-tagline {
    letter-spacing: .3em;
    font-size: .82rem;
    opacity: .7;
    margin-bottom: .8rem;
}

.hero-sub {
    font-size: .95rem;
    opacity: .8;
    margin-bottom: 2rem;
}

/* Hero carousel */
.carousel-viewport {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1.2rem;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 420px;
}

.slide {
    position: absolute;
    top: 0;
    bottom: 0;
    /* Each slide is 78% of the viewport width, centred at 11% left */
    width: 78%;
    left: 11%;
    transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s ease;
    opacity: 0;
    pointer-events: none;
    border-radius: var(--radius);
    overflow: hidden;
}

/* active slide — centred, full size */
.slide--active {
    transform: translateX(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* previous slide — smaller, anchored to its right edge, gap before active */
.slide--prev {
    transform: translateX(calc(-100% - 14px)) scale(0.82);
    transform-origin: right center;
    opacity: 0.45;
    z-index: 1;
}

/* next slide — smaller, anchored to its left edge, gap before active */
.slide--next {
    transform: translateX(calc(100% + 14px)) scale(0.82);
    transform-origin: left center;
    opacity: 0.45;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
    z-index: 10;
}
.prev { left: 0; border-radius: 0 6px 6px 0; }
.next { right: 0; border-radius: 6px 0 0 6px; }
.prev:hover, .next:hover { background: rgba(0,0,0,0.75); }

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 8px;
}
.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: none;
    cursor: pointer;
    transition: background .3s;
}
.dot.active { background: var(--gold); }

/* Hero buttons — direct request is the hero, platforms are secondary */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: .88rem;
    letter-spacing: .1em;
    text-decoration: none;
    color: var(--white);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(6px);
    transition: background .25s, transform .15s;
    cursor: pointer;
}

.platform-btn:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }

.cta-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 40px;
    letter-spacing: .12em;
}
.cta-btn:hover { background: #b8964f; color: var(--dark); }

.platform-secondary {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-sm {
    font-size: .78rem;
    padding: 9px 18px;
    opacity: .75;
}
.platform-sm:hover { opacity: 1; }

.btn-logo { width: 18px; height: auto; }

/* ── AMENITIES ────────────────────────────────────────────────── */
#amenities .section-inner { padding-bottom: 80px; }

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    text-align: left;
}

.amenity-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: background .25s, transform .2s;
}
.amenity-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-3px);
}

.amenity-icon {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    color: var(--gold);
}
.amenity-icon svg {
    width: 100%;
    height: 100%;
}

.amenity-card h3 {
    font-size: .9rem;
    letter-spacing: .06em;
    margin-bottom: 6px;
    color: var(--cream);
}
.amenity-card p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ── LOCATION ─────────────────────────────────────────────────── */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
.map-wrapper iframe { display: block; width: 100%; height: 380px; border: none; }

.distance-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}
.distance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
}
.distance-item strong { font-size: 1.8rem; font-weight: 200; color: var(--gold); }
.distance-item span   { font-size: .78rem; color: var(--muted); letter-spacing: .05em; margin-top: 4px; }

/* ── NEARBY ───────────────────────────────────────────────────── */
.nearby-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.nearby-col h3 {
    margin-bottom: 1rem;
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}
.nearby-col ul { list-style: none; }
.nearby-col li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.5;
}
.nearby-col li strong { color: var(--cream); }

/* ── PRICING ──────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 1.5rem;
}

.pricing-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius);
    padding: 32px 24px;
    color: var(--cream);
    transition: background .2s, transform .2s;
}
.pricing-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-3px);
}

.pricing-card h3 { font-size: 1rem; letter-spacing: .1em; margin-bottom: .3rem; }
.season-dates { font-size: .78rem; color: var(--muted); margin-bottom: 1rem; }

.price {
    font-size: 2.6rem;
    font-weight: 200;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.price span { font-size: .82rem; opacity: .7; }

.pricing-card ul { list-style: none; text-align: left; }
.pricing-card li { font-size: .82rem; padding: 5px 0; color: var(--muted); }

.pricing-discount-banner {
    margin: 1.8rem auto 0.8rem;
    max-width: 560px;
    padding: 14px 24px;
    border: 1px solid rgba(200,169,110,0.45);
    border-radius: 8px;
    background: rgba(200,169,110,0.10);
    color: var(--gold);
    font-size: .9rem;
    letter-spacing: .05em;
}

.pricing-note { color: rgba(200,200,180,.4); font-size: .78rem; }

/* ── BOOKING SECTION ──────────────────────────────────────────── */
.booking-form {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 36px 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group.full-width { grid-column: 1/-1; }

label {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

input, select, textarea {
    font-family: 'Raleway', sans-serif;
    font-size: .88rem;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 7px;
    background: rgba(255,255,255,0.07);
    color: var(--cream);
    outline: none;
    transition: border-color .2s, background .2s;
}
input::placeholder, textarea::placeholder { color: rgba(200,200,180,0.35); }
select option { background: #222; color: var(--cream); }
input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.11);
}
textarea { resize: vertical; }

.submit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Raleway', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .14em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 8px;
}
.submit-btn:hover { background: #b8964f; transform: translateY(-1px); }

.form-note { text-align: center; font-size: .72rem; color: rgba(180,180,160,.5); margin-top: 12px; }

.hidden { display: none !important; }

.form-success {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
}
.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: var(--gold);
    color: var(--dark);
    font-size: 1.6rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.form-success h3 { margin-bottom: .5rem; color: var(--cream); }
.form-success p  { color: var(--muted); font-size: .9rem; }

.booking-alt {
    margin-top: 40px;
    text-align: center;
}
.booking-alt p {
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(180,180,160,.4);
    margin-bottom: 12px;
}
.booking-alt-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    color: rgba(200,196,180,.4);
    text-align: center;
    padding: 28px 24px;
    font-size: .76rem;
    letter-spacing: .08em;
    line-height: 2;
    border-top: 1px solid rgba(255,255,255,0.06);
}
footer a { color: var(--gold); text-decoration: none; opacity: .7; }
footer a:hover { opacity: 1; }

/* ── SECTION DIVIDERS ─────────────────────────────────────────── */
section + section {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── LANGUAGE SELECTOR ────────────────────────────────────────── */
.lang-item { display: flex; align-items: center; margin-left: 8px; }

.lang-select {
    display: flex;
    gap: 4px;
}
.lang-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--cream);
    font-family: 'Raleway', sans-serif;
    font-size: .68rem;
    letter-spacing: .1em;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.5;
    transition: all .2s;
}
.lang-btn:hover { opacity: 0.9; border-color: rgba(255,255,255,0.4); }
.lang-btn.active { opacity: 1; border-color: var(--gold); color: var(--gold); }

/* ── NEARBY ITEM LAYOUT ───────────────────────────────────────── */
.nearby-col li { padding: 14px 0; display: block; }

.ni-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.ni-header strong { color: var(--cream); font-size: .9rem; }

.dist {
    font-size: .72rem;
    color: var(--gold);
    white-space: nowrap;
    opacity: .85;
    letter-spacing: .04em;
}

.ni-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 5px; }

.tag {
    display: inline-block;
    font-size: .68rem;
    letter-spacing: .06em;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--cream);
    opacity: .8;
}
.tag.breakfast { border-color: rgba(200,169,110,0.5); color: var(--gold); }
.tag.lunch     { border-color: rgba(180,180,160,0.35); color: var(--muted); }

.ni-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ── DESKTOP ENHANCEMENTS ─────────────────────────────────────── */
@media (min-width: 681px) {
    .hero-slideshow { height: 500px; }
    .carousel-viewport { max-width: 1000px; }
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 680px) {
    #navbar { justify-content: space-between; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(10,10,10,0.95);
        padding: 20px 32px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }

    /* Language switcher sits at the bottom of the dropdown on mobile */
    .lang-item {
        margin-left: 0;
        margin-top: 8px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .lang-select { gap: 8px; }

    .hero-slideshow { height: 240px; }
    .form-row { grid-template-columns: 1fr; }
    .nearby-cols { grid-template-columns: 1fr; }
    .booking-form { padding: 24px 18px; }
}
