/* style.css - Responsive Fixes Applied & Styles Restored */
:root {
    --primary-color: #0a2540;
    --secondary-color: #d4af37;
    --accent-color: #8b7355;
    --light-color: #f8f9fa;
    --dark-color: #121212;
    --gray-light: #e9ecef;
    --gray-medium: #6c757d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --navbar-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg-primary {
    background-color: var(--secondary-color) !important;
}

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
}

/* Fluid Typography */
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header & Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: sticky;
    top: 0;
    z-index: 1000; 
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    color: var(--primary-color) !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    left: 1.2rem;
    bottom: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: calc(100% - 2.4rem);
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 0px;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.6rem 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #082235;
    border-color: #082235;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 37, 64, 0.2);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000;
    padding: 0.6rem 1.8rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #c19b1e;
    border-color: #c19b1e;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    padding-top: var(--navbar-height); 
    min-height: calc(100vh - var(--navbar-height));
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden; 
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    color: white;
    max-width: 700px;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-content h1 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Booking Widget */
.booking-widget {
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.booking-widget h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

section:not(.hero-section):first-of-type {
    color: #eaeaea;
}

section:not(.hero-section):first-of-type p{
    /* color: #fff !important; */
    z-index: 2;
    position: relative;
}
section:not(.hero-section)::not(.error-section):first-of-type h1{
    color: #fff !important;
}

section:not(.hero-section):first-of-type nav{
    position: relative;
    z-index: 2;
}

section:not(.hero-section):first-of-type .breadcrumb-item a{
    color: #fff !important;
}



.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-size: 0.95rem;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Section Styling */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 15px;
}

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Room Cards */
.room-card {
    border: none;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.room-img {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img img {
    transform: scale(1.05);
}

.room-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-price {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.room-price span {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: normal;
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.room-amenities li {
    background: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    height: auto; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Amenities Icons */
.amenity-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: #000;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Floating Buttons */
.whatsapp-btn,
.call-btn {
    position: fixed;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn {
    bottom: 30px;
    background: #25D366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.call-btn {
    bottom: 100px;
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(10, 37, 64, 0.3);
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Sticky Booking Bar */
.sticky-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-booking.show {
    transform: translateY(0);
}

/* =========================================
   RESTORED COMPONENT STYLES
   ========================================= */

/* Room Details Page Specifics */
.main-room-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.main-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-thumbnails {
    margin-top: 20px;
}

.room-thumbnail {
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.room-thumbnail.active,
.room-thumbnail:hover {
    opacity: 1;
}

.room-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-feature-list {
    list-style: none;
    padding: 0;
}

.room-feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
}

.room-feature-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Room Highlights & Content */
.room-details-content {
    padding-top: 3rem;
}

.room-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.highlight-item i {
    color: var(--secondary-color);
}

/* Contact Page Components */
.contact-info-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: center;
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-form {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Admin Dashboard Preview */
.admin-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.admin-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-medium);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline (About Page) */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 3rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -2.3rem;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--secondary-color);
}

.timeline-year {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Menu (Restaurant Page) */
.menu-category {
    margin-bottom: 3rem;
}

.menu-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.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-price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.menu-item-desc {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Filters */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    padding: 0.5rem 1.5rem;
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.room-filter {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.booking-steps:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray-light);
    z-index: 1;
}

.booking-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
    color: var(--gray-medium);
    transition: all 0.3s ease;
}

.booking-step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.booking-step.completed .step-number {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Breadcrumb & Badges */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-medium);
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.room-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem;
    background: var(--light-color);
    border-radius: 8px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Modals, Newsletters, Spinners */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5f 100%);
    border-radius: 8px;
    padding: 3rem;
    color: white;
}

.newsletter-box h3 {
    color: white;
}

.newsletter-input {
    display: flex;
    gap: 10px;
}

.newsletter-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
}

.spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.cta-section h2 {
    color: white;
}

/* =========================================
   RESPONSIVE QUERIES
   ========================================= */

/* Tablet & Smaller Desktops */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }

    /* Fix Hero Section Layout */
    .hero-section {
        min-height: auto;
        height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
        align-items: flex-start;
        display: block; 
    }

    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Fix Booking Widget on Mobile */
    .booking-widget {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none !important;
        width: 100%;
        margin-top: 3rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: left;
    }

    /* Fix Layout Spacing */
    .section-padding {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Adjust Floating Buttons */
    .whatsapp-btn,
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        right: 20px;
    }

    .whatsapp-btn {
        bottom: 80px;
    }

    .call-btn {
        bottom: 140px;
    }
    
    .room-img {
        height: 180px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .booking-widget form .row > div {
        margin-bottom: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .btn {
        /* width: 100%; */
        margin-bottom: 0.5rem;
    }
    
    .newsletter-input {
        flex-direction: column;
    }
    
    .newsletter-input input {
        margin-bottom: 10px;
    }
}

/* =========================================
   OTHER PAGES (Sub-pages Backgrounds)
   ========================================= */

/* Common Hero Base */
.room-details-hero, .about-hero, .restaurant-hero, .gallery-hero, .contact-hero, .rooms-hero, .booking-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

/* Overlay */
.room-details-hero::before, .about-hero::before, .restaurant-hero::before, .gallery-hero::before, .contact-hero::before, .rooms-hero::before, .booking-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 37, 64, 0.6);
    z-index: 1;
}

/* Specific Background Images (Restored) */
.room-details-hero {
    background-image: url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}
.about-hero {
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}
.restaurant-hero {
    background-image: url('https://images.unsplash.com/photo-1512918728675-ed5a9ecdebfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}
.gallery-hero {
    background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}
.contact-hero {
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
}
.rooms-hero, .booking-hero {
    background-image: url('https://images.unsplash.com/photo-1566665797739-1674de7a421a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1674&q=80');
}

/* Hero Content */
.room-details-hero h1, .about-hero h1, .restaurant-hero h1, .gallery-hero h1, .contact-hero h1, .rooms-hero h1, .booking-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .room-details-hero h1, .about-hero h1 {
        font-size: 2rem;
    }
    .room-gallery {
        margin-top: 0;
        padding-top: 2rem;
    }
}

/* Comparison Table Responsive Scroll */
.comparison-table-container {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.comparison-table tr:hover {
    background: var(--light-color);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Trending Event Card - Homepage */
.home-event-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: white;
    height: 100%;
    min-height: 300px; /* Ensure consistent height */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.home-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.home-event-img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-event-card:hover .home-event-img {
    transform: scale(1.05);
}

.home-event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.95), rgba(10, 37, 64, 0.6) 60%, transparent);
    padding: 25px 20px;
    z-index: 2;
    transition: padding-bottom 0.3s ease;
}

.home-event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #000;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.home-event-overlay h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}