/* --- Global Reset & Basic Styling --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* MODIFIED: Changed default font to 'Roboto' */
body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
    background-color: #f9f9f9;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ADDED: Global style for all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}


a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}
.uppercase {
    text-transform: uppercase;
}
/* MODIFIED: Ensured font-serif utility uses the correct heading font */
.font-serif {
    font-family: 'Playfair Display', serif;
}
.font-bold {
    font-weight: 700;
}
.hidden {
    display: none !important;
}


/* --- Sticky Header Wrapper --- */
.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* --- Top Navigation Bar --- */
.top-nav {
    background-color: #0f2040;
    color: #ffffff;
    padding: 8px 0;
    border-bottom: 1px solid #444;
    font-size: 0.85rem;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 15px;
    font-size: 16px;
}

.contact-info i {
    color: #C5A059;
    margin-right: 5px;
}

.social-links a,
.social-links i {
    margin-left: 10px;
    cursor: pointer;
}

.social-links a:hover,
.social-links i:hover {
    color: #C5A059;
}

/* --- Main Header --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area img {
    height: 100px;
    width: auto;
}

.logo-text {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 2px solid #1E407C;
    display: none; /* Hidden on mobile by default */
}

.logo-text h1 {
    color: #1E407C;
    font-size: 1.125rem;
    line-height: 1.1;
}

.logo-text p {
    color: #C5A059;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: #0f2040;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.05em;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #1E407C;
    border-bottom-color: #1E407C;
}

.btn-book {
    background-color: #1E407C;
    color: white;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-book:hover {
    background-color: #153060;
    transform: scale(1.05);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-top: 4px solid #1E407C;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: #333333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #1E407C;
}

/* Mobile Menu */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: #1E407C;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid #eee;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    font-size: 0.9rem;
}

.mobile-menu .submenu-header {
    padding: 10px 20px;
    font-size: 0.75rem;
    color: #1E407C;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #f9f9f9;
}

.mobile-menu .submenu-item {
    padding-left: 40px;
    font-weight: 400;
    color: #555;
    background-color: #f9f9f9;
}

/* --- Hero Slider Section --- */
#home {
    position: relative;
    height: 600px;
    overflow: visible;
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide-content h2 {
    font-size: 2.5rem;
    /* font-family property inherited from global h2 style */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: white;
    color: #1E407C;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    opacity: 0;
    z-index: 10;
}

#home:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background-color: #1E407C;
}

.prev-btn {
    left: 20px;
}
.next-btn {
    right: 20px;
}

/* --- Booking Box Section --- */
.booking-wrapper {
    position: relative;
    width: 100%;
    z-index: 20;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.booking-form {
    background-color: white;
    padding: 25px 20px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: -50px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 120px;
}

.group-date {
    flex: 2;
    min-width: 140px;
}
.group-select {
    flex: 1;
    min-width: 70px;
}
.group-btn {
    flex: 1.5;
    min-width: 120px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
    cursor: pointer;
    height: 46px;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #666;
}

.btn-check {
    width: 100%;
    height: 46px;
    background-color: #6d6e71;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: capitalize;
    box-sizing: border-box;
}

.btn-check:hover {
    background-color: #555;
}

/* Fix for iOS Safari input rounding */
@supports (-webkit-touch-callout: none) {
    .form-control {
        -webkit-appearance: none;
        border-radius: 4px;
    }
}


/* --- Custom Calendar (flatpickr) Styles --- */
.flatpickr-calendar {
    background: #102a43 !important;
    border: 1px solid #0d2136 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border-radius: 4px !important;
    max-width: 320px !important;
}

.flatpickr-calendar .flatpickr-header {
    background: #102a43 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: bold !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #fff !important;
}

span.flatpickr-weekday {
    background: #fff !important;
    color: #102a43 !important;
    font-weight: bold !important;
}

.flatpickr-days {
    background: #102a43 !important;
    border-top: 1px solid #102a43 !important;
}

.flatpickr-day {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    height: 40px !important;
    line-height: 40px !important;
    width: 14.28% !important;
    max-width: none !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day:focus,
.flatpickr-day:hover {
    background: #fff !important;
    color: #102a43 !important;
    border-color: #fff !important;
    font-weight: bold !important;
}

.flatpickr-day.today {
    border-color: #fff !important;
}

/* --- About Section --- */
#about {
    background-color: white;
    padding: 60px 0;
    /* FIX: Add a minimum height to prevent the page from "jumping" when the content collapses. */
    min-height: 650px;
    display: flex; /* Helps vertically center content */
    align-items: center; /* Aligns content to the middle */
    transition: min-height 0.5s ease-in-out;
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: all 0.5s ease-in-out;
    width: 100%;
}

/* This is a flex container for the initial image and text to sit side-by-side */
.about-initial-flex-container {
    display: flex;
    align-items: center; /* Vertically align items in the flex container */
    gap: 40px; /* Add some space between the image and the text */
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    width: 100%;
    padding: 0 20px; /* Add some horizontal padding */
}

/* Define flex-basis for children to control their size */
.about-image-column,
.about-content-column {
    flex: 1; /* Allows both columns to grow and shrink equally */
    min-width: 300px; /* Prevents columns from becoming too narrow */
}

/* --- Initial Content Styling (Image & Text) --- */

.about-image-wrapper {
    position: relative;
    max-width: 450px; /* Constrain image wrapper width */
    margin: 0 auto;   /* Center the image wrapper */
}

.about-deco-top {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background-color: rgba(197, 160, 89, 0.2);
    border-top-left-radius: 20px;
    z-index: 0;
}

.about-img {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-deco-bottom {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 4px solid #1E407C;
    border-bottom-right-radius: 8px;
    z-index: 2;
}

.about-content h2 {
    font-size: 2.25rem;
    color: #0f2040;
    margin-bottom: 20px;
    /* font-family property inherited from global h2 style */
}

.about-content p {
    color: #666666;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7; /* Increased line-height for better readability */
}

/* --- Button Styles --- */
.btn {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    padding: 12px 28px;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

.btn.btn-primary {
    background-color: #0f2040; /* Dark blue background */
    color: white;             /* White text for contrast */
    border-color: #0f2040;
}

.btn.btn-primary:hover {
    background-color: #c5a059; /* Gold background on hover */
    border-color: #c5a059;
    color: #0f2040;           /* Dark blue text on hover */
    transform: translateY(-3px); /* Add a subtle "lift" effect */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Center the 'Read More' button */
#readMoreBtn {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --- Expanded Content Styles --- */
#additionalContent {
    text-align: center;
    max-width: 800px; /* Constrain width for readability */
    padding: 0 20px; /* Add padding for smaller screens */
}

#additionalContent h2 {
    color: #0f2040;
}

#additionalContent p {
    color: #000000; /* Sets paragraph text to black, as requested */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Animation & Visibility Logic --- */
#initialContentWrapper,
#additionalContent {
    transition: opacity 0.4s ease-in-out, max-height 0.6s ease-in-out, transform 0.4s ease-in-out;
    overflow: hidden;
    width: 100%;
}

/* --- Initial State (Default View) --- */

/* By default, the additional content is completely hidden and collapsed */
#additionalContent {
    opacity: 0;
    max-height: 0;
    transform: translateY(20px);
}

/* --- Active State (When "Read More" is clicked) --- */
.about-grid.show-more-active {
    justify-content: center;
}

/* Hide the initial content when the grid is active */
.about-grid.show-more-active #initialContentWrapper {
    opacity: 0;
    max-height: 0;
    pointer-events: none; /* Prevent interaction with hidden elements */
    transform: translateY(20px);
}

/* Show the additional content when the grid is active */
.about-grid.show-more-active #additionalContent {
    opacity: 1;
    max-height: 1500px; /* A large value to allow content to fully expand */
    transform: translateY(0);
}


/* --- Responsive Design --- */

/* -- Tablet View -- */
@media (max-width: 992px) {
    .about-initial-flex-container {
        flex-direction: column; /* Stack image and text vertically */
        gap: 30px;
    }
    
    .about-content-column {
        text-align: center; /* Center the text now that it's stacked */
    }

    .about-content h2 {
        font-size: 2rem; /* Slightly smaller heading */
    }

    #readMoreBtn {
        margin-top: 10px; /* Reduce top margin for the button */
    }
}

/* -- Mobile View -- */
@media (max-width: 768px) {
    #about {
        padding: 40px 0; /* Reduce overall section padding */
        min-height: auto; /* Allow height to be determined by content */
    }

    .about-initial-flex-container {
        padding: 0 15px; /* Reduce horizontal padding */
    }

    .about-img {
        height: 300px; /* Reduce image height for mobile */
    }
    
    .about-deco-top {
        width: 80px;
        height: 80px;
        top: -10px;
        left: -10px;
    }

    .about-deco-bottom {
        width: 90px;
        height: 90px;
        bottom: -10px;
        right: -10px;
    }

    .about-content h2 {
        font-size: 1.8rem; /* Smaller headings for mobile */
    }

    .about-content p, #additionalContent p {
        font-size: 1rem; /* Adjust paragraph font size */
    }

    #additionalContent {
        padding: 0 15px; /* Add padding to expanded text on mobile */
    }
}


/* --- Amenities Section (New Theme) --- */
#amenities {
    padding: 30px 20px;
    background-color: white; /* Changed */
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    margin-top: -40px;
}

#amenities::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    z-index: 0;
}

#amenities .container {
    position: relative;
    z-index: 1;
}

.amenities-header {
    text-align: center;
    margin-bottom: 70px;
}

.amenities-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    /* font-family property inherited from global h2 style */
    color: #c5a059; /* Changed */
}

.amenities-divider {
    width: 60px;
    height: 4px;
    background: #c5a059; /* Changed */
    margin: 0 auto;
    border-radius: 2px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-card {
    background: #0f2040; /* Changed */
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.2); /* Changed */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.amenity-card:hover {
    transform: translateY(-12px);
    border-color: rgba(197, 160, 89, 0.5); /* Changed */
    background: #0f2040; /* Changed */
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(197, 160, 89, 0.08);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.amenity-card:hover .icon-wrapper {
    background: #c5a059; /* Changed */
    transform: rotate(-8deg) scale(1.05);
}

.icon-wrapper i {
    font-size: 36px;
    color: #c5a059;
    transition: all 0.4s ease;
}

.amenity-card:hover .icon-wrapper i {
    color: #0f2040; /* Changed */
}

.amenity-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.amenity-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffff; /* Changed */
    margin: 0;
}

.amenity-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: #c5a059;
    opacity: 0.02;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.amenity-card:hover::after {
    opacity: 0.08;
    transform: scale(3);
}


/* --- Attractions Section --- */
#attractions {
    padding: 100px 0;
    background-color: #0f2040;
    color: white;
    perspective: 1000px;
    overflow: hidden;
}

.attractions-header {
    text-align: center;
    margin-bottom: 60px;
}

.attractions-header h4 {
    color: #C5A059;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.attractions-header h2 {
    font-size: 2.5rem;
    margin-top: 10px;
    /* font-family property inherited from global h2 style */
}
.attractions-header p {
    color: #aaa;
    margin-top: 15px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    transform-style: preserve-3d;
}

.card-3d {
    width: 320px;
    height: 400px;
    position: relative;
    border-radius: 16px;
    cursor: pointer;
    transform: rotateY(0deg);
    transition: all 0.5s ease-out;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-3d:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.card-3d:hover .card-content {
    transform: translateY(0);
}

.card-content h3 {
    color: #C5A059;
    font-size: 1.5rem;
    /* font-family property inherited from global h3 style */
    margin-bottom: 8px;
}

.card-content p {
    color: #ddd;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-3d:hover .card-content p {
    opacity: 1;
}

/* --- Gallery Section --- */
#gallery {
    background-color: white;
    text-align: center;
}

#gallery h2 {
    font-size: 2.5rem;
    color: #0f2040;
    /* font-family property inherited from global h2 style */
}

.gallery-viewport {
    width: 100%;
    height: 400px;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 40px;
    scroll-snap-type: x mandatory;
    width: 100%;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.gallery-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.gallery-img {
    flex-shrink: 0;
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    scroll-snap-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.1) translateZ(50px);
    z-index: 10;
}

/* --- Location & Video Section --- */
#location {
    display: flex;
    flex-direction: column;
    background-color: #eee;
}

.map-container,
.video-container {
    width: 100%;
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    transition: filter 0.5s;
}

.map-card {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 250px;
}

.map-card h5 {
    color: #1E407C;
    font-weight: bold;
    margin-bottom: 5px;
}
.map-card p {
    font-size: 0.85rem;
    color: #666;
}

.video-container {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/video.webp'); /* Note: Placeholder URL */
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.play-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.play-btn:hover {
    background-color: #b91c1c;
    transform: scale(1.1);
}

.play-content h3 {
    font-size: 1.75rem;
    margin-top: 20px;
    /* font-family property inherited from global h3 style */
}
.play-content p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Footer --- */
footer {
    background-color: #0f2040;
    color: white;
    padding: 60px 0 30px;
    border-top: 5px solid #C5A059;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    /* font-family property inherited from global h3 style */
}

/* MODIFIED: Changed sub-heading font to 'Roboto' for consistency */
.footer-col h3.sub-head {
    font-size: 1rem;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Roboto', sans-serif;
}

.footer-col p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.social-icon:hover {
    background-color: #C5A059;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0; /* Override to avoid extra spacing in grid */
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s;
    display: block; /* Ensure full width for links in grid */
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: #9ca3af;
}

.footer-contact i {
    color: #C5A059;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom p {
    margin: 0;
}

.footer-disclaimer {
    max-width: 900px;
}

.footer-credits a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 6px;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr; /* Stack into single column on mobile */
    }
}

/* --- Back to Top Button --- */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #C5A059;
    color: white;
    border: 2px solid #C5A059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    z-index: 2000;
    /* Hidden State */
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

#backToTop.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

#backToTop:hover {
    background-color: white;
    color: #C5A059;
}

/* --- Responsive Design --- */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .booking-wrapper {
        padding: 0 20px;
        margin-top: 30px;
    }

    .booking-form {
        flex-wrap: wrap;
        padding: 20px;
        gap: 12px;
    }

    .group-date,
    .group-select,
    .group-btn {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile landscape and smaller tablets (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    .logo-text { display: none; }
    .desktop-menu { display: none; }
    .mobile-toggle { display: block; }

    /* Hero */
    #home { height: 600px; }

    /* Booking Box */
    .booking-wrapper {
        padding: 0 15px;
        margin-top: 20px;
    }

    .booking-form {
        flex-direction: column;
        padding: 18px 15px;
        gap: 10px;
    }

    .form-group,
    .btn-check {
        width: 100%;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .form-control {
        padding: 8px 10px;
        height: 42px;
        font-size: 0.9rem;
    }

    .btn-check {
        height: 42px;
        font-size: 0.9rem;
    }

    .group-btn {
        margin-top: 5px;
    }

    /* About */
    .about-grid { flex-direction: column; }

    /* Amenities */
    #amenities { padding: 60px 20px; }
    .amenities-header h2 { font-size: 2.2rem; }
    .amenities-grid { grid-template-columns: 1fr; }

    /* Attractions */
    .card-3d:nth-child(2) { margin-top: 0; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        font-size: 15px;
    }
    .footer-disclaimer,
    .footer-credits {
        max-width: 100%;
        text-align: center;
    }
}

/* Large Desktop (min-width: 768px) and up */
@media (min-width: 768px) {
    /* Header */
    .logo-text { display: block; }
    .desktop-menu { display: flex; }
    .mobile-toggle { display: none; }

    /* Hero & Booking */
    #home { height: 700px; }
    .slide-content h2 { font-size: 3.5rem; }
    .booking-form {
        flex-direction: row;
        flex-wrap: nowrap; /* Prevent wrapping on desktop */
        align-items: flex-end;
        gap: 20px;
    }

    /* About */
    .about-grid {
        align-items: center;
    }

    /* Attractions Stagger */
    .card-3d:nth-child(2) { margin-top: 50px; }

    /* Location/Video */
    #location {
        flex-direction: row;
        height: 450px;
    }
    .map-container,
    .video-container {
        width: 50%;
        height: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
     .footer-credits {
        text-align: right;
    }
}

/* XL Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .booking-wrapper {
        padding: 0 12px;
        margin-top: 15px;
    }
    .booking-form {
        padding: 15px 12px;
        border-radius: 8px;
    }
    .form-control, .btn-check {
        height: 44px;
        font-size: 16px; /* Prevents iOS auto-zoom on focus */
    }
    .flatpickr-calendar {
        max-width: 280px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .flatpickr-day {
        height: 36px !important;
        line-height: 36px !important;
    }
}

/* Very Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .booking-wrapper { padding: 0 10px; }
    .booking-form { padding: 12px 10px; }
    .form-control, .btn-check { height: 40px; }
}




/* Sub Pages CSS Start */

.attractions-container {
    position: relative; /* Ensures content stays above background */
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px 20px;
}

.category {
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.category-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 4px solid #c5a059;
}

.transport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.airport-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.restaurant-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.category-header {
    padding: 20px;
    background-color: #0f2040;
    color: white;
    position: relative;
    margin-top: -7px;
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.attraction-list {
    padding: 20px;
}

.attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attraction:last-child {
    border-bottom: none;
}

.attraction-info {
    flex: 1;
}

.attraction-name {
    font-weight: 500;
    margin-bottom: 4px;
    color: #000;
}

.attraction-type {
    font-size: 0.85rem;
    color: Black;
}

.attraction-distance {
    background-color: #c5a059;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.attraction:hover .attraction-distance {
    background-color: #0f2040;
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .attractions-container {
        grid-template-columns: 1fr;
    }

    .category {
        max-width: 500px;
        margin: 0 auto;
    }
}



/* Main Amenities Section */
.roosevelt-amenities {
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box;
}

.roosevelt-amenities-container {
    width: 100%;
    max-width: 1280px; /* Slightly wider container */
    margin: 0 auto;
    padding: 0 2rem;
}

/* New Grid Container for Categories */
.roosevelt-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* 2 columns for wider screens */
    gap: 3rem; /* Spacing between grid items (category cards) */
}

/* Individual Category Section (now a grid item) */
.roosevelt-category-section {
    padding: 2.5rem; /* Padding inside each category card */
    display: flex; /* Flexbox for internal stacking of title, image, features */
    flex-direction: column;
    align-items: center; /* Center items horizontally within the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Center text within the card */
    overflow: hidden; /* Ensures border-radius cuts content correctly */
}

.roosevelt-category-section:hover {
    transform: translateY(-8px); /* Lift effect on hover */
    box-shadow: 0 10px 25px rgba(15, 32, 64, 0.15); /* Stronger shadow on hover */
}

/* Category Title */
.roosevelt-category-title {
    color: #0f2040;
    margin-top: 0; /* Reset default margin */
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%; /* Ensures title takes full width in column */
}

.roosevelt-category-title:after {
    content: '';
    display: block;
    width: 80px; /* Shorter line */
    height: 4px; /* Thicker line */
    background: #c5a059;
    margin: 0.8rem auto 0; /* Adjust margin below title */
    border-radius: 2px;
}

/* Category Image Block */
.roosevelt-category-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency in grid */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem; /* Spacing between image and features */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Slight shadow for image itself */
}

.roosevelt-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.roosevelt-category-image:hover img {
    transform: scale(1.08);
}

/* Features Grid (Column Holder) - now the content section of the card */
.roosevelt-amenities-features-grid {
    width: 100%;
}

.roosevelt-amenities-feature-column {
    padding: 0; /* Remove padding as the main category-section has padding */
    background: none; /* Remove background, main card has it */
    box-shadow: none; /* Remove shadow, main card has it */
    border-top: none; /* Remove border, this is for inner columns if multiple existed */
    border-radius: 0; /* Remove border-radius */
}

.roosevelt-amenities-feature-column:hover {
    transform: none; /* Disable transform on inner column */
    box-shadow: none; /* Disable shadow on inner column */
}

/* Feature List */
.roosevelt-amenities-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Align feature list items to the left */
}

.roosevelt-amenities-feature-list li {
    padding: 1rem 0; /* Padding for each list item */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.3s ease-in-out;
}

.roosevelt-amenities-feature-list li:hover {
    background-color: rgba(197, 160, 89, 0.05);
    padding-left: 15px;
}

.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}

.roosevelt-amenities-feature-icon {
    color: #c5a059;
    margin-right: 1.5rem;
    min-width: 28px;
    text-align: center;
}

.roosevelt-amenities-feature-text {
    color: #333;
}

/* The divider is removed as grid gaps provide separation */
.roosevelt-amenities-divider {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .roosevelt-amenities-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .roosevelt-amenities {
        padding: 4rem 0;
    }
    .roosevelt-categories-grid {
        grid-template-columns: 1fr; /* Stack into a single column */
        gap: 2.5rem;
    }
    .roosevelt-category-section {
        padding: 2rem;
    }
    .roosevelt-category-image {
        height: 220px; /* Adjust height when stacked */
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .roosevelt-amenities-container {
        padding: 0 1rem;
    }
    .roosevelt-category-section {
        padding: 1.8rem;
    }
    .roosevelt-category-image {
        height: 200px;
    }
    .roosevelt-category-title {
        margin-bottom: 1rem;
    }
    .roosevelt-amenities-feature-list li {
        padding: 0.8rem 0;
    }
    .roosevelt-amenities-feature-icon {
        min-width: 24px;
        margin-right: 1rem;
    }
}

@media (max-width: 576px) {
    .roosevelt-amenities {
        padding: 3rem 0;
    }
    .roosevelt-categories-grid {
        gap: 2rem;
    }
    .roosevelt-category-section {
        padding: 1.5rem;
    }
    .roosevelt-category-title:after {
        width: 50px;
        height: 3px;
        margin-top: 0.5rem;
    }
    .roosevelt-category-image {
        height: 180px;
        margin-bottom: 1rem;
    }
}

.location-container {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  background: white;
}

.location-title {
  text-align: center;
  color: #0f2040;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #0f2040;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.coordinates-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(15, 32, 64, 0.1);
  border: 1px solid rgba(15, 32, 64, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #0f2040;
  font-size: 1.4rem;
  font-weight: 600;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 1.05rem;
}

.coordinate i {
  color: #c5a059;
  font-size: 1.2rem;
}

.directions-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(15, 32, 64, 0.1);
  border: 1px solid rgba(15, 32, 64, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: #0f2040;
  font-size: 1.05rem;
}

.directions-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.directions-form input:focus {
  outline: none;
  border-color: #0f2040;
  box-shadow: 0 0 0 3px rgba(15, 32, 64, 0.2);
}

.directions-form button {
  background: #0f2040;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directions-form button:hover {
  background: #c5a059;
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(15, 32, 64, 0.1);
  border: 1px solid rgba(15, 32, 64, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }

  .location-info, .location-map {
    width: 100%;
  }
}


.content-wrapper {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    padding: 20px;
}

.contact-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
    color: #0f2040;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    text-align: center;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #c5a059;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    color: #c5a059;
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 24px;
    text-align: center;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #0f2040;
}

.info-text p, .info-text a {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: #0f2040;
    text-decoration: underline;
}

.map-container {
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }

    .map-container {
        height: 350px;
    }
}




/* Scoped styles using section ID */

#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}

#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}

#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 120px; /* Fixed height for rectangular format */
}

#hotel-navigation-section .nav-link:hover {
    background: #0f2040;
    color: white;
    box-shadow: 0 8px 16px rgba(15, 32, 64, 0.2);
    transform: translateY(-3px);
}

#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #c5a059;
    transition: all 0.3s ease;
}

#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}

#hotel-navigation-section .nav-text {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

#hotel-navigation-section .nav-desc {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive styles */
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }

    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}

@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }

    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }

    #hotel-navigation-section {
        padding: 30px 0;
    }
}




.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #0f2040;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0f2040, #c5a059);
    border-radius: 2px;
}

.faq-header p {
    color: black;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #0f2040;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #c5a059;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #0f2040, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #0f2040;
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #c5a059;
    border-bottom-color: #c5a059;
}

.faq-answer .fa-caret-right {
    color: #c5a059;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 20px;
    }
}


/* Style for the currently active navigation link */
.nav-link.active,
.mobile-menu a.active {
    /* You can choose any style you like. Here are some examples: */
    color: #007bff; /* A distinct color */
    font-weight: bold;
    text-decoration: none;
    text-decoration-thickness: 2px;
}











/* ========================================= */
/*       Desktop and Base Styles             */
/* ========================================= */

/* Rooms Section - NEW COLOURS */
.gr-rooms-section {
    padding: 40px 0;
    background-color: #ffffff; /* UPDATED: Background set to white */
    position: relative;
    overflow: hidden;
}

.gr-rooms-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* UPDATED: Background pattern uses the new gold color with low opacity */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(197, 160, 89, 0.05)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

.nearby-content-container {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.main-room-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.main-room-section-header h2 {
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 20px;
    color: #153060; /* UPDATED: Main heading now uses the deep blue */
    font-weight: 700;
}

.main-room-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333333; /* UPDATED: Paragraph text is now a soft black */
}

/* Individual Room Listing Styles */
.nearby-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 40px;
    gap: 20px;
    transform-style: preserve-3d;
    perspective: 1200px;
    z-index: 1;
}

.nearby-list-box,
.nearby-image-box {
    width: calc(50% - 10px);
    aspect-ratio: auto;
    min-height: 350px;
    max-height: unset;
    display: flex;
    transition: all 0.5s ease;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.nearby-list-box {
    background: #ffffff; /* UPDATED: Card background is white */
    padding: 30px;
    box-shadow: 15px 5px 25px -10px rgba(0,0,0,0.1); /* Adjusted shadow slightly for a softer feel */
    transform: rotateY(-10deg);
    flex-direction: column;
}

.nearby-image-box {
    box-shadow: -15px 5px 25px -10px rgba(0,0,0,0.1);
    transform: rotateY(10deg);
}

.nearby-section:hover .nearby-list-box {
    transform: rotateY(-15deg) translateX(-5px);
    box-shadow: 20px 8px 35px -10px rgba(0,0,0,0.15);
}

.nearby-section:hover .nearby-image-box {
    transform: rotateY(15deg) translateX(5px);
    box-shadow: -20px 8px 35px -10px rgba(0,0,0,0.15);
}

/* Overrides for sections where image is on the left */
.room-image-left .nearby-image-box {
    transform: rotateY(-10deg);
    box-shadow: 15px 5px 25px -10px rgba(0,0,0,0.1);
}
.room-image-left .nearby-list-box {
    transform: rotateY(10deg);
    box-shadow: -15px 5px 25px -10px rgba(0,0,0,0.1);
}
.room-image-left:hover .nearby-image-box {
    transform: rotateY(-15deg) translateX(-5px);
    box-shadow: 20px 8px 35px -10px rgba(0,0,0,0.15);
}
.room-image-left:hover .nearby-list-box {
    transform: rotateY(15deg) translateX(5px);
    box-shadow: -20px 8px 35px -10px rgba(0,0,0,0.15);
}

.nearby-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.nearby-section-headline {
    font-size: 2em;
    margin-bottom: 12px;
    color: #c5a059; /* UPDATED: Room titles now use the new gold accent color */
    font-weight: 700;
    text-align: left;
    padding: 0;
    position: relative;
}

.room-description-para {
    color: #333333; /* UPDATED: Room description is soft black */
    margin-bottom: 15px;
    line-height: 1.4;
}

.room-features-list {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.room-features-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333333; /* UPDATED: Feature text is soft black */
}

.room-features-list i {
    margin-right: 10px;
    color: #153060; /* UPDATED: Icons now use the deep blue for contrast */
    width: 20px;
    text-align: center;
}

.nearby-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nearby-section:hover .nearby-image-box img {
    transform: scale(1.05);
}


/* Photo Gallery */
.gr-gallery-section {
    background: linear-gradient(to bottom, var(--light-bg), rgba(248, 245, 240, 0.8), rgba(212, 175, 55, 0.08));
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.gr-gallery-header {
    margin-bottom: 60px;
    padding: 0 20px;
}

.gr-gallery-header .gr-subheading {
    color: var(--text-color-on-light);
    margin-bottom: 15px;
}

.gr-gallery-header h2 {
    font-size: 3.2em;
    font-weight: 600;
    color: var(--text-color-on-light);
    margin: 15px 0;
}

.gr-gallery-description {
    font-size: 1.1em;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- FIX: Updated the grid definition --- */
.gr-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Set auto row height to maintain aspect ratio based on width */
    grid-auto-rows: minmax(150px, auto);
    gap: 25px;
    width: 100%;
    max-width: 1200px; /* Control max size */
    margin: 40px auto;
    padding: 0;
}

.gr-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- FIX: Added specific placement rules for each image --- */
/* Tall image on the left */
.gr-gallery-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
/* Wide image on top */
.gr-gallery-item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}
/* Tall image on the right */
.gr-gallery-item:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}
/* Bottom-left square image */
.gr-gallery-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
/* Bottom-right square image */
.gr-gallery-item:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* --- (These helper classes are no longer needed for this layout) --- */
.gr-gallery-item--tall { }
.gr-gallery-item--wide { }


.gr-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gr-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gr-gallery-item:hover img {
    transform: scale(1.05);
}

.gr-explore-gallery-btn {
    display: inline-block;
    background: var(--accent-gold); /* Using global accent-gold */
    color: #153060 !important;
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.gr-explore-gallery-btn:hover {
    background-color: var(--brand-red); /* Using global brand-red */
    color: #c5a059 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Lightbox Styles */
.gr-gallery-preview {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gr-gallery-preview.show {
    display: flex;
    opacity: 1;
}

.gr-preview-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    text-align: center;
}

.gr-preview-content img {
    max-height: 80vh;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

#preview-caption {
    color: white;
    font-size: 1.2em;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
}

.gr-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.gr-close-btn:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.gr-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    background: rgba(0,0,0,0.3);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gr-prev-btn {
    left: 30px;
}

.gr-next-btn {
    right: 30px;
}

.gr-nav-btn:hover {
    background: rgba(0,0,0,0.6);
    transform: translateY(-50%) scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* ========================================= */
/*      Responsive Styles for Mobile         */
/*             & Tablet Devices              */
/* ========================================= */

/* For Tablets and smaller devices (max-width: 992px) */
@media (max-width: 992px) {

    /* --- Rooms Section Adjustments --- */
    .main-room-section-header h2 {
        font-size: 2.5em; /* Slightly smaller heading */
    }

    .nearby-section {
        flex-direction: column; /* Stack room content and image vertically */
        perspective: none; /* Disable 3D perspective on smaller screens */
    }
    
    /* Ensure the alternating layout still works */
    .room-image-left {
        flex-direction: column-reverse; /* Put image on top if it's supposed to be left */
    }

    .nearby-list-box,
    .nearby-image-box {
        width: 100%; /* Make both containers full-width */
        max-width: 500px; /* Limit max-width for better readability on tablets */
        margin: 0 auto;
        transform: none !important; /* Remove all rotations and transforms */
        box-shadow: 0 8px 20px -5px rgba(0,0,0,0.1) !important; /* Unify box-shadow */
        min-height: auto;
    }
    
    .nearby-image-box {
        margin-bottom: 20px; /* Add space between image and text content */
    }
    
    .nearby-section:hover .nearby-list-box,
    .nearby-section:hover .nearby-image-box {
        transform: translateY(-5px) !important; /* Simple lift effect on hover */
    }
    
    .nearby-section:hover .nearby-image-box img {
        transform: scale(1.03);
    }
    
    .room-image-left .nearby-list-box {
         margin-top: 20px; /* Add space between image and text content */
         margin-bottom: 0px;
    }


    /* --- Photo Gallery Adjustments for Tablets --- */
    .gr-gallery-header h2 {
        font-size: 2.8em;
    }
    
    .gr-gallery-masonry {
        /* Change to a 2-column grid layout */
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
        padding: 0 20px;
    }

    /* Reset all grid item placements */
    .gr-gallery-item:nth-child(1),
    .gr-gallery-item:nth-child(2),
    .gr-gallery-item:nth-child(3),
    .gr-gallery-item:nth-child(4),
    .gr-gallery-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    /* --- Lightbox Adjustments for Tablets --- */
    .gr-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    .gr-prev-btn { left: 15px; }
    .gr-next-btn { right: 15px; }
    .gr-close-btn { top: 15px; right: 15px; }
}


/* For Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    
    /* --- Rooms Section Adjustments for Mobile --- */
    .gr-rooms-section {
        padding: 20px 0;
    }

    .main-room-section-header {
        margin-bottom: 40px;
    }

    .main-room-section-header h2 {
        font-size: 2em; /* Smaller headings for mobile */
    }
    
    .main-room-description {
        font-size: 1em;
        line-height: 1.6;
    }

    .nearby-list-box {
        padding: 20px; /* Reduce padding on smaller screens */
    }
    
    .nearby-section-headline {
        font-size: 1.6em; /* Smaller room titles */
    }
    
    .room-features-list li {
        font-size: 14px;
    }

    /* --- Photo Gallery Adjustments for Mobile --- */
    .gr-gallery-section {
        padding: 10px 0 20px;
    }
    .gr-gallery-header {
        margin-bottom: 40px;
    }
    
    .gr-gallery-header h2 {
        font-size: 2.2em;
    }

    .gr-gallery-masonry {
        /* Stack all images in a single column */
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 0 15px;
    }
    
    .gr-explore-gallery-btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    /* --- Lightbox Adjustments for Mobile --- */
    .gr-preview-content {
        max-width: 90%; /* Allow slightly more screen space */
    }
}






/* ATTRACTIONS SECTION STYLING */
#attractions-interactive-map {
    padding: 60px 20px;
    overflow: hidden;
}

#attractions-interactive-map .container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #153060;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.attractions-layout-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

/* ATTRACTION BOXES (Left and Right Sides) */
.attractions-side {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.left-side { order: 1; }
.right-side { order: 3; }

.attraction-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    min-height: 200px; /* Ensures consistent height */
}

.attraction-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #c5a059;
}

.attraction-box.active {
    border-color: #c5a059;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.4);
    transform: translateY(-5px);
    background: #fffef7;
}

.attraction-title {
    font-size: 1.5rem;
    color: #153060;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.attraction-icon { font-size: 1.4rem; color: #c5a059; }
.attraction-description { flex-grow: 1; color: #555; font-size: 1rem; line-height: 1.6; margin-bottom: 20px; }
.attraction-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.feature-tag { background: #f0f0f0; padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; color: #333; }

/* MAP CONTAINER (Center) */
.map-container {
    flex: 2.5; /* Give map more space */
    max-width: 900px;
    order: 2;
    display: flex;
    flex-direction: column;
}

.map-title {
    font-size: 1.8rem;
    color: #153060;
    text-align: center;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.map-title i { color: #c5a059; }

.map-area {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    min-height: 700px;
    border: 1px solid #ccc;
}

#map { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #e9e9e9; z-index: 1; }

.journey-progress { width: 90%; margin: 20px auto 0; height: 6px; background: rgba(0,0,0,0.1); border-radius: 3px; overflow: hidden; display: none; }
.progress-bar { height: 100%; background: linear-gradient(to right, #153060, #c5a059); width: 0%; transition: width 0.3s ease; }

.instructions { background: #fff; border-radius: 15px; padding: 15px; margin-top: 25px; text-align: center; color: #555; border: 1px solid #ddd; }
.instructions i { color: #c5a059; }

.controls { display: flex; justify-content: center; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.control-btn { padding: 12px 25px; background: #153060; color: white; border: none; border-radius: 30px; cursor: pointer; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.control-btn:hover { background: #c5a059; color: #153060; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* POPUP, CHARACTER, & LOADING STYLES */
.character-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; box-shadow: 0 5px 20px rgba(0,0,0,0.3); border: 3px solid #153060; }
.character-icon.walking { animation: walkAnimation 0.6s infinite alternate; }
.character-head { width: 30px; height: 30px; background: #f8e9c9; border-radius: 50%; position: relative; }
.character-eye { position: absolute; width: 6px; height: 6px; background: #153060; border-radius: 50%; top: 10px; }
.eye-left { left: 7px; } .eye-right { right: 7px; }
.character-body { width: 35px; height: 25px; background: #c5a059; border-radius: 10px 10px 0 0; }
@keyframes walkAnimation { 100% { transform: translateY(-5px) rotate(-2deg); } }

.info-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; max-width: 95vw; background: rgba(255, 255, 255, 0.98); border-radius: 20px; padding: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); z-index: 10000; display: none; border: 3px solid #c5a059; backdrop-filter: blur(10px); }
.popup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #f0e2c8; }
.popup-title { font-size: 2rem; color: #153060; gap: 15px; display: flex; align-items: center;}
.close-popup { background: #153060; color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; transition: all 0.3s ease; }
.close-popup:hover { background: #0d1f40; transform: rotate(90deg); }
.popup-features { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.popup-feature { background: #f0f0f0; padding: 6px 14px; border-radius: 20px; font-size: 0.9rem; }
.hotel-info { background: #fff9ed; border-left: 4px solid #c5a059; padding: 15px; margin: 20px 0; border-radius: 0 10px 10px 0; }

.loading-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.9); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 1001; transition: opacity 0.5s; }
.loading-overlay p { font-size: 1.2rem; color: #555; }
.loading-spinner { width: 60px; height: 60px; border: 5px solid rgba(197, 160, 89, 0.3); border-radius: 50%; border-top-color: #c5a059; animation: spin 1s linear infinite; margin-bottom: 20px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) { /* Tablet layout */
    .attractions-layout-container {
        flex-direction: column;
        align-items: center;
    }
    .map-container { order: 1; min-width: 90%; width: 100%; max-width: 800px; }
    .attractions-side {
        order: 2;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 90%;
        min-width: 0;
    }
}

@media (max-width: 768px) { /* Mobile layout */
    #attractions-interactive-map { padding: 40px 15px; }
    .section-header h2 { font-size: 2.2rem; }
    .map-area { min-height: 500px; }
    .attractions-side {
        flex-direction: column; /* Stack attraction boxes vertically on mobile */
        align-items: center;
        max-width: 100%;
    }
    .attraction-box { width: 100%; max-width: 400px; }
    .popup-title { font-size: 1.6rem; }
}