/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
   :root {
    /* Colors - Warm "Desi" Theme combined with elegance */
    --clr-primary: #D4AF37; /* Gold/Saffron */
    --clr-primary-dark: #B8860B;
    --clr-secondary: #8B0000; /* Deep Red/Crimson */
    
    --clr-text-main: #2C3539; /* Gunmetal/Charcoal */
    --clr-text-light: #6C757D;
    
    --clr-bg-body: #FAFAFA; /* Off-white/Cream */
    --clr-bg-light: #F0EDE5; /* Slightly darker cream for sections */
    --clr-white: #FFFFFF;
    --clr-black: #111111;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-body);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* Typography base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-main);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

.section-subtitle {
    color: var(--clr-primary);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

p {
    color: var(--clr-text-light);
    margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-xxl) 0;
}

.bg-light {
    background-color: var(--clr-bg-light);
}

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

.rounded-img {
    border-radius: 12px;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-full {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-links a {
    color: var(--clr-text-main);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--clr-primary);
}

.navbar.scrolled .nav-links a:hover::after {
    width: 100%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-dark));
}

.navbar.scrolled .nav-links a.active {
    color: var(--clr-secondary);
    font-weight: 700;
}

.navbar.scrolled .nav-links a.active::after {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-secondary), #8B0000);
}

.navbar.scrolled .nav-btn {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.navbar.scrolled .logo-subtext {
    color: var(--clr-secondary);
}

.navbar.scrolled .logo-text {
    color: var(--clr-text-main);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--clr-text-main);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--clr-primary);
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-normal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-dark));
    transition: var(--transition-normal);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--clr-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    text-align: center;
    color: var(--clr-white);
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amenity i {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

.amenity span {
    font-weight: 500;
}

.about-image-collage {
    position: relative;
    height: 500px;
}

.img-frame {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.img-frame-1 {
    width: 70%;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-frame-2 {
    width: 60%;
    height: 300px;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 8px solid var(--clr-bg-body);
}

/* ==========================================================================
   Rooms Section (Cards Grid)
   ========================================================================== */
.section-header {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--clr-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    height: 250px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    color: var(--clr-secondary);
    font-size: 1.2rem;
}

.price-tag span {
    font-size: 0.8rem;
    color: var(--clr-text-light);
    font-weight: 400;
}

.card-content {
    padding: 2rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text-light);
    font-size: 0.9rem;
}

.room-features i {
    color: var(--clr-primary);
}

/* ==========================================================================
   Dining Section
   ========================================================================== */
.dining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dining-image img {
    width: 100%;
    height: auto;
}

.menu-highlights {
    margin-top: 2rem;
}

.menu-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: 1rem;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item h5 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--clr-secondary);
}

.menu-price {
    font-weight: 600;
    color: var(--clr-primary-dark);
}

.menu-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-black);
    color: var(--clr-white);
    padding-top: var(--spacing-xl);
}

.footer-top {
    padding-bottom: var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-desc {
    margin-top: 1rem;
    color: rgba(255,255,255,0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--clr-white);
}

.social-links a:hover {
    background-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--clr-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--clr-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255,255,255,0.7);
}

.contact-info i {
    color: var(--clr-primary);
    margin-top: 4px;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid, .dining-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-collage {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clr-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        text-align: center;
    }
    
    .navbar.scrolled .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .navbar.scrolled .nav-links a {
        color: var(--clr-text-main) !important;
    }

    .navbar.scrolled .nav-links a.active {
        color: var(--clr-secondary) !important;
        font-weight: 700 !important;
    }

    .navbar.scrolled .nav-links a:hover {
        color: var(--clr-primary) !important;
    }
    
    .nav-links a {
        color: var(--clr-text-main) !important;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .nav-btn {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   Page Header Styling
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.85) 0%, rgba(184, 134, 11, 0.85) 100%), 
                url('http://localhost:8000/hero_hotel_1779547357970.png') center/cover no-repeat;
    padding: 8rem 2rem 6rem 2rem;
    text-align: center;
    color: var(--clr-white);
    margin-top: 70px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.page-header-content h1 {
    color: var(--clr-white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Legal Content Styling
   ========================================================================== */
.legal-content {
    padding: 4rem 2rem;
    background-color: var(--clr-bg-body);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h2 {
    color: var(--clr-secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--clr-primary);
    padding-bottom: 0.5rem;
    font-size: 1.8rem;
}

.legal-document h3 {
    color: var(--clr-primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-document p {
    margin-bottom: 1.2rem;
    color: var(--clr-text-main);
    line-height: 1.8;
}

.legal-document ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: var(--clr-text-main);
}

.legal-document li:before {
    content: "✓ ";
    color: var(--clr-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.last-updated {
    background-color: var(--clr-bg-light);
    padding: 1rem;
    border-left: 4px solid var(--clr-primary);
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--clr-text-light);
}

.legal-document a {
    color: var(--clr-primary);
    text-decoration: underline;
}

.legal-document a:hover {
    color: var(--clr-primary-dark);
}

/* ==========================================================================
   About Page Styling
   ========================================================================== */
.about-full {
    background-color: var(--clr-bg-body);
}

.about-intro,
.about-values,
.about-features,
.about-team {
    margin-bottom: 4rem;
}

.about-intro h2,
.about-values h2,
.about-features h2,
.about-team h2 {
    color: var(--clr-secondary);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--clr-primary);
    padding-bottom: 0.5rem;
}

.about-intro p,
.about-team p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--clr-text-main);
    margin-bottom: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background-color: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--clr-secondary);
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.features-list {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    background-color: var(--clr-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--clr-white);
}

.feature-text h4 {
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--clr-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   FAQs Section Styling
   ========================================================================== */
.faqs-section {
    background-color: var(--clr-bg-body);
}

.faq-category {
    margin-bottom: 3.5rem;
}

.faq-category h2 {
    color: var(--clr-secondary);
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--clr-primary);
    padding-bottom: 0.8rem;
    font-size: 1.8rem;
}

.faq-item {
    background-color: var(--clr-white);
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--clr-bg-light);
    color: var(--clr-text-main);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question:hover {
    background-color: #E8E3D8;
}

.faq-question i {
    color: var(--clr-primary);
    transition: transform var(--transition-normal);
}

.faq-item.open .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 1.5rem;
    border-top: 2px solid var(--clr-bg-light);
    display: none;
    background-color: var(--clr-white);
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--clr-text-main);
    line-height: 1.7;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    color: var(--clr-text-main);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.faq-answer li:before {
    content: "→ ";
    color: var(--clr-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.faq-answer a {
    color: var(--clr-primary);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--clr-primary-dark);
}

.faq-cta {
    text-align: center;
    background-color: var(--clr-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.faq-cta h2 {
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   CTA Section Styling
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--clr-secondary) 0%, #A50000 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--clr-white);
    margin: 2rem 0;
}

.cta-section h2 {
    color: var(--clr-white);
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive FAQs */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 1rem;
    }

    .legal-document h2 {
        font-size: 1.5rem;
    }

    .legal-document h3 {
        font-size: 1rem;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
    }
}
