/* =============================================
   JORBA GH — Pure Rajasthani Royal Theme
   Palette: Saffron · Maroon · Gold · Sandstone
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Rozha+One&display=swap');

:root {
    /* Core Rajasthani Palette */
    --saffron:      #e8601c;
    --saffron-dark: #c04a10;
    --maroon:       #6b0f1a;
    --maroon-light: #8b1a28;
    --gold:         #d4920a;
    --gold-light:   #f0b429;
    --gold-pale:    #f5d78e;
    --sandstone:    #f0e0c0;
    --sandstone-2:  #e8d4a8;
    --sandstone-3:  #dcc490;
    --ivory:        #fdf6ec;
    --brown-dark:   #2a1205;
    --brown-mid:    #3d1c08;
    --brown-light:  #6b3a18;

    /* Semantic */
    --bg:           #fdf6ec;
    --bg2:          #f5e8d0;
    --card:         #fff9f0;
    --border:       rgba(180,100,20,0.22);
    --border-gold:  rgba(212,146,10,0.4);
    --text:         #2a1205;
    --text-muted:   #7a4418;
    --text-dim:     #b07840;
    --sidebar-bg:   #2a1205;

    /* Status */
    --danger:  #dc2626;
    --success: #16a34a;
    --warning: #d97706;
}

/* ─────────────────────────────────
   SVG Rajasthani tile pattern
   ───────────────────────────────── */
:root {
    --raj-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Ccircle cx='30' cy='30' r='12' fill='none' stroke='%23d4920a' stroke-width='0.6' opacity='0.25'/%3E%3Ccircle cx='30' cy='30' r='6' fill='none' stroke='%23d4920a' stroke-width='0.4' opacity='0.2'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%23d4920a' opacity='0.18'/%3E%3Cline x1='30' y1='0' x2='30' y2='18' stroke='%23d4920a' stroke-width='0.5' opacity='0.15'/%3E%3Cline x1='30' y1='42' x2='30' y2='60' stroke='%23d4920a' stroke-width='0.5' opacity='0.15'/%3E%3Cline x1='0' y1='30' x2='18' y2='30' stroke='%23d4920a' stroke-width='0.5' opacity='0.15'/%3E%3Cline x1='42' y1='30' x2='60' y2='30' stroke='%23d4920a' stroke-width='0.5' opacity='0.15'/%3E%3Crect x='24' y='24' width='12' height='12' fill='none' stroke='%23d4920a' stroke-width='0.4' opacity='0.12' transform='rotate(45 30 30)'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ══════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════ */
.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--maroon);
    border-bottom: 2px solid var(--gold);
    padding: 9px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-pale);
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ivory);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--maroon);
    padding: 0;
    transition: all 0.4s;
    box-shadow: 0 3px 16px rgba(107,15,26,0.12);
}

.nav-gold-line {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.nav-gold-line.top    { top: 0; opacity: 0.6; }
.nav-gold-line.bottom { bottom: 0; opacity: 0 }

.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 6px 24px;
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 24px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-left  { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none; color: var(--maroon);
    transition: color 0.3s; position: relative; font-weight: 600;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2px; background: var(--saffron); transition: width 0.4s;
}
.nav-link:hover, .nav-link.active { color: var(--saffron); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.reserve-btn {
    background: var(--maroon) !important;
    color: var(--gold-pale) !important;
    padding: 7px 18px; border-radius: 2px;
    border: none !important;
    letter-spacing: 0.2em;
}
.reserve-btn::after { display: none; }
.reserve-btn:hover  { background: var(--saffron) !important; color: #fff !important; }

/* Logo */
.nav-logo a  { text-decoration: none; display: block; }
.nav-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s, filter 0.3s;
}
.nav-logo a:hover .nav-logo-img {
    transform: scale(1.06);
    filter: drop-shadow(0 3px 10px rgba(212,146,10,0.4));
}

/* Mobile logo image */
.mobile-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
}

/* Footer logo image */
.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
}
.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px; font-style: italic;
    color: var(--gold-light); margin-bottom: 4px;
    letter-spacing: 0.05em;
}
.footer-sub {
    font-size: 11px; letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,215,142,0.45);
}
.footer-social {
    color: rgba(245,215,142,0.6);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: flex; align-items: center;
}
.footer-social:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}
.footer-contact-link {
    color: rgba(245,215,142,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.footer-contact-link:hover { color: var(--gold-light); }

/* Text fallback logo */
.logo-est {
    font-family: 'Cormorant Garamond', serif; font-size: 8px;
    letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--saffron); opacity: 0.8;
    display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 3px;
}
.logo-name {
    font-family: 'Rozha One', serif; font-size: 26px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--maroon); transition: color 0.3s;
}
.logo-sub {
    font-family: 'Cormorant Garamond', serif; font-size: 9px;
    letter-spacing: 0.45em; text-transform: uppercase; color: var(--text-muted);
    display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 2px;
}
.line    { flex: 1; height: 1px; background: var(--gold); opacity: 0.4; max-width: 28px; }
.line-sm { flex: 1; height: 1px; background: var(--saffron); opacity: 0.3; max-width: 18px; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 22px; height: 2px; background: var(--maroon); transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
    display: none; position: fixed; inset: 0;
    background: var(--maroon); z-index: 2000;
    flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: 'Cormorant Garamond', serif; font-size: 22px;
    letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; color: var(--sandstone); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--sandstone); font-size: 24px; cursor: pointer; }
.mobile-logo  { font-family: 'Rozha One', serif; font-size: 36px; letter-spacing: 0.1em; color: var(--gold-light); }
.mobile-divider { width: 60px; height: 2px; background: var(--gold); opacity: 0.5; }

/* ══════════════════════════════════
   RAJASTHANI ORNAMENTAL BAND
══════════════════════════════════ */
.rajasthani-band {
    width: 100%; height: 24px;
    background:
        linear-gradient(to right, var(--maroon), var(--saffron), var(--gold), var(--saffron), var(--maroon));
    position: relative;
    overflow: hidden;
}
.rajasthani-band::after {
    content: '❖ ✦ ❖ ✦ ❖ ✦ ❖ ✦ ❖ ✦ ❖ ✦ ❖ ✦ ❖ ✦ ❖ ✦ ❖ ✦ ❖';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 8px; letter-spacing: 0.5em;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
    padding: 14px 36px; border: none; cursor: pointer;
    text-decoration: none; display: inline-block; transition: all 0.3s;
    font-weight: 600;
}
.btn-primary {
    background: var(--maroon);
    color: var(--gold-pale);
    border: 2px solid var(--maroon);
    box-shadow: 0 4px 15px rgba(107,15,26,0.3);
}
.btn-primary:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.btn-outline {
    background: transparent;
    border: 2px solid var(--maroon);
    color: var(--maroon);
}
.btn-outline:hover { background: var(--maroon); color: var(--gold-pale); }
.btn-sm { padding: 9px 22px; font-size: 10px; }

/* ══════════════════════════════════
   SECTION HELPERS
══════════════════════════════════ */
.section-tag {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-bottom: 16px;
}
.section-tag span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px; letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--saffron); font-weight: 600;
}
.section-tag-line { height: 2px; width: 40px; background: linear-gradient(to right, transparent, var(--saffron)); }

.gold-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin: 20px 0;
}
.gold-divider-line { flex: 1; height: 1px; max-width: 80px; background: linear-gradient(to right, transparent, var(--gold)); }
.gold-divider-dot  { color: var(--gold); font-size: 18px; line-height: 1; }
.gold-divider-dot::before { content: '❖'; }

/* Rajasthani ornamental divider */
.raj-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 28px 0; color: var(--gold);
    font-size: 14px; letter-spacing: 0.3em;
}
.raj-divider::before,
.raj-divider::after { content: '───── ✦ ─────'; color: var(--gold); opacity: 0.6; font-size: 10px; letter-spacing: 0.1em; }

.page-hero {
    padding: 80px 24px 48px;
    text-align: center;
    background: var(--bg);
    background-image: var(--raj-pattern);
}
.page-hero h1 { font-family: 'Rozha One', serif; font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--maroon); margin-bottom: 16px; }

/* ══════════════════════════════════
   HERO SECTION — Ken Burns Slider
══════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex; align-items: center;
    overflow: hidden;
}

/* Background slides */
.hero-slider {
    position: absolute; inset: 0; z-index: 0;
    background: #1a0a02;
}
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transform: none;
    transition: opacity 1.2s ease-in-out;
    display: block;
}
.hero-slide.active img { transform: none; }

/* Gradient overlay */
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.10) 40%,
        rgba(0,0,0,0.55) 100%
    );
}

/* Top gold bar */
.hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 5px; z-index: 20;
    background: linear-gradient(to right, var(--maroon), var(--saffron), var(--gold), var(--saffron), var(--maroon));
}

/* ── Hero Content ── */
.hero-content {
    position: relative; z-index: 10;
    max-width: 780px;
    padding: 0 24px;
    text-align: center;
    margin: 0 auto;
}
.hero-tag {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold-light);
}
.hero-tag-line {
    display: block; height: 1px; width: 32px;
    background: linear-gradient(to right, transparent, var(--gold));
}
.hero-title {
    font-family: 'Rozha One', serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: #fff;
    margin-left:-66px !important;
    line-height: 1; margin: 0;
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
    letter-spacing: 0.03em;
    display: inline;
}
.hero-sub {
    font-family: 'Rozha One', serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: #fff;
    letter-spacing: 0.03em;
    display: inline;
    margin-left: 12px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
    line-height: 1;
}
.hero-title-line {
    display: block;
    margin-bottom: 20px;
    white-space: nowrap;
    text-align: center;
}
.hero-divider {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin-bottom: 20px;
}
.hero-divider span {
    display: block; height: 1px; width: 60px;
    background: linear-gradient(to right, transparent, var(--gold));
}
.hero-divider span:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
}
.hero-divider i { color: var(--gold); font-size: 14px; opacity: 0.8; }

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-style: italic;
    color: rgba(255,248,230,0.85);
    margin-bottom: 36px; font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-buttons {
    display: flex; gap: 14px; flex-wrap: wrap;
    justify-content: center;
}
.hero-buttons .btn { display: flex; align-items: center; gap: 8px; }
.hero .btn-primary {
    background: var(--gold); color: var(--maroon);
    border: 2px solid var(--gold); font-weight: 700;
}
.hero .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.hero .btn-outline {
    border: 2px solid rgba(255,248,230,0.45);
    color: #fff; background: transparent;
}
.hero .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── Right side image strip ── */
.hero-side-strip {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 120px; z-index: 10;
    display: flex; flex-direction: column;
    border-left: 2px solid rgba(212,146,10,0.3);
}
.hero-strip-item {
    flex: 1; position: relative;
    overflow: hidden; cursor: pointer;
    border-bottom: 1px solid rgba(212,146,10,0.2);
    transition: flex 0.5s ease;
}
.hero-strip-item:last-child { border-bottom: none; }
.hero-strip-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hero-strip-item.active { flex: 2; }
.hero-strip-item.active img { transform: scale(1.05); }
.hero-strip-item:hover img { transform: scale(1.05); }
.hero-strip-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(107,15,26,0.6), transparent);
}
.hero-strip-num {
    position: absolute; bottom: 10px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Rozha One', serif;
    font-size: 18px; color: var(--gold-light);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    z-index: 2;
}

/* ── Bottom controls ── */
.hero-controls {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex; align-items: center; gap: 16px;
}
.hero-ctrl-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; cursor: pointer; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; backdrop-filter: blur(4px);
}
.hero-ctrl-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon); }

.hero-progress {
    display: flex; gap: 6px; align-items: center;
}
.hero-progress-bar {
    height: 2px; width: 32px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px; cursor: pointer;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.hero-progress-bar.active {
    background: var(--gold); width: 56px;
}
.hero-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
}
#heroCurrent { color: var(--gold-light); font-weight: 600; }

/* Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 36px; right: 160px;
    z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content { padding: 0 24px; max-width: 100%; }
    .hero-side-strip { display: none; }
    .hero-controls { left: 50%; transform: translateX(-50%); bottom: 24px; }
    .hero-scroll { display: none; }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(10,3,0,0.5) 0%, rgba(10,3,0,0.7) 100%);
    }
}

/* ══════════════════════════════════
   STATS BAND
══════════════════════════════════ */
.stats-band {
    padding: 32px 24px;
    background: var(--maroon);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    position: relative; overflow: hidden;
}
.stats-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1200&q=50');
    background-size: cover; background-position: center;
    opacity: 0.08; pointer-events: none;
}
.stats-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: nowrap; gap: 0; position: relative; z-index: 1;
}
.stat-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 8px 28px; text-align: center; flex-shrink: 0;
}
.stat-divider { width: 1px; height: 44px; background: rgba(245,215,142,0.3); }
.stat-value   { font-family: 'Rozha One', serif; font-size: 1.8rem; color: var(--gold-light); }
.stat-label   { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(245,215,142,0.7); margin-top: 3px; }

/* ══════════════════════════════════
   ABOUT SECTION
══════════════════════════════════ */
.about-section {
    padding: 100px 24px;
    background: var(--bg);
    background-image: var(--raj-pattern);
}
.about-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
/* Jharokha-style frame */
.about-image-wrap { position: relative; }
.about-image-wrap::before {
    content: '';
    position: absolute; inset: -14px;
    border: 2px solid var(--gold); opacity: 0.5;
    pointer-events: none;
}
.about-image-wrap::after {
    content: '';
    position: absolute; inset: -28px;
    border: 1px solid var(--saffron); opacity: 0.25;
    pointer-events: none;
}
/* Corner ornaments */
.about-image-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }
.about-text h2 { font-family: 'Rozha One', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--maroon); margin-bottom: 8px; }
.about-text p  { color: var(--text-muted); font-family: 'Playfair Display', serif; font-weight: 400; font-size: 1.05rem; line-height: 1.85; margin-bottom: 16px; }
.about-buttons { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.img-placeholder-wrap {
    background: linear-gradient(135deg, var(--sandstone-2), var(--sandstone-3));
    display: flex; align-items: center; justify-content: center; min-height: 520px;
}
.img-placeholder-wrap img { display: none; }
.img-placeholder-wrap::after {
    content: 'Jorba Gh'; font-family: 'Rozha One', serif;
    font-size: 2.5rem; color: rgba(107,15,26,0.2);
}

/* ══════════════════════════════════
   DESERT BREAK
══════════════════════════════════ */
.desert-break { position: relative; height: 55vh; overflow: hidden; }
.desert-break img { width: 100%; height: 100%; object-fit: cover; }
.desert-break-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top,   rgba(42,18,5,0.8)  0%, transparent 45%),
        linear-gradient(to bottom, rgba(107,15,26,0.5) 0%, transparent 40%);
    display: flex; align-items: center; justify-content: center;
}
.desert-no-img {
    background: linear-gradient(180deg, #8a4010 0%, #c9780a 35%, #e8a820 50%, #c9780a 65%, #5c2008 100%) !important;
    min-height: 55vh;
}
.desert-no-img img { display: none; }
.desert-quote { text-align: center; }
.desert-quote-line { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; justify-content: center; }
.desert-quote-line span { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold-light); text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.desert-quote-line-bar  { height: 2px; width: 60px; background: var(--gold); opacity: 0.7; }
.desert-quote p { font-family: 'Rozha One', serif; font-size: clamp(1.3rem, 3vw, 2rem); color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.7); }

/* ══════════════════════════════════
   EXPERIENCE PILLARS
══════════════════════════════════ */
.pillars-section {
    padding: 80px 24px;
    background: var(--sandstone-2);
    position: relative; overflow: hidden;
}
.pillars-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1400&q=50');
    background-size: cover; background-position: center;
    opacity: 0.06; pointer-events: none;
}
.pillars-section::after {
    content: ''; position: absolute; inset: 0;
    background-image: var(--raj-pattern); pointer-events: none;
}
.pillars-inner  { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: 'Rozha One', serif; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--maroon); }

.pillars-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    border: 2px solid var(--saffron); border-radius: 4px;
    overflow: hidden;
}
.pillar-card {
    padding: 40px 28px; text-align: center;
    border-right: 1px solid rgba(180,100,20,0.3);
    background: rgba(253,246,236,0.85);
    transition: background 0.4s;
}
.pillar-card:last-child { border-right: none; }
.pillar-card:hover { background: rgba(232,96,28,0.07); }
.pillar-card h3 { font-family: 'Rozha One', serif; font-size: 14px; letter-spacing: 0.1em; color: var(--maroon); margin-bottom: 12px; }
.pillar-card p  { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--text-muted); line-height: 1.8; font-weight: 400; }
.pillar-line { width: 40px; height: 2px; background: var(--saffron); margin: 16px auto 0; opacity: 0.6; }

/* ══════════════════════════════════
   CHEF'S SPECIALS
══════════════════════════════════ */
.specials-section { padding: 80px 24px; background: var(--bg); background-image: var(--raj-pattern); }
.specials-inner   { max-width: 1100px; margin: 0 auto; }
.specials-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    border: 2px solid var(--border-gold); border-radius: 4px; overflow: hidden;
}
.special-card { border-right: 1px solid var(--border); transition: background 0.4s; }
.special-card:last-child { border-right: none; }
.special-card:hover { background: rgba(232,96,28,0.04); }
.special-img-wrap { position: relative; height: 230px; overflow: hidden; }
.special-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; filter: brightness(0.88) saturate(1.2); }
.special-card:hover .special-img-wrap img { transform: scale(1.08); }
.special-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,18,5,0.55), transparent); }
.special-badge {
    position: absolute; top: 14px; left: 14px;
    font-family: 'Cormorant Garamond', serif; font-size: 9px;
    letter-spacing: 0.3em; text-transform: uppercase;
    background: var(--maroon); color: var(--gold-pale); padding: 5px 14px;
    font-weight: 600;
}
.special-img-placeholder {
    width: 100%; height: 100%; background: var(--sandstone-2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(107,15,26,0.2); font-family: 'Rozha One', serif;
    font-size: 20px; letter-spacing: 0.1em;
}
.special-info { padding: 24px; border-top: 1px solid var(--border); background: var(--card); }
.special-info-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.special-info h3  { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--maroon); font-weight: 600; }
.special-price    { font-family: 'Rozha One', serif; color: var(--saffron); font-size: 1.1rem; white-space: nowrap; padding-left: 12px; }
.special-desc     { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.veg-indicator { display: flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); }
.veg-dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid; }
.veg-dot.veg    { background: #16a34a; border-color: #16a34a; }
.veg-dot.nonveg { background: #dc2626; border-color: #dc2626; }

/* ══════════════════════════════════
   CAMEL SECTION
══════════════════════════════════ */
.camel-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.camel-img { position: relative; overflow: hidden; min-height: 320px; }
.camel-img img { width: 100%; height: 100%; object-fit: cover; }
.camel-no-img {
    background: linear-gradient(135deg, var(--sandstone-2) 0%, var(--sandstone-3) 100%);
    min-height: 480px; display: flex; align-items: center; justify-content: center;
}
.camel-no-img img { display: none; }
.camel-no-img::after { content: '🐪'; font-size: 6rem; opacity: 0.3; }

.camel-text {
    background: var(--maroon);
    display: flex; align-items: center;
    padding: 64px 56px;
    position: relative; overflow: hidden;
}
.camel-text::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--raj-pattern);
    pointer-events: none; opacity: 0.4;
}
.camel-text-inner { position: relative; z-index: 1; }
.camel-text .section-tag span { color: var(--gold-light); }
.camel-text .section-tag-line  { background: linear-gradient(to right, transparent, var(--gold)); }
.camel-text h2 { font-family: 'Rozha One', serif; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--gold-pale); margin-bottom: 16px; }
.camel-text p  { font-family: 'Playfair Display', serif; color: rgba(240,224,192,0.8); font-size: 1rem; line-height: 1.85; font-weight: 300; margin-bottom: 14px; }
.camel-text .btn-primary { background: var(--gold); color: var(--maroon); border-color: var(--gold); }
.camel-text .btn-primary:hover { background: var(--gold-light); }
.camel-text .gold-divider-line { background: linear-gradient(to right, transparent, rgba(212,146,10,0.6)); }

/* ══════════════════════════════════
   GALLERY SECTION
══════════════════════════════════ */
.gallery-section { padding: 80px 24px; background: var(--sandstone-2); background-image: var(--raj-pattern); }
.gallery-inner   { max-width: 1100px; margin: 0 auto; }
.gallery-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.gallery-item    { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--sandstone-3); cursor: pointer; border: 2px solid transparent; transition: border-color 0.3s; }
.gallery-item:hover { border-color: var(--gold); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(107,15,26,0.72);
    opacity: 0; transition: opacity 0.3s;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 20px; text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { font-family: 'Rozha One', serif; color: var(--gold-pale); font-size: 1.1rem; margin-bottom: 6px; }
.gallery-overlay p  { color: rgba(245,215,142,0.8); font-size: 13px; font-weight: 300; }
.gallery-center { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-section {
    padding: 80px 24px;
    background: var(--bg);
    background-image: var(--raj-pattern);
    position: relative; overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1400&q=50');
    background-size: cover; background-position: center 60%;
    opacity: 0.04; pointer-events: none;
}
.testimonials-inner   { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.testimonials-grid    { display: grid; grid-template-columns: repeat(3,1fr); border: 2px solid var(--border-gold); border-radius: 4px; overflow: hidden; }
.testimonial-card {
    padding: 40px 32px; border-right: 1px solid var(--border);
    background: rgba(253,246,236,0.9);
}
.testimonial-card:last-child { border-right: none; }
.quote-mark { font-family: 'Rozha One', serif; font-size: 5rem; color: rgba(232,96,28,0.2); line-height: 1; margin-bottom: 12px; }
.testimonial-card p { font-family: 'Playfair Display', serif; font-style: italic; color: var(--text-muted); font-size: 14px; line-height: 1.85; font-weight: 400; margin-bottom: 24px; }
.testimonial-author strong { color: var(--maroon); font-family: 'Rozha One', serif; font-size: 15px; display: block; letter-spacing: 0.05em; }
.testimonial-author span   { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); margin-top: 4px; display: block; }

/* ══════════════════════════════════
   MENU PAGE
══════════════════════════════════ */
.menu-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 56px; }
.cat-btn {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 8px 24px; border-radius: 50px;
    cursor: pointer; border: 2px solid var(--maroon);
    background: transparent; color: var(--maroon);
    transition: all 0.25s; text-decoration: none; font-weight: 600;
}
.cat-btn:hover, .cat-btn.active { background: var(--maroon); color: var(--gold-pale); }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.menu-card {
    background: var(--card); border: 1px solid var(--border);
    border-top: 3px solid var(--saffron);
    border-radius: 6px;
    overflow: hidden;
    position: relative; transition: border-color 0.3s, box-shadow 0.3s;
}
.menu-card:hover { border-color: var(--maroon); box-shadow: 0 4px 20px rgba(107,15,26,0.1); }
.menu-card-header  { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; padding: 16px 16px 0; }
.menu-card-name-wrap { display: flex; align-items: center; gap: 8px; }
.menu-card-name  { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--maroon); font-weight: 600; }
.menu-card-desc  { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--text-muted); line-height: 1.7; padding: 0 16px; }
.menu-card-price { font-family: 'Rozha One', serif; color: var(--saffron); font-size: 1.1rem; white-space: nowrap; }
.menu-card-badge {
    position: absolute; top: 0; right: 0;
    background: var(--maroon); color: var(--gold-pale);
    font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 4px 12px; z-index: 2;
}
.menu-card > div:last-child { padding-bottom: 16px; }

/* ── Gallery Full Page ── */
.gallery-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }

/* ══════════════════════════════════
   FORMS
══════════════════════════════════ */
.form-section { padding: 0 24px 80px; }
.form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 4px solid var(--maroon);
    padding: 48px; max-width: 740px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
    font-family: 'Cormorant Garamond', serif; font-size: 11px;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--maroon); font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg); border: 1px solid var(--border);
    color: var(--text); padding: 12px 16px; font-size: 14px;
    font-family: 'Inter', sans-serif; border-radius: 0;
    outline: none; transition: border-color 0.3s; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232,96,28,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg); color: var(--text); }
.form-error { color: #dc2626; font-size: 12px; margin-top: 2px; display: none; }
.form-success {
    background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.3);
    color: #16a34a; padding: 16px 20px; margin-bottom: 24px;
    font-family: 'Playfair Display', serif; font-size: 14px; display: none;
}
.form-success.show { display: block; }
.btn-submit {
    width: 100%; padding: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700;
    background: var(--maroon); color: var(--gold-pale); border: none;
    cursor: pointer; transition: background 0.3s; margin-top: 8px;
}
.btn-submit:hover { background: var(--saffron); color: #fff; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ══════════════════════════════════
   CONTACT INFO
══════════════════════════════════ */
.contact-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 0 24px 80px; }
.contact-info h3 { font-family: 'Rozha One', serif; font-size: 1.8rem; color: var(--maroon); margin-bottom: 20px; }
.contact-info p  { font-family: 'Playfair Display', serif; color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 32px; }
.contact-item    { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon    { width: 48px; height: 48px; background: rgba(107,15,26,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--maroon); flex-shrink: 0; font-size: 20px; border: 1px solid var(--border); }
.contact-item h4 { font-family: 'Rozha One', serif; color: var(--maroon); font-size: 1.05rem; margin-bottom: 4px; }
.contact-item p  { color: var(--text-muted); font-family: 'Inter', sans-serif; font-size: 14px; margin: 0; line-height: 1.6; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
    background: #f0e6ce;
    border-top: 3px solid var(--gold);
    position: relative; overflow: hidden;
}
.footer::before {
    content: ''; position: absolute; inset: 0;
    background-image: var(--raj-pattern); opacity: 0.25; pointer-events: none;
}
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    padding: 64px 24px 48px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    position: relative; z-index: 1;
}

/* Logo col */
.footer-logo .footer-logo-img {
    height: 100px; width: auto; object-fit: contain;
    display: block; margin-bottom: 14px;
}
.footer-tagline {
    font-family: 'Rozha One', serif;
    font-size: 16px;
    color: var(--gold-light);
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}
.footer-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px; letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(245,215,142,0.45);
    margin-bottom: 16px;
}
.footer-social {
    color: rgba(245,215,142,0.65);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(212,146,10,0.3);
    border-radius: 50%;
    font-size: 15px;
}
.footer-social:hover {
    color: var(--gold-light);
    transform: translateY(-3px);
    border-color: var(--gold-light);
    background: rgba(212,146,10,0.12);
}

/* Headings */
.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: 'Rozha One', serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212,146,10,0.4);
    display: flex; align-items: center; gap: 8px;
}

/* Links */
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    text-decoration: none;
    color: #e8d8b0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    letter-spacing: 0.05em;
    transition: color 0.3s, padding-left 0.3s;
    display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--saffron); opacity: 0.8; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

/* Contact */
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #e8d8b0;
    line-height: 1.7;
}
.footer-contact-link {
    color: #e8d8b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}
.footer-contact-link:hover { color: var(--gold-light); }

/* Hours */
.footer-hours { display: flex; flex-direction: column; gap: 6px; }
.footer-hours p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #e8d8b0;
    line-height: 1.6;
}

/* Tagline */
.footer-tagline {
    font-family: 'Rozha One', serif;
    font-size: 16px;
    color: var(--gold-light);
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}
.footer-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px; letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(232,216,176,0.55);
    margin-bottom: 16px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(212,146,10,0.25);
    padding: 18px 24px;
    text-align: center;
    position: relative; z-index: 1;
    background: #000;
}
.footer-bottom p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: rgba(212,146,10,0.55);
    letter-spacing: 0.08em;
}

/* ══════════════════════════════════
   ADMIN LAYOUT
══════════════════════════════════ */
.admin-body { display: flex; min-height: 100vh; background: #f5efe0; }
.admin-sidebar {
    width: 240px; background: var(--maroon);
    border-right: 3px solid var(--gold);
    display: flex; flex-direction: column;
    flex-shrink: 0; position: fixed; top: 0; bottom: 0; left: 0; z-index: 100;
}
.sidebar-header { padding: 24px 20px; border-bottom: 1px solid rgba(212,146,10,0.3); }
.sidebar-header .logo-name { font-family: 'Rozha One', serif; font-size: 1.5rem; color: var(--gold-light); }
.sidebar-header p { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,215,142,0.4); margin-top: 4px; }
.sidebar-nav { flex: 1; padding: 20px 12px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }
.sidebar-link {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px; border-radius: 6px;
    text-decoration: none; color: rgba(245,215,142,0.6);
    font-size: 13px; transition: all 0.2s;
}
.sidebar-link:hover  { background: rgba(212,146,10,0.15); color: var(--gold-pale); }
.sidebar-link.active { background: var(--gold); color: var(--maroon); font-weight: 600; }
.sidebar-link svg { flex-shrink: 0; }
.sidebar-footer { padding: 16px 12px; border-top: 1px solid rgba(212,146,10,0.2); }
.admin-main    { margin-left: 240px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-content { flex: 1; padding: 32px; background: var(--bg); }
.admin-content-inner  { max-width: 1100px; margin: 0 auto; }
.admin-page-header    { margin-bottom: 32px; }
.admin-page-header h1 { font-family: 'Rozha One', serif; font-size: 2rem; color: var(--maroon); }
.admin-page-header p  { color: var(--text-muted); margin-top: 4px; font-size: 14px; }
.admin-page-header-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }

/* ── Stats Cards ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.stat-card {
    background: var(--card); border: 1px solid var(--border);
    border-top: 3px solid var(--saffron);
    border-radius: 4px; padding: 24px;
    display: flex; align-items: center; gap: 16px;
}
.stat-card-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.stat-card-icon.amber  { background: rgba(217,119,6,0.12);  color: #d97706; }
.stat-card-icon.blue   { background: rgba(59,130,246,0.12); color: #3b82f6; }
.stat-card-icon.green  { background: rgba(22,163,74,0.12);  color: #16a34a; }
.stat-card-icon.purple { background: rgba(147,51,234,0.12); color: #9333ea; }
.stat-card-icon.rose   { background: rgba(225,29,72,0.12);  color: #e11d48; }
.stat-card p  { font-size: 13px; color: var(--text-muted); }
.stat-card h2 { font-family: 'Rozha One', serif; font-size: 2rem; color: var(--maroon); }

/* ── Admin Table ── */
.admin-table-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
thead { background: rgba(107,15,26,0.05); }
th { padding: 14px 16px; text-align: left; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--maroon); font-weight: 600; border-bottom: 2px solid var(--border); }
td { padding: 14px 16px; font-size: 13px; color: var(--text); border-bottom: 1px solid rgba(180,100,20,0.1); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(232,96,28,0.03); }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); font-size: 12px; }

/* ── Badges ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 500; border: 1px solid; }
.badge-pending   { background: rgba(217,119,6,0.1);  color: #d97706; border-color: rgba(217,119,6,0.25); }
.badge-confirmed { background: rgba(22,163,74,0.1);  color: #16a34a; border-color: rgba(22,163,74,0.25); }
.badge-cancelled { background: rgba(220,38,38,0.1);  color: #dc2626; border-color: rgba(220,38,38,0.25); }
.badge-special   { background: rgba(107,15,26,0.1); color: var(--maroon); border-color: rgba(107,15,26,0.25); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; }

/* ── Admin Buttons ── */
.btn-admin {
    font-size: 12px; padding: 8px 16px; border-radius: 4px;
    cursor: pointer; border: 1px solid; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
}
.btn-gold       { background: var(--maroon); color: var(--gold-pale); border-color: var(--maroon); }
.btn-gold:hover { background: var(--saffron); border-color: var(--saffron); }
.btn-outline-sm { background: transparent; color: var(--text-muted); border-color: var(--border); }
.btn-outline-sm:hover { border-color: var(--maroon); color: var(--maroon); }
.btn-danger     { background: rgba(220,38,38,0.08); color: #dc2626; border-color: rgba(220,38,38,0.25); }
.btn-danger:hover  { background: rgba(220,38,38,0.15); }
.btn-success    { background: rgba(22,163,74,0.08); color: #16a34a; border-color: rgba(22,163,74,0.25); }
.btn-success:hover { background: rgba(22,163,74,0.15); }

/* ── Admin Header ── */
.admin-header {
    padding: 16px 32px; background: var(--card);
    border-bottom: 2px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.admin-header h2 { font-family: 'Rozha One', serif; font-size: 1.1rem; color: var(--maroon); }

/* ── Modal ── */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(107,15,26,0.6);
    z-index: 500; display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
    background: var(--card); border: 2px solid var(--border);
    border-top: 4px solid var(--maroon);
    padding: 40px; max-width: 600px; width: 100%;
    max-height: 90vh; overflow-y: auto; position: relative;
}
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--text-muted); font-size: 18px; cursor: pointer; }
.modal h3 { font-family: 'Rozha One', serif; font-size: 1.4rem; color: var(--maroon); margin-bottom: 24px; }

/* ── CTA Banner ── */
.cta-banner {
    padding: 80px 24px;
    background: var(--maroon);
    text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image: var(--raj-pattern); opacity: 0.3; pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-family: 'Rozha One', serif; font-size: clamp(2rem,4vw,2.8rem); color: var(--gold-pale); margin-bottom: 16px; }
.cta-banner p  { font-family: 'Playfair Display', serif; color: rgba(245,215,142,0.75); font-size: 1.05rem; font-style: italic; font-weight: 300; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2,1fr); }
    .about-inner  { grid-template-columns: 1fr; gap: 48px; }
    .camel-section{ grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .specials-grid    { grid-template-columns: 1fr; }
    .gallery-grid     { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid{ grid-template-columns: 1fr; }
    .menu-grid        { grid-template-columns: 1fr 1fr; }
    .gallery-page-grid{ grid-template-columns: repeat(2,1fr); }
    .form-grid        { grid-template-columns: 1fr; }
    .contact-wrap     { grid-template-columns: 1fr; }
    .footer-inner     { grid-template-columns: 1fr; gap: 32px; }
    .camel-text       { padding: 40px 28px; }
}
@media (max-width: 480px) {
    .menu-grid        { grid-template-columns: 1fr; }
    .gallery-grid     { grid-template-columns: 1fr; }
    .gallery-page-grid{ grid-template-columns: 1fr; }
    .stat-item        { padding: 8px 20px; }
    .pillars-grid     { grid-template-columns: 1fr; }
    .pillars-grid .pillar-card { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ══════════════════════════════════
   TRIO FEATURE SECTION
══════════════════════════════════ */
.trio-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 520px;
}

/* ── Image Cards (left & right) ── */
.trio-img-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.trio-img-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.75) saturate(1.2);
    display: block;
    min-height: 520px;
}
.trio-img-card:hover img {
    transform: scale(1.07);
}
.trio-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 28px;
    background: linear-gradient(to top, rgba(42,18,5,0.92) 0%, rgba(42,18,5,0.5) 60%, transparent 100%);
    transition: padding 0.4s;
}
.trio-img-card:hover .trio-img-overlay {
    padding-bottom: 40px;
}
.trio-img-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold-light);
    margin-bottom: 10px;
}
.trio-img-overlay h3 {
    font-family: 'Rozha One', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: #fff; line-height: 1.3;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.trio-link {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px; letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(212,146,10,0.5);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s, color 0.3s;
}
.trio-img-card:hover .trio-link {
    opacity: 1;
    transform: translateY(0);
}
.trio-link:hover { color: #fff; border-color: #fff; }

/* ── Center Text Card ── */
.trio-text-card {
    background: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 44px;
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
}
.trio-text-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--raj-pattern);
    opacity: 0.35; pointer-events: none;
}
/* Corner ornaments */
.trio-text-card::after {
    content: '✦';
    position: absolute; top: 20px; right: 24px;
    font-size: 22px; color: rgba(212,146,10,0.25);
}
.trio-text-inner {
    position: relative; z-index: 1;
    text-align: center;
}
.trio-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.trio-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px; letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold-light); opacity: 0.85;
    margin-bottom: 14px;
}
.trio-text-card h3 {
    font-family: 'Rozha One', serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--gold-pale);
    line-height: 1.3; margin-bottom: 16px;
}
.trio-divider {
    width: 50px; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 18px;
}
.trio-text-card p {
    font-family: 'Playfair Display', serif;
    font-size: 14px; line-height: 1.85;
    color: rgba(245,215,142,0.75);
    font-weight: 300; font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
    .trio-section {
        grid-template-columns: 1fr;
    }
    .trio-img-card img { min-height: 320px; }
    .trio-link { opacity: 1; transform: none; }
    .trio-text-card { padding: 48px 32px; }
}

/* ── Empty State ── */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state p { color: var(--text-muted); font-family: 'Playfair Display', serif; font-size: 1.1rem; }

/* ══════════════════════════════════
   GUEST FEEDBACK SECTION
══════════════════════════════════ */
.feedback-section {
    padding: 80px 24px;
    background: var(--ivory);
    background-image: var(--raj-pattern);
}
.feedback-inner { max-width: 1100px; margin: 0 auto; }

.feedback-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

/* Left rating box */
.feedback-rating {
    flex-shrink: 0;
    width: 160px;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid rgba(180,100,20,0.15);
    border-top: 3px solid var(--saffron);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(107,15,26,0.08);
}
.feedback-rating-label {
    font-family: 'Rozha One', serif;
    font-size: 16px;
    color: var(--maroon);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.feedback-stars {
    color: #f59e0b;
    font-size: 22px;
    margin-bottom: 10px;
    display: flex; gap: 3px; justify-content: center;
}
.feedback-rating-count {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
    line-height: 1.5;
}
.feedback-rating-count strong { color: var(--maroon); }
.feedback-google-logo { display: flex; justify-content: center; }

/* Right slider */
.feedback-slider-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    max-width: 100%;
}
.feedback-track-outer {
    overflow: hidden;
    flex: 1;
}
.feedback-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

/* Review card */
.feedback-card {
    background: #fff;
    border: 1px solid rgba(180,100,20,0.12);
    border-radius: 8px;
    padding: 20px;
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(107,15,26,0.07);
    transition: box-shadow 0.3s;
}
.feedback-card:hover { box-shadow: 0 6px 24px rgba(107,15,26,0.12); }

.feedback-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.feedback-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: 'Rozha One', serif;
    font-size: 16px;
    flex-shrink: 0;
}
.feedback-meta { flex: 1; min-width: 0; }
.feedback-name {
    font-family: 'Playfair Display', serif;
    font-size: 13px; font-weight: 600;
    color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.feedback-time {
    font-size: 11px; color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    margin-top: 2px;
}
.feedback-g-icon { flex-shrink: 0; }

.feedback-stars-small {
    display: flex; align-items: center; gap: 2px;
    margin-bottom: 10px; font-size: 13px;
}
.feedback-text {
    font-family: 'Playfair Display', serif;
    font-size: 13px; color: var(--text-muted);
    line-height: 1.7; font-style: italic;
}

/* Arrows */
.feedback-arrow {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--maroon); color: var(--gold-pale);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
    transition: all 0.3s;
}
.feedback-arrow:hover { background: var(--saffron); }

@media (max-width: 768px) {
    .feedback-wrap { flex-direction: column; }
    .feedback-rating { width: 100%; }
    .feedback-card { min-width: 220px; max-width: 220px; }
}

.hero-scroll span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
    color: rgba(255,248,230,0.45);
}
.hero-scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, rgba(212,146,10,0.7), transparent);
}

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */

/* Hero */
.about-page-hero {
    position: relative; height: 55vh; min-height: 320px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.about-page-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--maroon) 0%, #3d0a10 100%);
}
.about-page-hero-bg img { width:100%; height:100%; object-fit:cover; object-position:center; }
.about-page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(107,15,26,0.55) 0%, rgba(10,3,0,0.65) 100%);
}
.about-page-hero-content {
    position: relative; z-index: 2; text-align: center; padding: 0 24px;
}
.about-page-hero-content h1 {
    font-family: 'Rozha One', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: #fff; margin: 8px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.about-page-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold-light);
    margin-top: 8px;
}

/* Intro */
.about-intro { padding: 80px 24px; background: var(--bg); background-image: var(--raj-pattern); }
.about-intro-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
.about-intro-img { position: relative; }
.about-intro-img::before {
    content: ''; position: absolute; inset: -14px;
    border: 2px solid var(--gold); opacity: 0.4; pointer-events: none;
}
.about-intro-img::after {
    content: ''; position: absolute; inset: -28px;
    border: 1px solid var(--saffron); opacity: 0.2; pointer-events: none;
}
.about-intro-img img { width:100%; height:520px; object-fit:cover; display:block; }
.about-intro-text h2 { font-family:'Rozha One',serif; font-size:clamp(1.8rem,3.5vw,2.8rem); color:var(--maroon); margin-bottom:8px; }
.about-intro-text p { font-family:'Playfair Display',serif; color:var(--text-muted); font-size:1rem; line-height:1.85; margin-bottom:16px; }
.about-intro-btns { display:flex; gap:14px; margin-top:28px; flex-wrap:wrap; }
.about-intro-btns .btn { display:flex; align-items:center; gap:8px; }

/* Why choose us */
.about-why { padding: 80px 24px; background: var(--sandstone-2); background-image: var(--raj-pattern); }
.about-why-inner { max-width: 1100px; margin: 0 auto; }
.about-why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 16px;
}
.about-why-card {
    background: var(--ivory);
    border: 1px solid rgba(180,100,20,0.15);
    border-top: 3px solid var(--saffron);
    border-radius: 6px; padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.about-why-card:hover { box-shadow: 0 8px 30px rgba(107,15,26,0.1); transform: translateY(-4px); }
.about-why-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(107,15,26,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--maroon);
    margin: 0 auto 16px;
    border: 1px solid rgba(107,15,26,0.15);
}
.about-why-card h3 { font-family:'Rozha One',serif; font-size:1rem; color:var(--maroon); margin-bottom:10px; letter-spacing:0.05em; }
.about-why-card p  { font-family:'Playfair Display',serif; font-size:13px; color:var(--text-muted); line-height:1.8; }

/* Gallery */
.about-gallery { padding: 80px 24px; background: var(--card); background-image: var(--raj-pattern); }
.about-gallery-inner { max-width: 1100px; margin: 0 auto; }
.about-gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }

/* CTA */
.about-cta {
    padding: 80px 24px; text-align: center;
    background: var(--maroon); position: relative; overflow: hidden;
}
.about-cta::before {
    content:''; position:absolute; inset:0;
    background-image:var(--raj-pattern); opacity:0.25; pointer-events:none;
}
.about-cta-inner { position:relative; z-index:1; max-width:700px; margin:0 auto; }
.about-cta h2 { font-family:'Rozha One',serif; font-size:clamp(2rem,4vw,2.8rem); color:var(--gold-pale); margin-bottom:16px; }
.about-cta p  { font-family:'Playfair Display',serif; color:rgba(245,215,142,0.75); font-size:1rem; font-style:italic; }
.about-cta .btn { display:inline-flex; align-items:center; gap:8px; }
.about-cta .btn-primary { background:var(--gold); color:var(--maroon); border:2px solid var(--gold); }
.about-cta .btn-primary:hover { background:var(--gold-light); }
.about-cta .btn-outline { border:2px solid rgba(245,215,142,0.4); color:var(--gold-pale); }
.about-cta .btn-outline:hover { background:rgba(245,215,142,0.1); }

/* Responsive */
@media (max-width: 768px) {
    .about-intro-inner { grid-template-columns:1fr; gap:40px; }
    .about-why-grid { grid-template-columns:1fr 1fr; }
    .about-gallery-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 480px) {
    .about-why-grid { grid-template-columns:1fr; }
    .about-gallery-grid { grid-template-columns:1fr; }
}

/* ══════════════════════════════════
   WHATSAPP FLOATING WIDGET
══════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsapp-pulse 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
    animation: none;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%; top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Pulse animation */
@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Footer Light Theme Override ── */
.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    color: var(--maroon) !important;
    border-bottom-color: rgba(107,15,26,0.25) !important;
}
.footer-links a { color: var(--brown-light) !important; }
.footer-links a:hover { color: var(--maroon) !important; }
.footer-links a::before { color: var(--saffron) !important; opacity: 1 !important; }
.footer-contact p,
.footer-hours p { color: var(--brown-light) !important; }
.footer-contact-link { color: var(--brown-light) !important; }
.footer-contact-link:hover { color: var(--maroon) !important; }
.footer-tagline { color: var(--maroon) !important; }
.footer-sub { color: rgba(107,15,26,0.6) !important; }
.footer-social { color: var(--maroon) !important; border-color: rgba(107,15,26,0.3) !important; }
.footer-social:hover { color: #fff !important; background: var(--maroon) !important; }
.footer-bottom { background: rgba(107,15,26,0.1) !important; }
.footer-bottom p { color: var(--text-muted) !important; }

/* ── Footer all p tags light brown ── */
.footer p,
.footer-logo p,
.footer-contact p,
.footer-hours p,
.footer-bottom p {
    color: #8b5e3c !important;
}
.footer-contact-link,
.footer-links a {
    color: #8b5e3c !important;
}
.footer-contact-link:hover,
.footer-links a:hover { color: var(--maroon) !important; }

/* ── Announcement Bar — Footer style ── */
.announcement-bar {
    background: #f0e6ce !important;
    border-bottom: 2px solid rgba(107,15,26,0.2) !important;
    color: var(--maroon) !important;
    background-image: var(--raj-pattern) !important;
    position: sticky;
    top: 0;
    z-index: 1001;
}

/* ══════════════════════════════════
   FOOTER — Centered polhaveli style
══════════════════════════════════ */
.footer {
    background: #f0e6ce !important;
    border-top: 3px solid var(--gold) !important;
    position: relative;
    padding-bottom: 56px;
    overflow: hidden;
}
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/jaisalmer-php/public/images/footer-bg.jpg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.footer-centered {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 200px;
    text-align: center;
    position: relative; z-index: 1;
}

/* Logo */
.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo-img {
    height: 110px; width: auto;
    object-fit: contain; display: inline-block;
}

/* Address */
.footer-address { margin-bottom: 14px; }
.footer-address p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--maroon) !important;
    line-height: 1.7;
    margin: 0;
}
.footer-address .fa-location-dot { color: var(--maroon); margin-right: 4px; }

/* Phone & Email line */
.footer-contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-contact-inline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--maroon) !important;
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: color 0.3s;
}
.footer-contact-inline:hover { color: var(--saffron) !important; }
.footer-sep {
    color: rgba(107,15,26,0.35);
    font-size: 16px;
}

/* Nav links */
.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-bottom: 24px;
}
.footer-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--maroon) !important;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    padding: 0 4px;
}
.footer-nav a:hover { color: var(--saffron) !important; }
.footer-nav span {
    color: rgba(107,15,26,0.3);
    font-size: 14px;
}

/* Social icons */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.footer-social-btn {
    width: 40px; height: 40px;
    border-radius: 6px;
    background: var(--maroon);
    color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}
.footer-social-btn:hover {
    background: var(--saffron);
    transform: translateY(-3px);
}

/* Copyright */
.footer-copyright {
    background: var(--maroon);
    padding: 14px 24px;
    text-align: center;
}
.footer-copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(245,215,142,0.85) !important;
    margin: 0;
}

/* ══════════════════════════════════
   STICKY BOTTOM BAR
══════════════════════════════════ */
.footer-sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0;
    border-top: 2px solid var(--gold);
}
.sticky-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--gold-pale);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 4px 20px;
}
.sticky-bar-item i { font-size: 20px; }
.sticky-bar-item:hover { color: var(--gold-light); }

/* Add bottom padding to body so content not hidden behind sticky bar */
body { padding-bottom: 60px; }

/* Hide whatsapp float on mobile since sticky bar has it */
@media (max-width: 768px) {
    .whatsapp-float { display: none; }
}

/* ── Menu Card Image ── */
.menu-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    background: var(--sandstone-2);
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s;
    display: block;
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.06);
}

/* ── Sticky Header Fix ── */
.announcement-bar {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1002 !important;
}
.navbar {
    position: fixed !important;
    top: 36px !important;
    left: 0; right: 0;
    z-index: 1001 !important;
}
body {
    padding-top: 105px !important;
}

/* ══════════════════════════════════
   CONTACT MAP
══════════════════════════════════ */
.contact-map-section {
    background: var(--bg);
    background-image: var(--raj-pattern);
}
.contact-map-header {
    text-align: center;
    padding: 48px 24px 24px;
}
.contact-map-header h2 {
    font-family: 'Rozha One', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--maroon);
    margin-top: 8px;
}
.contact-map-wrap {
    position: relative;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.contact-map-wrap iframe {
    filter: grayscale(10%) contrast(1.05);
}
.contact-map-overlay-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 10;
}
.contact-map-overlay-btn .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(107,15,26,0.35);
    font-size: 12px;
}

/* ── About Page Hero Fix ── */
.about-page-hero {
    height: 60vh !important;
    min-height: 350px !important;
}
.about-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    margin-top: 0 !important;
}
.about-page-hero-content h1 {
    font-family: 'Rozha One', serif !important;
    font-size: clamp(2.5rem, 7vw, 5rem) !important;
    color: #fff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6) !important;
    margin: 10px 0 !important;
}
.about-page-tagline {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 12px !important;
    letter-spacing: 0.4em !important;
    color: var(--gold-light) !important;
    margin-top: 8px !important;
}
