/* ==========================================================================
   public/assets/css/style.css
   Grand Palace Safari Lodge Kabale — Public Website Styles
   Luxury 5-star design system
   Uses CSS variables from themes.css (--theme-primary, --theme-accent, etc.)
   ========================================================================== */

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

:root {
    --z-base:      10;
    --z-card:      20;
    --z-sticky:    30;
    --z-nav:       1030;
    --z-float:     1050;
    --z-modal:     1060;
    --radius-sm:   4px;
    --radius-md:   10px;
    --radius-lg:   16px;
    --transition:  0.3s ease;
    --gold-shadow: 0 4px 16px rgba(201,168,76,0.22);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--theme-font-body, 'Jost', 'Poppins', sans-serif);
    color: var(--theme-text-color, #1c1c1c);
    line-height: 1.72;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--theme-font-heading, 'Cormorant Garamond', 'Playfair Display', serif);
    font-weight: 700;
    line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ---------- Accessibility ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 14px 22px;
    background: var(--theme-accent);
    color: var(--theme-primary);
    font-weight: 700;
    z-index: 9999;
    border-radius: 0 0 8px 0;
    outline: 3px solid var(--theme-primary);
}

*:focus-visible {
    outline: 2px solid var(--theme-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-accent), var(--theme-accent-light, #e8c97a));
    z-index: 9998;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ---------- Utilities ---------- */
.text-accent { color: var(--theme-accent); }
.bg-theme-primary { background-color: var(--theme-primary); color: #fff; }
.bg-theme-light { background-color: var(--theme-light-bg, #faf9f5); }
.shadow-luxury { box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
.rounded-luxury { border-radius: var(--radius-md); }

/* ---------- Buttons ---------- */
.btn-luxury {
    background: var(--theme-accent);
    color: var(--theme-primary);
    border: 2px solid var(--theme-accent);
    font-family: var(--theme-font-body, sans-serif);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: background var(--transition), color var(--transition),
                transform 0.25s ease, box-shadow var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
}
.btn-luxury:hover,
.btn-luxury:focus-visible {
    background: var(--theme-primary);
    color: #fff;
    border-color: var(--theme-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.btn-luxury-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    font-family: var(--theme-font-body, sans-serif);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
}
.btn-luxury-outline:hover,
.btn-luxury-outline:focus-visible {
    background: #fff;
    color: var(--theme-primary);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section-padding { padding: 100px 0; }
@media (max-width: 768px) { .section-padding { padding: 64px 0; } }

.section-label {
    color: var(--theme-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    font-family: var(--theme-font-body, sans-serif);
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 0;
    line-height: 1.15;
    color: inherit;
}
@media (max-width: 768px) { .section-title { font-size: 1.9rem; } }

.divider-accent {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-accent), rgba(201,168,76,0.3));
    margin: 20px 0;
    border-radius: 2px;
}
.divider-accent.center { margin: 20px auto; }

/* ---------- Navbar ---------- */
.navbar-luxury {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.04);
    padding: 18px 0;
    transition: padding 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    z-index: var(--z-nav);
}
.navbar-luxury .navbar-brand img { height: 48px; object-fit: contain; }
.navbar-luxury .navbar-brand {
    font-family: var(--theme-font-heading, serif);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--theme-primary) !important;
    letter-spacing: 0.01em;
    gap: 10px;
    display: flex;
    align-items: center;
}
.navbar-luxury .navbar-brand i { font-size: 1.5rem; color: var(--theme-accent); }
.navbar-luxury .nav-link {
    color: var(--theme-primary) !important;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0 6px;
    padding: 6px 2px !important;
    position: relative;
    transition: color 0.2s ease;
}
.navbar-luxury .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--theme-accent);
    transition: width 0.3s ease;
}
.navbar-luxury .nav-link.active::after,
.navbar-luxury .nav-link:hover::after { width: 100%; }

.navbar-book-btn {
    background: var(--theme-accent) !important;
    color: var(--theme-primary) !important;
    padding: 9px 22px !important;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
.navbar-book-btn::after { display: none !important; }
.navbar-book-btn:hover {
    background: var(--theme-primary) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.navbar-phone-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--theme-accent);
    color: var(--theme-accent) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}
.navbar-phone-link:hover {
    background: var(--theme-accent);
    color: var(--theme-primary) !important;
}

.navbar-luxury.navbar-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 10px 0;
    background: rgba(255,255,255,0.99) !important;
}

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        165deg,
        rgba(10,22,14,0.74) 0%,
        rgba(10,22,14,0.52) 50%,
        rgba(10,22,14,0.78) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}
.hero-label {
    color: var(--theme-accent) !important;
    letter-spacing: 0.24em;
    font-size: 0.75rem;
    margin-bottom: 16px;
    display: block;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 3px 24px rgba(0,0,0,0.45);
    letter-spacing: -0.01em;
}
.hero-subtitle {
    font-size: 1.18rem;
    font-weight: 300;
    min-height: 3.4rem;
    margin-bottom: 38px;
    opacity: 0.92;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    max-width: 580px;
}
@media (max-width: 576px) {
    .hero-subtitle { font-size: 1rem; min-height: 4rem; }
    .hero-section { height: 100svh; min-height: 560px; }
}

/* Typed.js cursor */
.typed-cursor {
    color: var(--theme-accent);
    font-weight: 200;
    font-size: 1.1em;
    opacity: 1;
    animation: typedBlink 0.8s step-start infinite;
}
@keyframes typedBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ---------- Glassmorphism Booking Widget ---------- */
.booking-widget {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-lg);
    padding: 28px 32px 24px;
    margin-top: 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.28);
    position: relative;
    z-index: 2;
}
.booking-widget-title {
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.booking-widget-title::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: var(--theme-accent);
}
.booking-widget .form-group { margin-bottom: 0; }
.booking-widget label {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
.booking-widget .form-control,
.booking-widget .form-select {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 0.9rem;
    transition: border-color 0.25s ease, background 0.25s ease;
    height: 46px;
}
.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
    background: rgba(255,255,255,0.22);
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
    color: #fff;
    outline: none;
}
.booking-widget .form-control::placeholder { color: rgba(255,255,255,0.5); }
.booking-widget .form-select option { background: var(--theme-primary); color: #fff; }
.booking-widget-btn {
    background: var(--theme-accent);
    color: var(--theme-primary);
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    height: 46px;
    width: 100%;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.booking-widget-btn:hover {
    background: #fff;
    color: var(--theme-primary);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
@media (max-width: 576px) {
    .booking-widget { padding: 20px 16px 18px; margin-top: 28px; }
    .booking-widget .row { gap: 8px 0; }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.7);
    text-align: center;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    pointer-events: none;
    animation: heroScroll 2.4s ease-in-out infinite;
}
.hero-scroll-indicator i { font-size: 1.1rem; }
@keyframes heroScroll {
    0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.7; }
    50%       { transform: translateX(-50%) translateY(8px); opacity: 1;   }
}

/* ---------- Trust / Awards Strip ---------- */
.trust-strip {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 18px 0;
    overflow: hidden;
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.trust-item i { color: var(--theme-accent); font-size: 1.2rem; }
.trust-divider {
    width: 1px;
    height: 24px;
    background: #e0e0e0;
}
@media (max-width: 576px) { .trust-strip-inner { gap: 18px; } .trust-divider { display: none; } }

/* ---------- Welcome / Stats ---------- */
.welcome-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.welcome-img-wrap img {
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.13);
    transition: transform 0.5s ease;
}
.welcome-img-wrap:hover img { transform: scale(1.02); }
.welcome-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--theme-accent);
    color: var(--theme-primary);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--theme-font-heading, serif);
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.2;
    text-align: center;
    box-shadow: var(--gold-shadow);
}
.welcome-img-badge strong { font-size: 1.8rem; display: block; }

.stat-counter { text-align: center; }
.stat-counter .number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--theme-accent);
    font-family: var(--theme-font-heading, serif);
    line-height: 1;
}
.stat-counter small { font-size: 0.76rem; letter-spacing: 0.04em; }

/* ---------- Room Cards ---------- */
.room-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.14);
}
.room-card-img {
    height: 260px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.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.07); }
.room-card-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--theme-accent);
    color: var(--theme-primary);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.room-card-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.room-card-body h5 { margin-bottom: 8px; font-size: 1.2rem; }
.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 14px 0 18px;
    flex: 1;
    align-content: flex-start;
}
.room-card-amenities span {
    font-size: 0.74rem;
    background: var(--theme-light-bg, #faf9f5);
    padding: 4px 12px;
    border-radius: 20px;
    color: #666;
    border: 1px solid rgba(0,0,0,0.06);
}

/* ---------- Feature Cards ---------- */
.feature-card {
    text-align: center;
    padding: 44px 26px 38px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
    border-bottom: 3px solid transparent;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.11);
    border-bottom-color: var(--theme-accent);
}
.feature-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-light-bg, #faf9f5), #fff);
    color: var(--theme-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: var(--gold-shadow);
    transition: transform var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-5deg); }

/* ---------- Bar Section ---------- */
.bar-section {
    background: var(--theme-primary);
    color: #fff;
}
.bar-section .section-label { color: var(--theme-accent); }
.bar-section .section-title { color: #fff; }
.bar-section .divider-accent {
    background: linear-gradient(90deg, var(--theme-accent), rgba(201,168,76,0.3));
}
.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.14);
}
.menu-item-row .price { color: var(--theme-accent); font-weight: 600; white-space: nowrap; }

/* ---------- Team Section ---------- */
.team-section {
    background: #fff;
}
.team-card {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(150px, 42%) 1fr;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.13);
}
.team-photo-wrap {
    min-height: 300px;
    background: var(--theme-light-bg, #faf9f5);
}
.team-photo-wrap img,
.team-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
}
.team-photo-wrap img {
    object-fit: cover;
    display: block;
}
.team-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-accent);
    font-size: 4rem;
}
.team-card-body {
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.team-role {
    margin: 0 0 8px;
    color: var(--theme-accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.team-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 1.8vw, 2rem);
}
.team-bio {
    color: #666;
    line-height: 1.75;
    margin-bottom: 20px;
}
.team-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.team-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-light-bg, #faf9f5);
    color: var(--theme-primary);
    border: 1px solid rgba(0,0,0,0.07);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.team-links a:hover {
    background: var(--theme-accent);
    color: var(--theme-primary);
    transform: translateY(-2px);
}

/* ---------- Reels ---------- */
.reel-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.13);
}
.reel-media {
    position: relative;
    aspect-ratio: 9 / 16;
    background: var(--theme-primary);
    overflow: hidden;
}
.reel-media iframe,
.reel-media video,
.reel-embed-trigger,
.reel-embed-trigger img,
.reel-empty {
    width: 100%;
    height: 100%;
}
.reel-media iframe,
.reel-media video {
    display: block;
    border: 0;
}
.reel-embed-trigger {
    position: relative;
    display: block;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: var(--theme-primary);
}
.reel-embed-trigger img {
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.25s ease;
}
.reel-embed-trigger:hover img {
    transform: scale(1.05);
    opacity: 0.86;
}
.reel-play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--theme-accent);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.reel-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-accent);
    font-size: 4rem;
}
.reel-body {
    padding: 20px 22px 24px;
}
.reel-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--theme-accent);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.reel-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.reel-card p {
    color: #666;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ---------- Bar Page — Menu Cards ---------- */
.menu-cat-tabs {
    gap: 10px;
    border: none;
    padding: 4px;
}
.menu-tab {
    background: #fff;
    border: 1.5px solid var(--theme-accent);
    color: var(--theme-primary);
    border-radius: 30px;
    padding: 9px 22px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease,
                transform 0.2s ease, box-shadow 0.22s ease;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.menu-tab:hover {
    background: rgba(201,168,76,0.12);
    transform: translateY(-2px);
}
.menu-tab.active {
    background: var(--theme-accent);
    color: var(--theme-primary);
    border-color: var(--theme-accent);
    box-shadow: 0 6px 18px rgba(201,168,76,0.32);
    transform: translateY(-2px);
}

.menu-cat-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.menu-cat-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.menu-cat-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 26px;
    background: var(--theme-primary);
    color: #fff;
    border-bottom: 3px solid var(--theme-accent);
}
.menu-cat-head h5 {
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}
.menu-cat-icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--theme-accent);
    flex-shrink: 0;
    border: 1px solid rgba(201,168,76,0.35);
}
.menu-cat-count {
    font-size: 0.72rem;
    opacity: 0.65;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-items-list {
    flex: 1;
    padding: 6px 0;
}

.menu-item-row-new {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 14px 26px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.18s ease;
}
.menu-item-row-new:last-child { border-bottom: none; }
.menu-item-row-new:hover { background: var(--theme-light-bg, #faf9f5); }

.menu-item-name-col {
    flex: 1;
    min-width: 0;
}
.menu-item-name {
    display: block;
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--theme-primary);
    line-height: 1.35;
}
.menu-item-desc {
    display: block;
    font-size: 0.79rem;
    color: #999;
    margin-top: 3px;
    line-height: 1.4;
    font-style: italic;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 2px dotted #d4ccbb;
    margin-bottom: 5px;
    min-width: 16px;
    max-width: 56px;
}

.menu-item-price-tag {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--theme-primary);
    white-space: nowrap;
    background: rgba(201,168,76,0.13);
    border: 1px solid rgba(201,168,76,0.35);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--theme-font-heading, serif);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .menu-cat-tabs { gap: 7px; }
    .menu-tab { padding: 7px 15px; font-size: 0.78rem; }
    .menu-cat-head { padding: 16px 20px; }
    .menu-item-row-new { padding: 12px 20px; }
    .menu-item-dots { max-width: 24px; }
}
@media (max-width: 480px) {
    .menu-item-row-new { gap: 6px; }
    .menu-item-dots { display: none; }
    .menu-item-price-tag { font-size: 0.82rem; padding: 3px 9px; }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--theme-font-heading, serif);
    font-size: 5.5rem;
    color: var(--theme-accent);
    opacity: 0.14;
    position: absolute;
    top: 8px;
    left: 22px;
    line-height: 1;
    pointer-events: none;
}
.testimonial-stars { color: var(--theme-accent); margin-bottom: 14px; font-size: 0.92rem; gap: 2px; display: flex; }
.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--theme-accent);
    flex-shrink: 0;
}

/* ---------- Gallery ---------- */
.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: zoom-in;
    height: 234px;
    display: block;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-thumb:hover img { transform: scale(1.1); }
.gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,22,14,0.78) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 18px;
    color: #fff;
    gap: 6px;
}
.gallery-thumb:hover .gallery-thumb-overlay { opacity: 1; }
.gallery-thumb-caption {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}
.gallery-thumb-overlay i { font-size: 1.3rem; opacity: 0.9; }

/* ---------- Attractions ---------- */
.attraction-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 350px;
    cursor: pointer;
}
.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.attraction-card:hover img { transform: scale(1.06); }
.attraction-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.82) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    color: #fff;
    transition: background 0.3s ease;
}
.attraction-card:hover .attraction-card-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.88) 100%);
}
.attraction-card-overlay h5 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.attraction-card-overlay p { opacity: 0.88; font-size: 0.88rem; }

/* ---------- FAQ Accordion ---------- */
.faq-section { background: var(--theme-light-bg, #faf9f5); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 24px;
    font-family: var(--theme-font-body, sans-serif);
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--theme-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s ease;
    line-height: 1.4;
}
.faq-question:hover { background: var(--theme-light-bg, #faf9f5); }
.faq-question[aria-expanded="true"] { color: var(--theme-accent); }
.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--theme-accent);
    color: var(--theme-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--theme-accent);
    color: var(--theme-primary);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-answer.open {
    max-height: 400px;
    padding: 0 24px 20px;
}
.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 0.93rem;
}

/* ---------- CTA Section ---------- */
.cta-section { background: var(--theme-primary); color: #fff; }
.cta-section .section-title { color: #fff; }

/* ---------- Footer ---------- */
.newsletter-strip {
    background: var(--theme-accent);
    padding: 36px 0;
}
.newsletter-strip h4 {
    font-family: var(--theme-font-heading, serif);
    font-size: 1.5rem;
    color: var(--theme-primary);
    font-weight: 700;
    margin-bottom: 4px;
}
.newsletter-strip p { color: rgba(0,0,0,0.65); font-size: 0.9rem; margin: 0; }
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
    width: 100%;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
    background: rgba(255,255,255,0.9);
    color: #222;
}
.newsletter-form input:focus { background: #fff; box-shadow: 0 0 0 3px rgba(26,46,34,0.25); }
.newsletter-form button {
    padding: 12px 24px;
    background: var(--theme-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}
.newsletter-form button:hover { opacity: 0.85; }
@media (max-width: 576px) { .newsletter-form { flex-direction: column; } }

.footer-luxury {
    background: var(--theme-dark-bg, #0d1a10);
    color: rgba(255,255,255,0.68);
    padding: 75px 0 0;
}
.footer-luxury h5 {
    color: #fff;
    font-size: 0.82rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-family: var(--theme-font-body, sans-serif);
    font-weight: 700;
    text-transform: uppercase;
}
.footer-luxury p.small { line-height: 1.78; }
.footer-luxury a { color: rgba(255,255,255,0.62); transition: color 0.25s ease; }
.footer-luxury a:hover { color: var(--theme-accent); }
.footer-luxury ul li { margin-bottom: 10px; line-height: 1.4; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.62);
}
.footer-social a:hover {
    background: var(--theme-accent);
    border-color: var(--theme-accent);
    color: var(--theme-primary);
    transform: translateY(-2px);
}
.footer-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: center;
}
.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
}
.footer-trust-badge i { color: var(--theme-accent); font-size: 1rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 50px;
    padding: 22px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: #25D366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    z-index: var(--z-float);
    animation: waPulse 2.8s ease-in-out infinite;
    transition: transform 0.25s ease;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.1); }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.22), 0 0 0 0 rgba(37,211,102,0.45); }
    60%       { box-shadow: 0 6px 24px rgba(0,0,0,0.22), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- Mobile Sticky Booking CTA ---------- */
.mobile-book-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--theme-primary);
    z-index: var(--z-float);
    padding: 12px 20px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
    gap: 10px;
}
.mobile-book-bar .btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    flex: 1;
    padding: 12px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    text-transform: uppercase;
}
.mobile-book-bar .btn-book {
    background: var(--theme-accent);
    color: var(--theme-primary);
    border: none;
    border-radius: var(--radius-sm);
    flex: 1.4;
    padding: 12px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .mobile-book-bar { display: flex; }
    body { padding-bottom: 70px; }
    .whatsapp-float { bottom: 84px; right: 16px; width: 50px; height: 50px; font-size: 1.5rem; }
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
    background-color: var(--theme-primary);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0 65px;
    text-align: center;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,22,14,0.58);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: 2.7rem; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.page-header .breadcrumb-nav a { color: rgba(255,255,255,0.75); }
.page-header .breadcrumb-nav span { color: var(--theme-accent); }

/* ---------- Forms ---------- */
.form-luxury .form-control,
.form-luxury .form-select {
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: var(--theme-font-body, sans-serif);
}
.form-luxury .form-control:focus,
.form-luxury .form-select:focus {
    border-color: var(--theme-accent);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    outline: none;
}

/* ---------- Prefers Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
    .scroll-progress-bar { display: none; }
    .typed-cursor { animation: none; }
}

/* ==========================================================================
   MOBILE RESPONSIVE — comprehensive small-screen fixes
   ========================================================================== */

/* Prevent any horizontal overflow on all viewports */
html, body { max-width: 100%; overflow-x: hidden; }

/* ----- Navbar toggler — gold outline to match brand ----- */
.navbar-toggler {
    border: 1.5px solid var(--theme-accent) !important;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    outline: none !important;
    box-shadow: none !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a84c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ----- Collapsed nav menu (< lg) ----- */
@media (max-width: 991.98px) {
    .navbar-luxury .navbar-collapse {
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.07);
        padding: 8px 0 16px;
        margin-top: 10px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    .navbar-luxury .nav-link {
        padding: 11px 20px !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        font-size: 0.85rem !important;
    }
    .navbar-luxury .nav-link::after { display: none; }
    .navbar-luxury .nav-link.active {
        color: var(--theme-accent) !important;
        background: rgba(201,168,76,0.06);
    }
    .navbar-luxury .navbar-book-btn {
        display: flex !important;
        margin: 14px 16px 0 !important;
        padding: 12px 20px !important;
        border-radius: var(--radius-sm) !important;
        width: calc(100% - 32px) !important;
        justify-content: center !important;
    }
}

/* ----- Navbar brand on tiny phones ----- */
@media (max-width: 380px) {
    .navbar-luxury .navbar-brand { font-size: 1.1rem; }
    .navbar-luxury .navbar-brand i { font-size: 1.2rem; }
}

/* ----- Page header (inner pages) — h1 scales down ----- */
@media (max-width: 767.98px) {
    .page-header { padding: 120px 0 50px; }
    .page-header h1 { font-size: 2rem; }
}
@media (max-width: 479.98px) {
    .page-header { padding: 108px 0 40px; }
    .page-header h1 { font-size: 1.6rem; }
    .page-header .breadcrumb-nav { font-size: 0.82rem; }
}

/* ----- Section title extra-small screens ----- */
@media (max-width: 479.98px) {
    .section-title { font-size: 1.65rem; }
    .section-padding { padding: 52px 0; }
}

/* ----- Hero CTA buttons stack on tiny phones ----- */
@media (max-width: 479.98px) {
    .hero-cta {
        flex-direction: column !important;
        align-items: flex-start;
    }
    .hero-cta .btn-luxury,
    .hero-cta .btn-luxury-outline {
        width: 100%;
        justify-content: center;
    }
    .hero-title { font-size: clamp(1.75rem, 7vw, 2.8rem); }
}

/* ----- Booking widget ----- */
@media (max-width: 479.98px) {
    .booking-widget { padding: 16px 14px 14px; margin-top: 20px; }
    .booking-widget label { font-size: 0.65rem; }
}

/* ----- Welcome section image badge ----- */
/* Move overflow:hidden from wrapper to allow badge to show outside the image */
.welcome-img-wrap { overflow: visible; }
.welcome-img-wrap img { border-radius: var(--radius-md); }

/* Tighten badge on small screens so it doesn't overflow viewport */
@media (max-width: 767.98px) {
    .welcome-img-badge {
        width: 88px;
        height: 88px;
        bottom: -12px;
        left: -10px;
        font-size: 0.8rem;
    }
    .welcome-img-badge strong { font-size: 1.5rem; }
}
@media (max-width: 575.98px) {
    .welcome-img-badge {
        width: 76px;
        height: 76px;
        bottom: 10px;
        left: 10px; /* inside image so it doesn't clip off viewport edge */
        font-size: 0.72rem;
    }
    .welcome-img-badge strong { font-size: 1.3rem; }
}

/* ----- Stat counters — prevent overflow in col-4 on narrow phones ----- */
@media (max-width: 479.98px) {
    .stat-counter .number { font-size: 2rem; }
    .stat-counter small { font-size: 0.68rem; }
}

/* ----- Feature cards — reduce padding in 2-col mobile layout ----- */
@media (max-width: 575.98px) {
    .feature-card { padding: 26px 14px 22px; }
    .feature-icon { width: 58px; height: 58px; font-size: 1.5rem; margin-bottom: 14px; }
    .feature-card h5 { font-size: 0.88rem; margin-bottom: 5px; }
}

/* ----- Room cards ----- */
@media (max-width: 479.98px) {
    .room-card-img { height: 210px; }
    .room-card-price { font-size: 0.76rem; padding: 4px 10px; }
    .room-card-body { padding: 18px 18px 20px; }
}

/* ----- Bar meal-time row on tiny screens ----- */
@media (max-width: 359.98px) {
    .bar-section .col-4 small { font-size: 0.68rem !important; }
}

@media (max-width: 767.98px) {
    .team-card {
        grid-template-columns: 1fr;
    }
    .team-photo-wrap,
    .team-photo-wrap img,
    .team-photo-placeholder {
        min-height: 280px;
    }
    .team-card-body {
        padding: 24px 22px;
    }
}

/* ----- Menu category tabs — horizontal scroll on narrow screens ----- */
@media (max-width: 575.98px) {
    .menu-cat-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .menu-cat-tabs::-webkit-scrollbar { display: none; }
    .menu-tab { white-space: nowrap; flex-shrink: 0; }
}

/* ----- Gallery thumbnails — shorter on phones ----- */
@media (max-width: 575.98px) {
    .gallery-thumb { height: 170px; }
}
@media (max-width: 359.98px) {
    .gallery-thumb { height: 140px; }
}

/* ----- Attraction cards — reduce fixed height on mobile ----- */
@media (max-width: 767.98px) {
    .attraction-card { height: 200px !important; }
}

/* ----- Testimonial cards ----- */
@media (max-width: 575.98px) {
    .testimonial-card { padding: 24px 20px 22px; }
}

/* ----- Newsletter strip ----- */
@media (max-width: 767.98px) {
    .newsletter-strip { padding: 26px 0; }
    .newsletter-strip h4 { font-size: 1.2rem; }
}
@media (max-width: 575.98px) {
    .newsletter-form { max-width: 100%; }
}

/* ----- Footer ----- */
@media (max-width: 575.98px) {
    .footer-luxury { padding-top: 44px; }
    .footer-bottom {
        flex-direction: column !important;
        text-align: center;
        gap: 4px !important;
        font-size: 0.74rem;
    }
}

/* ----- Buttons — slightly tighter padding on small phones ----- */
@media (max-width: 479.98px) {
    .btn-luxury,
    .btn-luxury-outline {
        padding: 12px 24px;
        font-size: 0.78rem;
    }
}

/* ----- Mobile book bar — adjust button spacing ----- */
@media (max-width: 360px) {
    .mobile-book-bar .btn-wa,
    .mobile-book-bar .btn-book { font-size: 0.72rem; padding: 10px 6px; }
}

/* ---------- Print ---------- */
@media print {
    .navbar-luxury, .whatsapp-float, .mobile-book-bar,
    .scroll-progress-bar, .hero-scroll-indicator { display: none !important; }
    body { padding: 0; }
    .hero-section { height: auto; min-height: auto; padding: 40px 0; }
}

.attraction-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
