/* ============================================================
   GRAND HORIZON HOTEL — MAIN STYLESHEET
   Aesthetic: Refined Luxury — Deep navy, warm gold, cream
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --navy:       #0d1b2a;
    --navy-mid:   #1a2f45;
    --navy-light: #243b55;
    --gold:       #c9a96e;
    --gold-light: #e0c48a;
    --gold-dark:  #a07840;
    --cream:      #f8f4ee;
    --cream-dark: #ede8df;
    --white:      #ffffff;
    --text-dark:  #1a1a1a;
    --text-mid:   #4a4a4a;
    --text-light: #7a7a7a;
    --border:     rgba(201,169,110,0.25);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', sans-serif;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.14);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.2);
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: color var(--transition); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }

.section-sub {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 540px;
    line-height: 1.8;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 30px rgba(201,169,110,0.5);
    transform: translateY(-2px);
    color: var(--navy);
}

.btn-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-dark {
    background: var(--navy);
    color: var(--gold);
}
.btn-dark:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    color: var(--gold);
}

.btn-sm { padding: 10px 22px; font-size: 0.72rem; }
.btn-lg { padding: 18px 42px; font-size: 0.85rem; }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 24px;
    align-items: center;
}
.topbar-inner i { color: var(--gold); margin-right: 6px; }
.topbar-right { margin-left: auto; }
.topbar-right a { color: var(--gold-light); }
.topbar-right a:hover { color: var(--white); }

/* ---- NAVBAR ---- */
.site-header {
    background: rgba(13,27,42,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 34px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    transition: top 0.3s;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu a {
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 16px;
    position: relative;
    transition: color var(--transition);
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 50%; right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after { left: 16px; right: 16px; }

.nav-cta a {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 24px !important;
    border-radius: 2px;
    font-weight: 500 !important;
}
.nav-cta a::after { display: none; }
.nav-cta a:hover { background: var(--gold-light) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ---- FLASH MESSAGE ---- */
.flash {
    position: fixed;
    top: 120px; right: 24px;
    z-index: 9999;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
    box-shadow: var(--shadow-md);
    animation: slideIn 0.3s ease;
    max-width: 380px;
}
.flash-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.flash-error   { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.flash-info    { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }
.flash button  { font-size: 1.2rem; color: inherit; opacity: 0.7; }

@keyframes slideIn { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:none; } }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hotel/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform:scale(1.05); } to { transform:scale(1.12); } }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.5) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,169,110,0.15);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}
.hero-badge i { font-size: 0.6rem; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title .gold  { color: var(--gold); }
.hero-title .italic { font-style: italic; }

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.9;
    font-weight: 300;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
}

/* HERO STATS */
.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 2;
    animation: fadeUp 0.8s 0.6s ease both;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

@keyframes fadeUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ============================================================
   SECTION HEADERS (centered)
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

.divider-gold {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
    position: relative;
}
.divider-gold::before, .divider-gold::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
}
.divider-gold::before { left: -8px; }
.divider-gold::after  { right: -8px; }

/* ============================================================
   FEATURED ROOMS
   ============================================================ */
.featured-rooms {
    padding: 100px 0;
    background: var(--cream);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}
.room-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.room-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.08); }

.room-type-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
}

.room-card-body { padding: 22px; }

.room-card-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
}

.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}
.amenity-tag {
    font-size: 0.68rem;
    color: var(--text-mid);
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.amenity-tag i { color: var(--gold-dark); font-size: 0.6rem; }

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--cream-dark);
}

.room-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}
.room-price span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 300;
    margin-left: 4px;
}

.room-card-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.room-card-link:hover { gap: 10px; color: var(--gold); }

/* VIEW ALL ROOMS BANNER */
.view-all-wrap { text-align: center; margin-top: 48px; }

/* ============================================================
   FOOD MENU SECTION (homepage preview)
   ============================================================ */
.menu-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.menu-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(201,169,110,0.05);
}

.menu-section .section-title { color: var(--white); }
.menu-section .section-sub   { color: rgba(255,255,255,0.6); }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.menu-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}
.menu-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,169,110,0.4);
    transform: translateY(-6px);
}

.menu-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; }

.veg-badge {
    position: absolute;
    top: 10px; right: 10px;
    width: 20px; height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.veg-badge.veg     { background: #fff; border: 2px solid #4caf50; }
.veg-badge.nonveg  { background: #fff; border: 2px solid #f44336; }
.veg-badge::after {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
}
.veg-badge.veg::after    { background: #4caf50; }
.veg-badge.nonveg::after { background: #f44336; }

.menu-card-body { padding: 18px; }
.menu-card-cat {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.menu-card-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
}
.menu-card-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.menu-card-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
}

/* ============================================================
   AMENITIES / FEATURES STRIP
   ============================================================ */
.amenities-strip {
    padding: 70px 0;
    background: var(--white);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    text-align: center;
}

.amenity-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}
.amenity-item h4 {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin-bottom: 4px;
}
.amenity-item p { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   TESTIMONIAL STRIP
   ============================================================ */
.testimonials {
    padding: 90px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.testi-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--gold);
}

.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.85rem; }
.testi-text  { font-style: italic; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-family: var(--font-display); font-size: 1.05rem; }

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 600;
}
.testi-name { font-weight: 500; font-size: 0.9rem; color: var(--navy); }
.testi-loc  { font-size: 0.75rem; color: var(--text-light); }

/* ============================================================
   ROOMS PAGE
   ============================================================ */
.page-hero {
    background: var(--navy);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    opacity: 0.9;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem,5vw,4rem);
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* FILTER BAR */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    padding: 16px 0;
    position: sticky;
    top: 106px;
    z-index: 90;
}
.filter-bar-inner {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1.5px solid var(--cream-dark);
    color: var(--text-mid);
    background: var(--white);
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.rooms-section { padding: 60px 0 100px; }

/* ============================================================
   ROOM DETAIL PAGE
   ============================================================ */
.room-detail { padding: 60px 0 100px; }

.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.room-gallery { margin-bottom: 40px; }

.gallery-main {
    height: 460px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 14px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.gallery-thumbs img {
    width: 90px; height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.65;
    transition: opacity var(--transition);
    flex-shrink: 0;
}
.gallery-thumbs img.active, .gallery-thumbs img:hover { opacity: 1; }

.room-detail-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.room-detail-type { color: var(--gold-dark); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
.room-detail-desc { color: var(--text-mid); line-height: 1.9; margin-bottom: 28px; }

.room-info-list { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.room-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-mid);
    background: var(--cream);
    padding: 8px 16px;
    border-radius: 30px;
}
.room-info-item i { color: var(--gold-dark); }

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}
.amenity-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-mid);
}
.amenity-check i { color: var(--gold); font-size: 0.7rem; }

/* BOOKING SIDEBAR */
.booking-sidebar {
    position: sticky;
    top: 130px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.booking-sidebar h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 4px;
}
.booking-price-note { font-size: 0.78rem; color: var(--text-light); margin-bottom: 24px; }

.booking-form .form-group { margin-bottom: 18px; }
.booking-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}
.booking-form input, .booking-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color var(--transition);
}
.booking-form input:focus, .booking-form select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.booking-total {
    background: var(--navy);
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}
.booking-total strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page { padding: 60px 0 100px; }

.menu-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.menu-tab {
    padding: 10px 24px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1.5px solid var(--cream-dark);
    color: var(--text-mid);
    background: var(--white);
    transition: all var(--transition);
}
.menu-tab.active, .menu-tab:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.menu-category-section { margin-bottom: 60px; }
.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 28px;
}

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

.menu-item-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.menu-item-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.menu-item-img { height: 160px; overflow: hidden; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-body { padding: 16px; }
.menu-item-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 6px; }
.menu-item-desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--cream-dark);
}
.menu-item-price { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); font-weight: 600; }

/* ============================================================
   REGISTER / LOGIN
   ============================================================ */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: var(--cream);
}
.auth-card {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px 40px;
}
.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}
.auth-logo i { font-size: 2rem; color: var(--gold); }
.auth-logo h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin-top: 10px;
}
.auth-logo p { font-size: 0.85rem; color: var(--text-light); }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-control.error { border-color: #dc3545; }

.field-error { font-size: 0.75rem; color: #dc3545; margin-top: 4px; }
.auth-switch { text-align: center; margin-top: 24px; font-size: 0.88rem; color: var(--text-mid); }
.auth-switch a { color: var(--gold-dark); font-weight: 500; }
.auth-switch a:hover { color: var(--gold); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); }

.footer-top { padding: 70px 0 50px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo i { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 1px;
    background: var(--gold);
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .room-detail-grid { grid-template-columns: 1fr; }
    .booking-sidebar  { position: static; }
    .footer-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .site-header { top: 0; }

    .nav-menu {
        position: fixed;
        inset: 0 0 0 30%;
        flex-direction: column;
        justify-content: center;
        background: var(--navy);
        padding: 60px 40px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 998;
        gap: 24px;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a { font-size: 1rem; padding: 8px 0; }
    .nav-menu a::after { display: none; }

    .nav-toggle { display: flex; z-index: 999; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-stats { display: none; }
    .hero-title { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .rooms-grid  { grid-template-columns: 1fr; }
    .menu-grid   { grid-template-columns: 1fr; }
    .auth-card   { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
}

/* ============================================================
   SCROLL REVEAL UTILITY
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
