/* =========================================
   BOONDOCKS ROYALE - PREMIUM STYLESHEET
   ========================================= */

/* 1. VARIABLES & FONTS */
:root {
    --deep-blue: #0A2540;
    --blue-light: #153b66;
    --orange: #F26A21;
    --orange-glow: rgba(242, 106, 33, 0.4);
    --light-bg: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(10, 37, 64, 0.08);
    --shadow-hover: 0 20px 40px rgba(10, 37, 64, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif; /* Elegant serif for headings */
    color: var(--deep-blue);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-orange { color: var(--orange); }

/* 2. GLASSMORPHISM NAVIGATION */
.glass-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo h1 {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
}

nav ul { display: flex; gap: 30px; align-items: center; }

nav ul li a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav ul li a:hover, nav ul li a.active { color: var(--orange); }

.btn-nav {
    background: var(--orange);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--white) !important;
    box-shadow: 0 4px 15px var(--orange-glow);
}

.btn-nav:hover { background: #d95a15; transform: translateY(-2px); }

/* 3. IMMERSIVE HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-light) 100%);
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

/* Glowing background orbs */
.glow-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}
.shape-1 { width: 400px; height: 400px; background: var(--orange); opacity: 0.2; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: #4facfe; opacity: 0.15; bottom: -50px; left: -50px; }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-text h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns { display: flex; gap: 15px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 20px var(--orange-glow);
}
.btn-primary:hover { background: #d95a15; transform: translateY(-3px); box-shadow: 0 12px 25px var(--orange-glow); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: var(--white); color: var(--deep-blue); border-color: var(--white); }

.btn-full { width: 100%; text-align: center; }

/* Floating Booking Widget */
.booking-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.booking-widget h3 { color: var(--white); margin-bottom: 20px; font-family: 'Montserrat', sans-serif; font-size: 1.2rem; }

.input-group { margin-bottom: 15px; }
.input-group label { display: block; color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-bottom: 5px; font-weight: 600; }
.input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
}
.input-group input:focus, .input-group select:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.15); }

/* 4. FLOATING FEATURES SECTION */
.features-section { margin-top: -60px; position: relative; z-index: 10; padding-bottom: 80px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.feature-card.highlight {
    background: var(--deep-blue);
    border: none;
}
.feature-card.highlight h4, .feature-card.highlight p { color: var(--white); }
.feature-card.highlight .icon-box { background: var(--orange); color: var(--white); }

.icon-box {
    width: 70px; height: 70px;
    background: var(--light-bg);
    color: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-card h4 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* 5. WELCOME SECTION */
.welcome-section { padding: 80px 0; background: var(--white); }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.img-placeholder {
    width: 100%; height: 450px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex; align-items: center; justify-content: center;
    color: #888; font-weight: 600; font-size: 1.2rem;
}

.floating-badge {
    position: absolute;
    bottom: -30px; right: -30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    display: flex; align-items: center; gap: 15px;
}

.big-number { font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; }
.badge-text { font-size: 0.9rem; font-weight: 600; color: var(--deep-blue); line-height: 1.2; }

.section-label {
    display: block; color: var(--orange); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 10px;
}

.welcome-content h3 { font-size: 2.5rem; margin-bottom: 20px; }
.welcome-content p { color: var(--text-muted); margin-bottom: 25px; font-size: 1.05rem; }

.check-list { margin-bottom: 30px; }
.check-list li {
    padding: 8px 0; color: var(--text-dark); font-weight: 600;
    display: flex; align-items: center; gap: 10px;
}
.check-list li::before { content: '✓'; color: var(--orange); font-weight: 800; font-size: 1.2rem; }

/* 6. FOOTER */
footer { background: var(--deep-blue); color: var(--white); padding: 60px 0 20px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 1.5rem; margin-bottom: 15px; }
.footer-col h4 { color: var(--orange); font-family: 'Montserrat', sans-serif; font-size: 1rem; margin-bottom: 15px; text-transform: uppercase; }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 10px; display: block; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* 7. MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .split-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .floating-badge { right: 10px; bottom: -20px; }
}

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .hero-text h2 { font-size: 2.5rem; }
    .hero { padding-top: 160px; }
}

/* =========================================
   PREMIUM INNER PAGES STYLING
   ========================================= */

/* 1. Premium Page Hero (Shorter than homepage) */
.page-hero-premium {
    position: relative;
    padding: 160px 20px 100px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-light) 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero-premium .glow-shape { opacity: 0.15; }

.page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.page-hero-premium h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.page-hero-premium p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

/* 2. Premium Room Cards */
.rooms-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card-premium {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.room-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange);
}

.room-img-wrapper {
    height: 220px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.room-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card-premium:hover .room-img-wrapper img { transform: scale(1.1); }

.room-badge-premium {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }

.room-info h3 { font-size: 1.5rem; margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.room-info .room-nums { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; font-style: italic; }

.room-features { list-style: none; padding: 0; margin: 0 0 25px 0; flex-grow: 1; }
.room-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex; align-items: center; gap: 10px;
}
.room-features li::before { content: '✓'; color: var(--orange); font-weight: 800; }
.room-features li:last-child { border-bottom: none; }

.room-price-box {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 12px;
    display: flex; align-items: baseline; gap: 5px;
    margin-bottom: 20px;
    border-left: 4px solid var(--orange);
}
.room-price-box .cur { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.room-price-box .amt { font-size: 1.8rem; color: var(--deep-blue); font-weight: 800; font-family: 'Montserrat', sans-serif; }
.room-price-box .nt { font-size: 0.9rem; color: var(--text-muted); }

/* 3. Premium Menu Cards (Dining) */
.menu-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.menu-card-premium {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--orange);
    transition: all 0.4s ease;
}

.menu-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.menu-card-premium h4 { font-size: 1.2rem; margin-bottom: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--deep-blue); }
.menu-card-premium p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* 4. Section Titles for Inner Pages */
.inner-section-title { text-align: center; margin-bottom: 50px; }
.inner-section-title .section-label { margin-bottom: 10px; }
.inner-section-title h3 { font-size: 2.5rem; margin-bottom: 15px; }
.inner-section-title .center-divider { width: 60px; height: 3px; background: var(--orange); margin: 0 auto; border-radius: 2px; }

/* 5. Floor Headers */
.floor-header-premium { text-align: center; margin: 60px 0 40px; }
.floor-badge-premium {
    display: inline-block;
    background: var(--deep-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.floor-badge-premium.floor-2 { background: var(--orange); }
.floor-header-premium h3 { font-size: 2rem; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .page-hero-premium h2 { font-size: 2.5rem; }
    .page-hero-premium { padding: 140px 20px 80px; }
    .rooms-grid-premium, .menu-grid-premium { grid-template-columns: 1fr; }
}

/* =========================================
   PREMIUM DINING PAGE ADDITIONS
   ========================================= */

.menu-section-premium { margin-bottom: 80px; }

/* Featured "Chef's Special" Card */
.menu-card-premium.featured {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-light) 100%);
    border-left-color: var(--orange);
    position: relative;
    overflow: hidden;
}

.menu-card-premium.featured h4, 
.menu-card-premium.featured p { color: var(--white); }

.chef-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Proteins Section */
.proteins-wrapper-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.protein-box-premium {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid #eee;
}

.protein-box-premium h4 {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.protein-grid-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.protein-tag-premium {
    background: var(--light-bg);
    color: var(--deep-blue);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: default;
}

.protein-tag-premium:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 106, 33, 0.3);
}

/* CTA Section Styling */
.cta-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-light) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h3 { color: var(--white); font-size: 2.2rem; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .menu-section-premium { margin-bottom: 50px; }
    .proteins-wrapper-premium { grid-template-columns: 1fr; }
    .protein-box-premium { padding: 30px 20px; }
    .cta-section h3 { font-size: 1.8rem; }
}

/* =========================================
   BOOKING PAGE STYLING
   ========================================= */
.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.15);
    margin-bottom: 50px;
}

.booking-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-form .form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form label {
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-large {
    padding: 16px 50px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Alert Messages */
.alert {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Booking Info Cards */
.booking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h4 {
    color: var(--deep-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
    }
}

/* Logo Image Styling */
.site-logo {
    height: 55px; /* Adjust this number if your logo is too big/small */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Fix for Floating Badge Visibility */
.welcome-image {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-badge .big-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.floating-badge .badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-blue);
    line-height: 1.2;
}

/* Make sure image frame doesn't hide the badge */
.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: visible; /* Changed from hidden to visible */
    box-shadow: var(--shadow-hover);
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .floating-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 20px;
    }
    
    .floating-badge .big-number {
        font-size: 2rem;
    }
    
    .floating-badge .badge-text {
        font-size: 0.8rem;
    }
}

/* Secret Staff Link Styling */
.staff-link {
    color: rgba(255,255,255,0.15); /* Very faint, almost invisible */
    font-size: 0.75rem;
    margin-left: 10px;
    transition: color 0.3s ease;
}
.staff-link:hover {
    color: rgba(255,255,255,0.8); /* Becomes visible when you hover over it */
}