/*
Theme Name: Astra-child
Author: Catch Themes
Description: Your description goes here
Version: 1.0
Template: astra

This is the child theme for Astra theme, generated with Generate Child Theme plugin by catchthemes.
*/

/* -------------------------------------------------------------
 * 1. DESIGN TOKENS & CUSTOM VARIABLES
 * ------------------------------------------------------------- */
:root {
    /* Color Palette */
    --bg-primary: #FAF9F6;      /* Premium Warm Alabaster / Ivory */
    --bg-secondary: #F5F2EB;    /* Warm Linen / Cream */
    --bg-dark: #1A1615;         /* Deep Warm Charcoal Stone */
    --bg-dark-card: #25201E;    /* Lighter Charcoal for cards */
    --primary: #800020;         /* The Redstone Burgundy Accent */
    --primary-light: #A62B46;   /* Lighter Crimson */
    --accent: #C5A880;          /* Champagne Luxury Gold */
    --accent-dark: #A4855C;     /* Muted Gold */
    
    /* Text Colors */
    --text-dark: #2C2623;       /* Premium Dark Slate */
    --text-muted: #7E736E;      /* Warm Muted Gray */
    --text-light: #FAF9F6;      /* Off-white */
    
    /* System Colors */
    --border-color: rgba(197, 168, 128, 0.18);
    --border-dark: rgba(197, 168, 128, 0.08);
    --shadow-sm: 0 4px 6px -1px rgba(26, 22, 21, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(26, 22, 21, 0.08), 0 4px 6px -2px rgba(26, 22, 21, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(26, 22, 21, 0.1), 0 10px 10px -5px rgba(26, 22, 21, 0.04);
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------
 * 2. SCOPED RESET & STYLING WRAPPER
 * ------------------------------------------------------------- */
.redstone-theme {
    background-color: var(--bg-primary);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.redstone-theme * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.redstone-theme ul, 
.redstone-theme ol {
    list-style: none;
}

.redstone-theme a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.redstone-theme button, 
.redstone-theme input, 
.redstone-theme select, 
.redstone-theme textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}
.hero-title.animate-slide-up {
  color: #fff;
}
.header-logo {
  width: 221px !important;
}
.redstone-theme img {
    max-width: 100%;
    height: auto;
    display: block;
    
}
.main-header #navMenu li a {
  color: #fff;
}

/* Typography elements */
.redstone-theme h1, 
.redstone-theme h2, 
.redstone-theme h3, 
.redstone-theme h4, 
.redstone-theme h5, 
.redstone-theme h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    /*color: var(--text-dark);*/
}

/* Helper layouts */
.redstone-theme .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.redstone-theme .grid {
    display: grid;
}
.redstone-theme .grid-2 { grid-template-columns: repeat(2, 1fr); }
.redstone-theme .grid-3 { grid-template-columns: repeat(3, 1fr); }
.redstone-theme .grid-4 { grid-template-columns: repeat(4, 1fr); }
.redstone-theme .gap-10 { gap: 10px; }
.redstone-theme .gap-15 { gap: 15px; }
.redstone-theme .gap-20 { gap: 20px; }
.redstone-theme .gap-30 { gap: 30px; }
.redstone-theme .gap-40 { gap: 40px; }
.redstone-theme .gap-60 { gap: 60px; }
.redstone-theme .align-center { align-items: center; }
.redstone-theme .text-center { text-align: center; }
.redstone-theme .text-light { color: var(--text-light); }
.redstone-theme .max-w-600 { max-width: 600px; }
.redstone-theme .mx-auto { margin-left: auto; margin-right: auto; }
.redstone-theme .py-120 { padding-top: 120px; padding-bottom: 120px; }
.redstone-theme .radius-sm { border-radius: 4px; }
.redstone-theme .radius-md { border-radius: 8px; }
.redstone-theme .radius-lg { border-radius: 16px; }
.redstone-theme .shadow-sm { box-shadow: var(--shadow-sm); }
.redstone-theme .shadow-md { box-shadow: var(--shadow-md); }
.redstone-theme .shadow-lg { box-shadow: var(--shadow-lg); }
.redstone-theme .w-full { width: 100%; }
.redstone-theme .mt-15 { margin-top: 15px; }
.redstone-theme .mt-20 { margin-top: 20px; }
.redstone-theme .mt-30 { margin-top: 30px; }
.redstone-theme .bg-secondary { background-color: var(--bg-secondary); }
.redstone-theme .opacity-80 { opacity: 0.8; }
.redstone-theme .hidden { display: none !important; }

/* -------------------------------------------------------------
 * 3. BUTTONS & INTERACTIVE ELEMENTS
 * ------------------------------------------------------------- */
.redstone-theme .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.redstone-theme .btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border: 1px solid var(--primary);
}

.redstone-theme .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-light);
    transition: var(--transition-smooth);
    z-index: -1;
}

.redstone-theme .btn-primary:hover::before {
    width: 100%;
}

.redstone-theme .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.35);
}

.redstone-theme .btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(250, 249, 246, 0.4);
}

.redstone-theme .btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary);
    border-color: var(--text-light);
    box-shadow: 0 8px 20px rgba(250, 249, 246, 0.15);
}

.redstone-theme .btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

/* -------------------------------------------------------------
 * 4. PRELOADER
 * ------------------------------------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FAF9F6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    max-width: 300px;
    width: 100%;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite ease-in-out;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(128, 0, 32, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* -------------------------------------------------------------
 * 5. GLASSMORPHIC HEADER / NAV
 * ------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(250, 249, 246, 0.08);
}

.main-header.scrolled {
    background-color: rgba(26, 22, 21, 0.88);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 38px;
    width: auto;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.nav-menu ul,
.nav-menu .nav-menu-list {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-menu ul li.current-menu-item > a::after,
.nav-menu .nav-menu-list li.current-menu-item > a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* -------------------------------------------------------------
 * 6. HERO SECTION
 * ------------------------------------------------------------- */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.03);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.hero-content {
    text-align: center;
    z-index: 10;
    margin-top: 50px;
}

.hero-badge {
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-stats {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(26, 22, 21, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 8px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 0.5px;
    opacity: 0.8;
    text-transform: uppercase;
}

.stat-divider {
    height: 35px;
    width: 1px;
    background-color: rgba(250, 249, 246, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    z-index: 10;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.7;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(250, 249, 246, 0.5);
    border-radius: 10px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* Hero Animations */
.animate-fade-in { animation: fadeIn 1s ease forwards; }
.animate-slide-up { animation: slideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.animate-slide-up-delay { opacity: 0; animation: slideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards; }
.animate-slide-up-delay-2 { opacity: 0; animation: slideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* -------------------------------------------------------------
 * 7. SECTION BASES
 * ------------------------------------------------------------- */
.section-badge {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.badge-accent {
    color: var(--accent);
}

.section-title {
    font-size: 40px;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: -10px;
    margin-bottom: 50px;
}

/* -------------------------------------------------------------
 * 8. ABOUT US SECTION
 * ------------------------------------------------------------- */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(128, 0, 32, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-icon::before {
    font-size: 20px;
    font-weight: 900;
}

.feature-text h3 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
}

/* About image stack */
.image-stack {
    position: relative;
    width: 100%;
    height: 450px;
}

.image-stack-item {
    position: absolute;
    overflow: hidden;
}

.image-stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-stack-item img:hover {
    transform: scale(1.05);
}

.image-stack-item-main {
    width: 75%;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.image-stack-item-sub {
    width: 60%;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 8px solid var(--bg-primary);
}

.image-stack-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 20px 30px;
    border-radius: 8px;
    z-index: 4;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
}

.badge-text {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* -------------------------------------------------------------
 * 9. ROOMS SECTION & ROOM CARDS
 * ------------------------------------------------------------- */
.room-filters {
    margin-bottom: 45px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.room-card {
    background-color: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.room-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-image {
    transform: scale(1.08);
}

.room-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.room-content {
    padding: 25px;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.room-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.room-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.room-price .price-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.room-price .price-period {
    font-size: 12px;
    color: var(--text-muted);
}

.room-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.room-card:hover .room-link {
    color: var(--primary);
}

/* -------------------------------------------------------------
 * 10. LUXURY BATHROOMS CAROUSEL
 * ------------------------------------------------------------- */
.bathroom-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.bathroom-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.bathroom-slide.active {
    opacity: 1;
}

.bathroom-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bathroom-slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(26, 22, 21, 0.8);
    backdrop-filter: blur(8px);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
    z-index: 10;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    background-color: rgba(26, 22, 21, 0.7);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(250, 249, 246, 0.1);
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.bathroom-features-list {
    margin-top: 30px;
}

.bathroom-features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-light);
    opacity: 0.85;
}

.bathroom-features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

/* -------------------------------------------------------------
 * 11. RESTAURANT INTERACTIVE MENU
 * ------------------------------------------------------------- */
.interactive-menu-container {
    margin-top: 35px;
}

.menu-tabs {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.menu-tab-btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
}

.menu-tab-btn.active,
.menu-tab-btn:hover {
    color: var(--primary);
}

.menu-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.menu-category {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-category.active {
    display: block;
    opacity: 1;
}

.menu-item {
    /* margin-bottom: 25px; */
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    position: relative;
}

.menu-item-header::after {
    content: '';
    flex-grow: 1;
    border-bottom: 1px dotted var(--border-color);
    order: 2;
    margin: 0 10px;
}

.menu-item-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    order: 1;
}

.menu-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    order: 3;
}

.menu-item-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    max-width: 90%;
}

.restaurant-image {
    position: relative;
}

.restaurant-overlay-card {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background-color: var(--bg-primary);
    border: 1px solid var(--accent);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
}

.time-tag {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.restaurant-overlay-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.phone-link {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}

/* -------------------------------------------------------------
 * 12. BANQUETS SECTION
 * ------------------------------------------------------------- */
.banquet-image {
    position: relative;
}

.banquet-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.badge-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.badge-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.event-services-grid {
    margin-top: 35px;
}

.event-service-card {
    background-color: var(--bg-primary);
    border-radius: 6px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.event-service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.event-service-card h5 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.event-service-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* -------------------------------------------------------------
 * 13. GALLERY GRID
 * ------------------------------------------------------------- */
.gallery-grid {
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 0, 32, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.icon-zoom {
    font-size: 24px;
    color: var(--text-light);
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.gallery-item:hover .icon-zoom {
    transform: scale(1);
}

/* -------------------------------------------------------------
 * 14. TESTIMONIALS SLIDER
 * ------------------------------------------------------------- */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.rating-stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}

.author-title {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dots .dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Google Reviews Badge */
.google-reviews-badge {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.google-badge-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px 36px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.google-badge-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(66, 133, 244, 0.3);
}

.google-badge-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-icon-svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.google-rating-info {
    text-align: left;
}

.google-rating-val {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.google-rating-info .rating-stars {
    color: #fbbc05;
    font-size: 16px;
    margin: 4px 0;
}

.google-reviews-count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.google-reviews-btn {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #4285f4, #357ae8);
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    transition: var(--transition-fast);
}

.google-reviews-btn:hover {
    background: linear-gradient(135deg, #357ae8, #2a6dd4);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .google-badge-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px;
        width: 100%;
        max-width: 400px;
    }
    
    .google-badge-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .google-rating-info {
        text-align: center;
    }
    
    .google-reviews-btn {
        width: 100%;
        justify-content: center;
    }
}

/* -------------------------------------------------------------
 * 15. CONTACT US & FORM INPUTS
 * ------------------------------------------------------------- */
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 35px;
}

.info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-text h5 {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
}

.booking-form .form-group,
.contact-form .form-group {
    margin-bottom: 20px;
}

.booking-form .form-row,
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form label,
.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition-fast);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
}

.form-success-alert {
    background-color: rgba(197, 168, 128, 0.08);
    border: 1px solid var(--accent);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.form-success-alert h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* -------------------------------------------------------------
 * 16. MODAL LAYOUTS (ROOM DETAILS / BOOKING WIZARD)
 * ------------------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 22, 21, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-primary);
    border: 1px solid var(--accent);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
}

/* Lightbox zoom modal */
.lightbox-modal {
    background-color: rgba(26, 22, 21, 0.9);
}

.lightbox-content-wrapper {
    max-width: 85%;
    max-height: 85%;
}

.lightbox-content-wrapper img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

/* Room details inner */
.room-modal-gallery {
    display: flex;
    flex-direction: column;
}

.room-modal-thumb-grid img {
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.room-modal-thumb-grid img:hover,
.room-modal-thumb-grid img.active {
    border-color: var(--primary);
    opacity: 1;
}

.modal-room-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    display: inline-block;
}

.modal-room-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.modal-room-price {
    margin-bottom: 20px;
}

.modal-room-price .price-val {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.modal-room-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.modal-room-features-box h5 {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-room-features {
    padding-left: 20px;
}

.modal-room-features li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    list-style-type: square;
}

/* Booking wizard details */
.booking-wizard-header {
    margin-bottom: 20px;
}

.booking-logo {
    max-width: 45px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.booking-wizard-header h3 {
    font-size: 24px;
}

.booking-wizard-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.booking-summary-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 6px;
    margin-top: 25px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.summary-line.total {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.booking-success-box {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.luxury-ticket {
    background-color: #FFFDF9;
    border: 1px dashed var(--accent);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    max-width: 400px;
    margin: 20px auto 0 auto;
    box-shadow: var(--shadow-sm);
}

.luxury-ticket h5 {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: var(--primary);
}

.ticket-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

/* -------------------------------------------------------------
 * 17. MAIN FOOTER
 * ------------------------------------------------------------- */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 249, 246, 0.05);
}

.footer-about .footer-logo {
    height: 32px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.footer-about p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.social-icon:hover {
    color: var(--text-light);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 12px;
    font-size: 13px;
    opacity: 0.75;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    background-color: rgba(250, 249, 246, 0.05);
    border: 1px solid rgba(250, 249, 246, 0.1);
    padding: 10px 15px;
    color: var(--text-light);
    font-size: 13px;
    border-radius: 4px 0 0 4px;
    width: 100%;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--primary-light);
}

.footer-bottom {
    padding: 30px 0;
    font-size: 12px;
    opacity: 0.5;
}

/* -------------------------------------------------------------
 * 18. INTERSECTION OBSERVABLE TRANSITIONS
 * ------------------------------------------------------------- */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 { transition-delay: 0.2s; }
.delay-400 { transition-delay: 0.4s; }

/* -------------------------------------------------------------
 * 19. RESPONSIVE MEDIA QUERIES
 * ------------------------------------------------------------- */
@media (max-width: 992px) {
    .redstone-theme .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .redstone-theme .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 18px; }
    .py-120 { padding-top: 80px; padding-bottom: 80px; }
    .section-title { font-size: 32px; }
    .about-images { margin-top: 40px; }
    .image-stack { height: 380px; }
    .image-stack-item-main { height: 320px; }
    .image-stack-item-sub { height: 230px; }
    .testimonials-container { padding: 40px; }
}

@media (max-width: 768px) {
    .redstone-theme .grid-2,
    .redstone-theme .grid-3,
    .redstone-theme .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .gap-60 { gap: 30px; }
    
    .main-header {
        background-color: #1A1615;
        padding: 15px 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background-color: #1A1615;
        z-index: 999;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(250, 249, 246, 0.05);
        padding: 40px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul,
    .nav-menu .nav-menu-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
    }
    
    .hero-title { font-size: 38px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 30px; }
    .hero-ctas { flex-direction: column; gap: 12px; }
    .hero-stats { display: none; }
    
    .about-images { display: none; }
    
    .bathroom-carousel-wrapper { height: 300px; }
    .restaurant-image { margin-top: 30px; }
    .restaurant-overlay-card { position: static; margin-top: 20px; max-width: 100%; }
    
    .booking-form .form-row,
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .stack-tablet {
        display: flex;
        flex-direction: column;
    }
    
    .order-2-mobile {
        order: 2;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .section-title { font-size: 26px; }
    .preloader-logo { max-width: 150px; }
}

/* Footer Map Section Styles */
.footer-map-section {
    width: 100%;
    height: 450px;
    display: block;
    line-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) contrast(95%) grayscale(20%);
    opacity: 0.85;
    transition: var(--transition-normal);
}

.footer-map-section iframe:hover {
    opacity: 1;
    filter: invert(90%) hue-rotate(180deg) contrast(95%);
}

/* Redstone Dynamic Subscribe Form Layout Styling */
form#dynamicForm_subscribe-form {
    display: flex !important;
    margin-top: 15px !important;
    align-items: stretch !important;
}

form#dynamicForm_subscribe-form label {
    display: none !important;
}

form#dynamicForm_subscribe-form .form-group {
    flex-grow: 1 !important;
    margin-bottom: 0 !important;
}

form#dynamicForm_subscribe-form input {
    background-color: rgba(250, 249, 246, 0.05) !important;
    border: 1px solid rgba(250, 249, 246, 0.1) !important;
    padding: 10px 15px !important;
    color: var(--text-light) !important;
    font-size: 13px !important;
    border-radius: 4px 0 0 4px !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

form#dynamicForm_subscribe-form button[type="submit"] {
    background-color: var(--primary) !important;
    color: var(--text-light) !important;
    padding: 10px 20px !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    border-radius: 0 4px 4px 0 !important;
    cursor: pointer !important;
    transition: var(--transition-fast) !important;
    margin-top: 0 !important;
    white-space: nowrap !important;
    border: none !important;
    width: auto !important;
}

form#dynamicForm_subscribe-form button[type="submit"]:hover {
    background-color: var(--primary-light) !important;
}