:root {
    --orange: #e66a00;
    --green: #008f4c;
    --black: #111111;
    --white: #fafafa;
    --gray: #6b7280;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--white);
    color: var(--black);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 64px);
    background: rgba(250, 250, 250, 0.94);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(16px);
}

.brand img { width: 170px; height: auto; display: block; }

nav { display: flex; gap: 20px; color: #242424; font-size: 14px; }

.nav-cta, .primary-button, form button {
    background: var(--orange);
    color: white;
    border: 0;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
}

.ghost-button {
    border: 1px solid rgba(250, 250, 250, 0.7);
    color: white;
    padding: 12px 18px;
    font-weight: 800;
}

.hero {
    min-height: 78vh;
    display: grid;
    align-items: end;
    padding: 110px clamp(18px, 6vw, 90px) 150px;
    color: white;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.2)),
        url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-copy { max-width: 760px; }
.hero-copy span, .eyebrow { color: var(--green); font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.hero h1 { font-size: clamp(42px, 7vw, 92px); line-height: 0.98; margin: 16px 0; max-width: 900px; }
.hero p { color: rgba(255, 255, 255, 0.86); max-width: 620px; font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.booking-widget {
    width: min(1180px, calc(100% - 28px));
    margin: -92px auto 80px;
    position: relative;
    z-index: 3;
    background: white;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
    padding: 22px;
}

.booking-widget form {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

label { display: grid; gap: 8px; color: var(--gray); font-size: 13px; font-weight: 800; }
input, select {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.15);
    background: white;
    min-height: 46px;
    color-scheme: light;
    padding: 10px 12px;
    color: var(--black);
}

.section-grid, .rooms-preview, .experience-band, .content-page, .dashboard {
    padding: 72px clamp(18px, 6vw, 90px);
}

.section-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

h1, h2, h3 { margin: 0 0 14px; line-height: 1.08; }
h2 { font-size: clamp(32px, 4vw, 56px); }
p { color: var(--gray); line-height: 1.7; }

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.feature-list p, .summary-panel, .stats-grid article, .admin-modules article {
    margin: 0;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.1);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.section-heading a { color: var(--orange); font-weight: 900; }

.room-card a:not(.room-action-btn) { color: var(--orange); font-weight: 900;  }
.room-action-btn a{
    color: #fafafa !important;
}
.room-action-btn,
.room-action-btn:hover {
    color: #fff !important;
    position: relative;
    z-index: 10;
}

/* .room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.room-grid.full { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
.room-card { background: white; border: 1px solid rgba(17, 17, 17, 0.1); padding: 18px; display: grid; gap: 10px; }
.room-art { min-height: 210px; background: linear-gradient(135deg, rgba(230, 106, 0, 0.18), rgba(0, 143, 76, 0.2)), url("https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=900&q=80") center/cover; }
.room-art.large { min-height: 420px; margin: 24px 0; }

.featured-rooms {
    position: relative;
    isolation: isolate;
}

.featured-rooms::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 8% 18%, rgba(230, 106, 0, 0.08), transparent 30%),
        linear-gradient(180deg, #fafafa 0%, #ffffff 52%, #f4f5f2 100%);
}

.featured-rooms-heading {
    align-items: flex-end;
}

.featured-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(17, 17, 17, 0.16);
    color: var(--black);
    font-weight: 900;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.featured-view-all:hover {
    background: var(--black);
    border-color: var(--black);
    color: #fff;
}

.featured-room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
}

.featured-room-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: minmax(280px, 1fr) auto;
    min-height: 620px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.09);
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.featured-room-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 106, 0, 0.36);
    box-shadow: 0 30px 80px rgba(17, 17, 17, 0.14);
}

.featured-room-card.is-featured {
    transform: translateY(-18px);
}

.featured-room-card.is-featured:hover {
    transform: translateY(-26px);
}

.featured-room-media {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: #111;
}

.featured-room-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 450ms ease;
}

.featured-room-card:hover .featured-room-media img {
    transform: scale(1.08);
}

.featured-room-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.38));
}

.featured-room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    background: rgba(250, 250, 250, 0.92);
    color: var(--black);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-room-content {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.featured-room-kicker {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.featured-room-content h3 {
    margin: 0;
    color: var(--black);
    font-size: clamp(24px, 2vw, 34px);
}

.featured-room-amenities {
    min-height: 54px;
    margin: 0;
    color: #4b5563;
    font-size: 15px;
}

.featured-room-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 2px;
}

.featured-room-meta span,
.featured-room-meta small {
    color: var(--gray);
    font-weight: 800;
}

.featured-room-meta strong {
    color: var(--orange);
    font-size: 24px;
    line-height: 1;
}

.featured-room-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.featured-book-btn,
.featured-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    text-align: center;
    font-weight: 900;
    line-height: 1.2;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.featured-book-btn {
    background: var(--orange);
    color: #fff;
}

.featured-whatsapp-btn {
    border: 1px solid rgba(0, 143, 76, 0.4);
    background: rgba(0, 143, 76, 0.08);
    color: var(--green);
}

.featured-book-btn:hover,
.featured-whatsapp-btn:hover {
    transform: translateY(-2px);
}

.featured-whatsapp-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
} */

.experience-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; background: var(--black); }
.experience-band article { color: white; border-top: 3px solid var(--orange); padding-top: 24px; }
.experience-band p { color: rgba(250, 250, 250, 0.72); }

.content-page { min-height: 54vh; }
.content-page h1 { font-size: clamp(42px, 7vw, 80px); max-width: 900px; }
.content-page > p { max-width: 720px; font-size: 18px; }
.track-form { max-width: 520px; display: grid; gap: 16px; margin-top: 24px; }
.summary-panel { max-width: 640px; margin: 24px 0; }
.form-error { color: #b42318; font-weight: 800; }

.admin-auth {
    min-height: 76vh;
    display: grid;
    place-items: center;
    padding: 40px 18px;
    background: #f3f4f6;
}

.admin-auth form {
    width: min(420px, 100%);
    display: grid;
    gap: 16px;
    padding: 30px;
    background: white;
    border: 1px solid rgba(17, 17, 17, 0.1);
}

.admin-auth img { width: 190px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
.stats-grid span { color: var(--gray); font-size: 13px; }
.stats-grid strong { display: block; margin-top: 8px; font-size: 32px; }
.admin-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.site-footer {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 28px;
    padding: 48px clamp(18px, 6vw, 90px);
    background: var(--black);
    color: white;
}

.site-footer img { width: 180px; background: white; padding: 6px; }
.site-footer p, .site-footer a { color: rgba(250, 250, 250, 0.72); display: block; margin: 8px 0; }

@media (prefers-color-scheme: dark) {
    body { background: #0d0d0d; color: #fafafa; }
    .site-header, .booking-widget, .room-card, .feature-list p, .summary-panel, .stats-grid article, .admin-modules article, .admin-auth form { background: #151515; border-color: rgba(250, 250, 250, 0.12); }
    input, select { background: #101010; border-color: rgba(250, 250, 250, 0.16); color: #fafafa; }
    .featured-rooms::before { background: linear-gradient(180deg, #0d0d0d 0%, #151515 100%); }
    .featured-room-card { background: #151515; border-color: rgba(250, 250, 250, 0.12); }
    .featured-view-all, .featured-room-content h3 { color: #fafafa; }
    .featured-view-all { border-color: rgba(250, 250, 250, 0.22); }
    .featured-room-amenities { color: rgba(250, 250, 250, 0.72); }
}

@media (max-width: 980px) {
    nav { display: none; }
    .booking-widget form, .room-grid, .room-grid.full, .section-grid, .experience-band, .stats-grid, .admin-modules, .site-footer { grid-template-columns: 1fr; }
    .booking-widget { margin-top: -70px; }
    .hero { min-height: 72vh; padding-bottom: 120px; }
    .featured-room-grid { grid-template-columns: 1fr; }
    .featured-room-card,
    .featured-room-card.is-featured,
    .featured-room-card.is-featured:hover {
        min-height: 0;
        transform: none;
    }
    .featured-room-card {
        grid-template-columns: minmax(240px, 0.82fr) 1fr;
        grid-template-rows: auto;
    }
}

@media (max-width: 560px) {
    .site-header { align-items: flex-start; }
    .brand img { width: 136px; }
    .nav-cta { padding: 10px 12px; font-size: 13px; }
    .hero h1 { font-size: 42px; }
    .featured-room-card {
        grid-template-columns: 1fr;
    }
    .featured-room-media,
    .featured-room-media img {
        min-height: 250px;
    }
    .featured-room-content {
        padding: 20px;
    }
    .featured-room-actions {
        grid-template-columns: 1fr;
    }
    .featured-view-all {
        width: 100%;
    }
}
