﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================
   GLOBAL STYLES & TYPOGRAPHY
   ========================================== */
:root {
    --primary-color: #B8860B;
    /* Gold */
    --primary-hover: #D4AF37;
    --dark-bg: #111111;
    --darker-bg: #0a0a0a;
    --light-bg: #f9f9f9;
    --text-dark: #333333;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

html,
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Premium Buttons */
.btn-premium {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.text-premium {
    color: var(--primary-color) !important;
}

.btn-premium:hover {
    background-color: var(--primary-hover);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.btn-outline-premium {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline-premium:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

/* ==========================================
   HEADER STYLES
   ========================================== */
.navbar-premium {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.navbar-premium.scrolled {
    padding: 5px 0;
    background: #FDFBF7 !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 2px solid var(--primary-color);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.navbar-premium .nav-toggle-icon {
    color: #fff !important;
    transition: color 0.3s ease;
}

.navbar-premium.scrolled .nav-toggle-icon {
    color: var(--primary-color) !important;
}

/* For pages where navbar is always solid, force primary color */
.navbar-premium[style*="background"] .nav-toggle-icon {
    color: var(--primary-color) !important;
}

.navbar-brand {
    font-family: var(--font-heading);
    color: var(--primary-color) !important;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Logo Sizing (Visual scale without expanding header height) */
.navbar-logo-img {
    height: 75px;
}

.video-logo-img {
    height: 80px;
}

.nav-link {
    color: var(--primary-color) !important;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 0.5rem 0.5rem !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   INDEX PAGE STYLES
   ========================================== */
/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust opacity for text readability */
}

.hero-content {
    text-align: center;
    color: #fff !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Booking Bar */
.booking-bar {
    background-color: #fff !important;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
    position: relative;
    z-index: 10;
}

.booking-form .form-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

.booking-form .form-control,
.booking-form .form-select {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 0;
    font-size: 1rem;
    box-shadow: none;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-color);
}

/* Specific Section Paddings */
.welcome-section,
.rooms-section,
.facilities-section,
.faq-section,
.testimonials-section {
    padding: 60px 0;
}

/* FAQ Accordion Styles */
.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.section-bg-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title-left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

/* ==========================================
   ROOMS PAGE STYLES
   ========================================== */
/* Room Cards */
.room-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin-bottom: 30px;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-img-wrapper {
    position: relative;
    overflow: hidden;
}

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

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

.room-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 8px 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.room-card-body {
    padding: 30px;
    background-color: #fff !important;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.room-features li i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* ==========================================
   FOOTER STYLES
   ========================================== */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 15px;
    border-top: 2px solid var(--primary-color);
}

.footer-widget h4 {
    color: #fff !important;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Offer Card */
.offer-card {
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: #fff !important;
    text-decoration: none;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
}

.offer-content {
    position: relative;
    z-index: 1;
}

.offer-tag {
    background-color: var(--primary-color);
    padding: 5px 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.offer-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */
/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    text-align: center;
    color: #fff !important;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    justify-content: center;
}

.breadcrumb-custom li {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-custom li a {
    color: #fff !important;
    text-decoration: none;
}

.breadcrumb-custom li a:hover {
    color: var(--primary-color);
}

/* ==================================================
   Hotel Highlights Swiper Section 
   ================================================== */
.highlights-section {
    background-color: #f8f9fa;
    overflow: hidden;
    padding: 60px 0;
}

.highlightsSwiper {
    width: 100%;
    padding-bottom: 50px;
    padding-top: 20px;
}

.highlight-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease;
    transform: scale(0.85);
    /* Smaller when inactive */
    opacity: 0.5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.highlightsSwiper .swiper-slide-active {
    transform: scale(1);
    /* Full size when active */
    opacity: 1;
    z-index: 10;
}

/* Gradient overlay to make text readable (like the screenshot) */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 15, 30, 0.9) 0%, rgba(0, 15, 30, 0.4) 60%, transparent 100%);
    z-index: 1;
}

/* Content inside the slide */
.highlight-slide .slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff !important;
    max-width: 500px;
    opacity: 0;
    /* Fade out content in inactive slides */
    transition: opacity 0.5s ease 0.3s;
    /* Delay fade in slightly */
}

.highlightsSwiper .swiper-slide-active .slide-content {
    opacity: 1;
}

.highlight-slide .slide-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-slide .slide-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.highlight-slide .highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.highlight-slide .highlight-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-slide .highlight-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.highlight-slide .learn-more {
    display: inline-block;
    color: #fff !important;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.highlight-slide .learn-more:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Custom Navigation Controls (Bottom) */
.swiper-nav-container {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #333;
    font-weight: 500;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    color: var(--primary-color);
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.roomsSwiper .swiper-slide {
    height: auto;
}

.room-features {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.room-features li {
    font-weight: 600;
    color: #444;
}

.custom-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.custom-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .highlight-slide {
        height: 450px;
    }

    .highlight-slide .slide-content {
        left: 5%;
        max-width: 90%;
    }

    .highlight-slide .slide-content h3 {
        font-size: 2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
    .highlight-slide {
        height: 600px;
    }
    .highlight-slide .slide-overlay {
        background: linear-gradient(to top, rgba(0, 15, 30, 0.95) 0%, rgba(0, 15, 30, 0.6) 50%, rgba(0, 15, 30, 0.4) 100%);
    }
    .highlight-slide .slide-content {
        padding: 20px 10px;
        width: 100%;
        left: 0;
        text-align: center;
    }
    .highlight-slide .highlight-list {
        display: inline-block;
        text-align: left;
    }
    .highlight-slide .highlight-list li {
        justify-content: flex-start;
    }
    .highlight-slide .learn-more {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .booking-bar {
        transform: translateY(-20px);
        padding: 20px;
        margin: 0 15px;
        border-radius: 10px;
    }

    .welcome-section,
    .rooms-section,
    .facilities-section,
    .faq-section,
    .testimonials-section,
    .highlights-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .video-top-bar .contact-action-wrapper {
        gap: 15px !important;
    }

    .video-top-bar .contact-action-wrapper a[href^="tel:"] {
        display: none !important;
    }

    /* Remove focus border/shadow from navbar toggle button */
    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: none !important;
    }

    .video-top-bar .btn {
        padding: 8px 15px !important;
        font-size: 0.75rem !important;
    }

    .navbar-logo-img {
        height: 70px;
        /* Smaller logo for mobile scrolling header */
    }

    .video-logo-img {
        height: 70px;
    }

    .mobile-glassy-sidebar {
        width: 60vw !important;
        /* Slightly more than 50vw to fit content nicely */
        max-width: 300px;
        background: #FDFBF7 !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-glassy-sidebar .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-glassy-sidebar .nav-item:last-child {
        border-bottom: none;
    }

    .offcanvas-body .nav-link {
        font-size: 0.85rem !important; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px;
        margin: 15px 0;
        padding-left: 0;
        color: var(--primary-color) !important;
    }

    .footer {
        padding: 40px 0 15px;
    }
}

/* ========================================== 
   Styles for checkout.html 
   ========================================== */
.checkout-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(197, 164, 82, 0.25);
        }


/* ========================================== 
   Styles for offers.html 
   ========================================== */
.amenities-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .amenities-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #555;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .amenities-list li:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        .amenities-list li i {
            color: var(--primary-color);
            width: 30px;
            text-align: center;
            font-size: 1.5rem;
        }

        .rules-list {
            list-style: none;
            padding: 0;
        }

        .rules-list li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }

        .rules-list li:last-child {
            border-bottom: none;
        }

        .offer-card {
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }


/* ========================================== 
   Styles for package-details.html 
   ========================================== */
.room-gallery .swiper-slide img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 16px;
        }

        .booking-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 100px;
        }

        .booking-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
            font-family: var(--font-heading);
        }

        .amenities-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .amenities-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #555;
        }

        .amenities-list li i {
            color: var(--primary-color);
            width: 24px;
            text-align: center;
            font-size: 1.2rem;
        }

        .rules-list {
            list-style: none;
            padding: 0;
        }

        .rules-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }

        .rules-list li:last-child {
            border-bottom: none;
        }

        .gallery-thumbs .swiper-slide {
            width: 25%;
            height: 100px;
            opacity: 0.5;
            cursor: pointer;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 15px;
        }

        .gallery-thumbs .swiper-slide-thumb-active {
            opacity: 1;
            border: 2px solid var(--primary-color);
        }

        .gallery-thumbs .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }





.story-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px !important;
    overflow: hidden !important;
}





