/* Reset-ish */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #2b2526;
    background: #f7f4f2;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

:root {
    --bg: #f7f4f2;
    --surface: #ffffff;
    --surface-alt: #f0e8e3;
    --primary: #7a1f3d;
    --primary-dark: #56132a;
    --accent: #d6b36a;
    --text: #2b2526;
    --muted: #6d6360;
    --max-width: 1120px;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(247, 244, 242, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

.logo {
    font-weight: 600;
    letter-spacing: 0.16em;
    font-size: 0.98rem;
    text-transform: uppercase;
}

    .logo span {
        display: block;
        font-size: 0.7rem;
        letter-spacing: 0.28em;
        color: var(--muted);
    }


.top-nav .nav-book {
    color: #fff;
}

.top-nav {
    display: flex;
    gap: 18px;
    font-size: 0.9rem;
    align-items: center;
}

    .top-nav a {
        color: var(--text);
    }

.nav-book {
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

    .nav-book:hover {
        background: var(--primary-dark);
        text-decoration: none;
    }

/* Bottom nav for mobile portrait */
.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111111;
    color: #f4f0ec;
    display: none; /* shown via media query */
    z-index: 45;
    border-top: 1px solid rgba(255,255,255,0.12);
}

    .bottom-nav a {
        flex: 1;
        text-align: center;
        padding: 10px 4px 8px;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

.bottom-book {
    font-weight: 600;
    color: var(--accent);
}

/* Hero */
.hero {
    position: relative;
    min-height: 50vh; /* reduced from 70vh */
    display: flex;
    align-items: stretch;
    color: #fff;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 65%; /* x y: 50% horizontal, 65% vertical */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

    .hero-content h1 {
        font-size: clamp(2.4rem, 3.4vw, 3.4rem);
        font-weight: 300;
        max-width: 18ch;
    }

    .hero-content p {
        margin-top: 10px;
        max-width: 35ch;
        font-size: 1.05rem;
    }

.hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.9;
}

    .hero-meta span::before {
        content: "• ";
        margin-right: 2px;
    }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.93rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        text-decoration: none;
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

    .btn-ghost:hover {
        background: rgba(0,0,0,0.25);
        text-decoration: none;
    }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: #fff;
        text-decoration: none;
    }

/* Sections */
.section {
    padding: 60px 0;
    background: var(--bg);
}

.section-alt {
    background: var(--surface-alt);
}

.section-header {
    text-align: left;
    margin-bottom: 28px;
}

    .section-header h2,
    .section-header h1 {
        font-size: 1.9rem;
        margin: 0 0 8px;
    }

    .section-header p {
        margin: 0;
        color: var(--muted);
    }

.lead {
    font-size: 1.05rem;
    line-height: 1.7;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.split-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.image-frame,
.map-frame {
    border-radius: 20px;
    overflow: hidden;
    background: #ddd;
}

    .map-frame iframe {
        width: 100%;
        min-height: 260px;
        border: 0;
    }

/* Cards & grids */
.card-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.card-image-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 16px 18px 18px;
}

    .card-body h3 {
        margin: 0 0 6px;
    }

    .card-body p {
        margin: 0 0 8px;
        color: var(--muted);
    }

.text-link {
    font-size: 0.9rem;
    color: var(--primary);
}

.section-cta {
    margin-top: 28px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.feature {
    background: var(--surface);
    border-radius: 16px;
    padding: 16px 18px;
    border-left: 4px solid var(--accent);
}

    .feature h3 {
        margin-top: 0;
    }

    .feature p {
        color: var(--muted);
    }

.checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

    .checklist li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 6px;
        color: var(--muted);
    }

        .checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
        }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.testimonial {
    background: var(--surface);
    border-radius: 18px;
    padding: 18px 20px;
    border-left: 4px solid var(--primary);
    color: var(--muted);
}

    .testimonial span {
        display: block;
        margin-top: 8px;
        font-size: 0.85rem;
    }

/* Room listing + detail */
.room-grid-all .card-image-link img {
    height: 160px;
}

.room-detail .section-header {
    text-align: left;
}

.room-gallery {
    margin-top: 24px;
}

.room-main-image img {
    border-radius: 18px;
}

.room-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

    .room-thumbs img {
        border-radius: 12px;
    }

.room-layout {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.room-book {
    background: var(--surface);
    padding: 18px 20px;
    border-radius: 18px;
}

.small-print {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Footer */
.site-footer {
    background: #111;
    color: #e9e3dc;
    padding: 18px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.site-footer a {
    color: #e9e3dc;
}

/* Responsive tweaks */
@media (max-width: 960px) {
    .split,
    .split-reverse,
    .room-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Mobile portrait: show bottom nav, simplify header */
@media (max-width: 768px) and (orientation: portrait) {
    .top-nav {
        display: none;
    }

    .site-header {
        position: static;
    }

    .bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 52px; /* space for bottom nav */
    }

    .hero-content {
        align-items: flex-start;
    }

        .hero-content h1 {
            font-size: 2.1rem;
        }
}
