/* CSS Variables for consistent theming - Enhanced & Color Updated */
:root {
    /* Your New Color Palette */
    --red-main: #e31b23;
    --light-orange: #f5ab52;
    --dark-orange: #e8742d;

    /* Mapped Theme Colors */
    --primary: var(--red-main); /* Gold/Bronze -> Red */
    --primary-light: var(--light-orange);
    --primary-dark: var(--dark-orange);
    --secondary: var(--dark-orange); /* Dark Blue -> Dark Orange (for text on light bg, often paired with red accents) */

    /* Neutral Colors (kept for readability/functionality) */
    --text-light: #ffffff; /* White */
    --text-normal: #f0f0f0; /* Off-white */
    --text-muted: var(--dark-orange); /* Muted text */
    --text-on-light: #343a40; /* Dark Gray for main body text on light bg */
    --gray: #6c757d; /* Mid-gray */
    --light-gray: #e9ecef; /* Very light gray */
    --white: #ffffff;
    --black: #000000;
    --dark-bg-hero: #1a1a1a; /* Very dark background for Hero left panel, essential for text contrast */
    --bg-color-rooms-dark: #1a1a1a; /* Specific dark for rooms sections for contrast */
    --background-light: var(--white); /* Defined this missing variable, assuming light background is white */

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-heading-hero: 'Lora', serif; /* For Hero section specific heading */
    --font-heading-rooms: 'Cormorant Garamond', serif; /* For Rooms section specific heading */

    /* Transitions & Shadows */
    --transition: all 0.4s ease-in-out;
    --transition-fast: all 0.2s ease-out;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;

    /* Room Section Specific */
    --card-color: var(--white);
    --border-color-rooms: #e9ecef;
    --text-secondary: black;
}

/* Base Styles - Refined */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body); /* Uses font-body */
    line-height: 1.7;
    color: var(--text-on-light);
    background-color: var(--background-light); /* Uses the defined variable */
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1500px !important; /* Slightly wider container */
    margin: 0 auto;
    padding: 0 25px; /* Increased padding */
}

.section {
    padding: 50px 0; /* More generous padding */
    position: relative;
    z-index: 1; /* Ensure content is above dividers */
    /* Animation related */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 70px; /* More space */
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-family: var(--font-display); /* Uses font-display */
    font-size: 3.2rem; /* Larger title */
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px; /* Lower underline */
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Longer underline */
    height: 4px; /* Thicker underline */
    background: linear-gradient(to right, var(--primary-light), var(--primary)); /* Gradient underline */
    border-radius: 2px;
}

.section-title p {
    font-family: var(--font-body); /* Uses font-body */
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.btn {
    display: inline-flex; /* Use flex for alignment */
    align-items: center;
    justify-content: center;
    padding: 14px 35px; /* Larger buttons */
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius); /* Consistent border-radius */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
    font-family: var(--font-body); /* Uses font-body */
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px); /* More pronounced lift */
    box-shadow: var(--shadow);
}

.btn i {
    margin-right: 8px; /* Icon spacing */
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}


/* =========================================
   Header Styles - Base (Desktop First)
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px); /* Frosted glass effect */
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

header.scrolled {
    padding: 8px 0; /* Slightly smaller when scrolled */
    box-shadow: var(--shadow);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.3s ease-in-out;
}

header.scrolled .header-container {
    padding: 10px 0;
}

/* Keep this for alignment */
.logo {
    display: flex;
    align-items: center;
}

/* 
  NEW CSS: Style the image itself.
  This controls the size of your logo.
*/
.logo img {
    width: 140px; /* Or whatever size you prefer */
    height: 100px;  /* This maintains the aspect ratio */
}

/* 
   DELETE or COMMENT OUT these old rules,
   as they no longer apply to the image logo.

.logo h1 { ... }
.logo span { ... }
*/

.nav-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none; /* Good practice to remove default list styles */
}

.nav-menu li {
    margin: 0 20px; /* More spacing */
}

.nav-menu a {
    color: var(--text-on-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0; /* Add padding for a better clickable area */
    text-decoration: none; /* Good practice */
    font-family: var(--font-body); /* Uses font-body */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 3px; /* Thicker underline */
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover, .nav-menu a.active-link {
    color: var(--primary);
}

.nav-menu a:hover::after, .nav-menu a.active-link::after {
    width: 100%;
}

.header-btns {
    display: flex;
    align-items: center;
}

.header-btns .btn {
    margin-left: 20px;
}

.hamburger {
    display: none; /* Hidden by default on desktop */
    cursor: pointer;
    padding: 10px;
    background-color: rgba(0,0,0,0.02);
    border-radius: var(--border-radius);
    margin-left: 20px;
    z-index: 1001; /* Must be higher than the mobile menu */
}

.hamburger div {
    width: 28px; /* Slightly larger */
    height: 4px; /* Thicker bars */
    background-color: var(--secondary);
    margin: 6px 0; /* More spacing */
    transition: var(--transition-fast);
    border-radius: 2px;
}


/* =========================================
   Responsive & Mobile Menu Styles
   ========================================= */

/* Apply these styles only on screens 992px wide or smaller (Tablets and Phones) */
@media (max-width: 992px) {

    /* --- Show the Hamburger and Hide the "Book Now" Button --- */
    .hamburger {
        display: block; /* Show the hamburger icon */
    }

    .header-btns .btn {
        display: none; /* Hide the desktop "Book Now" button */
    }

    /* --- The Mobile Navigation Menu Panel (Default Hidden State) --- */
    .nav-menu {
        position: fixed;        /* Take it out of the normal page flow */
        top: 0;                 /* Position from the top of the viewport */
        left: 0;                /* Position from the left */
        height: 100vh;          /* Make it full height of the screen */
        width: 50%;             /* Make it half the width of the screen */
        max-width: 320px;       /* Set a max-width for larger tablets */
        background-color: #ffffff; /* Solid white background */
        box-shadow: var(--shadow);
        padding: 100px 30px 30px; /* Add padding for menu items */
        
        /* Arrange links vertically */
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align text to the left */
        
        /* This is the magic: Initially hide it off-screen to the left */
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth slide animation */
        z-index: 1000; /* Behind the hamburger but above page content */
    }

    /* --- The Active/Visible State of the Mobile Menu --- */
    .nav-menu.active {
        /* When active, slide it into view */
        transform: translateX(0);
    }
    
    .nav-menu li {
        margin: 15px 0; /* Add vertical spacing between links */
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.2rem; /* Make link text larger for mobile */
    }

    /* --- Body Scroll Lock --- */
    /* This class is added by your JavaScript when the menu is open */
    body.no-scroll {
        overflow: hidden; /* Prevents background from scrolling */
    }

    /* --- Animate Hamburger Icon to an "X" when Active --- */
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0; /* Fade out the middle bar */
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }
}

/* ============================================= */
/*           Base Desktop Styles                 */
/* ============================================= */

/* Hero Section Layout - MODIFIED FOR WIDER IMAGE SECTION */
.hero {
    display: grid;
    grid-template-columns: 2fr 3fr; /* 40/60 split */
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Left Content Panel */
.hero-content-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem;
    z-index: 5;
    overflow: hidden;
    background-color: #e31b23;
    color: #ffffff;
}

/* Animated Bubble Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-bg circle {
    fill: #f5ab52;
    opacity: 0;
    animation: float 25s infinite ease-in-out alternate;
}

.animated-bg circle:nth-child(1) {
    animation-duration: 25s;
    animation-delay: -5s;
}

.animated-bg circle:nth-child(2) {
    animation-duration: 20s;
    animation-delay: -10s;
}

/* UPDATED KEYFRAMES FOR VISIBILITY */
@keyframes float {
    from {
        transform: translateY(20%) translateX(10%) scale(0.8);
        opacity: 0.3; /* INCREASED from 0.05 */
    }
    to {
        transform: translateY(-20%) translateX(-10%) scale(1.2);
        opacity: 0.6; /* INCREASED from 0.15 */
    }
}

.content-wrapper {
    max-width: 550px;
    transition: opacity 0.4s ease-in-out;
    margin-left: -50px;
}

.welcome-text {
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Arial', sans-serif;
}

.arrow-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #f5ab52;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Heading & Typing Area */
.hero h1 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    min-height: 2.2em;
    position: relative;
}

.hero h1 span {
    display: block;
    height: 1.1em;
    white-space: nowrap;
    position: relative;
}

/* Enhanced Pen Icon Styling */
#pen-icon {
    position: absolute;
    height: 45px;
    width: 45px;
    fill: #f5ab52;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.1s linear;
    z-index: 10;
    top: 0;
    left: 0;
}

/* Invisible cursor for position calculation */
.typing-cursor {
    position: absolute;
    visibility: hidden;
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    white-space: pre;
    pointer-events: none;
    z-index: -1;
}

.hero-btn {
    display: inline-block;
    background-color: #f5ab52;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    margin-top: 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.hero-btn:hover {
    background-color: #d99036;
}

/* Slider Dots & Shapes */
.slider-dots {
    position: absolute;
    bottom: 8rem;
    left: 5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background-color: transparent;
    border-color: #ffffff;
    transform: scale(1.5);
}

.shape {
    position: absolute;
    background-color: #f5ab52;
    z-index: -1;
    border-radius: 50%;
}

.shape-1 { width: 250px; height: 250px; top: -80px; left: -100px; opacity: 0.2; }
.shape-2 { width: 800px; height: 800px; left: -200px; bottom: -500px; opacity: 0.1; }
.shape-3 { width: 45px; height: 45px; background: transparent; border: 1px solid rgba(255, 255, 255, 0.5); left: 5rem; bottom: 2.5rem; opacity: 0.8; }

/* Slider Panel & Ken Burns - MODIFIED FOR ALL SCREENS */
.hero-slider-panel { position: relative; height: 90%; margin-top: 140px !important; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 0; overflow: hidden; }
.hero-slide.active { opacity: 1; z-index: 1; }

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: none !important;
}

/* ============================================= */
/*           Media Queries for Smaller Screens   */
/* ============================================= */

/* Mobile & Tablet Styles (Max-width 932px) */
@media (max-width: 1040px) {
    .hero-slide.active .slide-bg {
        animation: none !important;
        transform: scale(1) !important;
    }

    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }

    .hero-content-panel {
        padding: 3rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        min-height: auto;
    }

    .welcome-text {
        justify-content: center;
    }

    .content-wrapper {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-slider-panel {
        height: 50vh;
        margin-top: 70px !important;
    }

    .slider-dots {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        left: unset;
        bottom: unset;
        padding-bottom: 2rem;
        padding-left: 0;
        margin-left: 300px !important;
    }

    .shape-1, .shape-2 {
        display: none;
    }

    .shape-3 {
        left: 1.5rem;
        bottom: 1.5rem;
    }
}

/* Additional media query for slightly larger tablets if needed, e.g., for `max-width: 1024px` */
@media (min-width: 933px) and (max-width: 1024px) {
    .hero-slide.active .slide-bg {
        animation: none !important;
        transform: scale(1) !important;
    }
}
/* ============================================= */
/*           About Section Styles                */
/* ============================================= */
/* About Section - Redesigned */
.about {
    background-color: var(--white);
    /* Adding standard padding, adjust as needed */ 
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image slightly smaller */
    gap: 80px; /* More gap */
    align-items: center;
    /* Adding max-width and centering for large desktops */
    margin: 0 auto;
}

.about-content h3 {
    font-family: var(--font-display); /* Uses font-display */
    font-size: 2.5rem; /* Larger heading */
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 20px;
    color: black;
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: var(--font-body); /* Uses font-body */
}

.about-features {
    margin: 35px 0 45px; /* More padding */
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 18px; /* More spacing */
    font-size: 1.05rem;
    color: var(--secondary);
    font-weight: 500;
    font-family: var(--font-body); /* Uses font-body */
}

.about-feature i {
    color: var(--primary);
    font-size: 1.4rem; /* Larger icon */
    margin-right: 18px;
    background-color: var(--primary-light);
    padding: 6px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--primary); /* Red frame */
    transform: rotate(-3deg); /* Slight rotation */
    transition: var(--transition);
}
.about-image img:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 2px dashed var(--primary-light); /* Dashed frame for artistic effect */
    border-radius: var(--border-radius);
    z-index: -1;
    transform: rotate(2deg);
    transition: var(--transition);
}
.about-image:hover::before {
    transform: rotate(0deg);
    border: 2px solid var(--primary);
}



/* ============================================= */
/*          Responsive Styles with Fixes         */
/* ============================================= */

/* For Tablets and smaller devices (e.g., screen width below 1024px) */
@media (max-width: 1180px) {

    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }

    .hero-content-panel {
        min-height: 80vh; 
        padding: 4rem 2rem;
        text-align: center;
        align-items: center;
    }

    /* FIX: Make animated background slightly more visible on smaller screens */
    /* NOTE: The pen and this background will show properly with existing fixes */
    @keyframes float {
        from {
            transform: translateY(20%) translateX(10%) scale(0.8);
            opacity: 0.1;
        }
        to {
            transform: translateY(-20%) translateX(-10%) scale(1.2);
            opacity: 0.2;
        }
    }

    .content-wrapper {
        margin-left: 0;
        max-width: 100%;
    }
    
    .welcome-text {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.8rem; 
        min-height: 2.2em;
    }
    
    /* FIX: Match typing-cursor font size to h1 to keep pen position accurate */
    .typing-cursor {
        font-size: 2.8rem; 
    }

    .slider-dots {
        left: 50%;
        bottom: 2.5rem;
        transform: translateX(-50%);
    }

    .shape, .shape-1, .shape-2 { 
        display: none; 
    }
    .shape-3 {
        display: block; 
        left: 2rem;
        bottom: 2rem;
    }
    
    @media (max-width: 1180px) {
    .hero-slider-panel {
        height: 100vh;
        min-height: 700px;
        margin-top: 70px !important;
    }
    }

    /*
     * =============================================
     *     NEW FIX: ABOUT SECTION RESPONSIVE
     * =============================================
     */
    .about-container {
        /* Change to a single column layout */
        grid-template-columns: 1fr;
        /* Reduce the gap for a stacked layout */
        gap: 50px;
    }

    .about-content {
        /* Center heading and paragraph text */
        text-align: center;
    }
    
    .about-feature {
        /* Align features to the left within the centered text block for readability */
        justify-content: flex-start;
        text-align: left;
        /* Add max-width and auto margin to center the whole block */
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
    }
}


/* For small mobile phones (e.g., screen width below 480px) */
@media (max-width: 480px) {

    .hero-content-panel {
        min-height: 70vh;
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem; /* Adjusted for smaller screens */
        line-height: 1.2;
    }

    /* FIX: Match typing-cursor font size to h1 again for smallest screens */
    .typing-cursor {
        font-size: 2.2rem; /* Adjusted for smaller screens */
    }
    
    .hero-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* NEW FIX: Further adjustments for About Section on small mobiles */
    .about {
        padding: 4rem 1.5rem;
    }

    .about-content h3 {
        font-size: 2rem;
    }
}


/*
        **********************************************************
        * START: Styles for Amenities Section Background
        **********************************************************
        */
        #amenities {
            position: relative;
            padding: 100px 20px;
            overflow: hidden;
            z-index: 1;
        }

        .amenities-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        #amenities .section-title {
            text-align: center;
        }

        /* Using one of the new colors for the title gradient */
        #amenities .section-title h2 {
            font-family: var(--font-display); /* Uses font-display */
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #f5a960, #ffd2a8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        #amenities .section-title p {
            font-family: var(--font-body); /* Uses font-body */
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            margin: 0 auto 30px;
            font-weight: 300;
        }

        .svg-background-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 30%;
            z-index: 1;
            overflow: hidden;
            transform: rotate(180deg);
        }

        .svg-background-top svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .svg-background {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            z-index: 1;
            overflow: hidden;
        }

        .svg-background svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /*
        **********************************************************
        * START: Horizontal Timeline for Amenities (Your Original Styles)
        **********************************************************
        */
        .timeline-container {
            position: relative;
            padding-top: 110px;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary-light), var(--primary));
            transform: translateY(-50%);
            z-index: 1;
        }

        .timeline-progress {
            position: absolute;
            top: 50%;
            left: 0;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--primary));
            transform: translateY(-50%);
            z-index: 2;
            width: 0%;
            transition: width 0.5s ease;
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 3;
        }

        .timeline-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 160px;
            cursor: pointer;
            transition: var(--transition);
        }

        .timeline-marker {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--white);
            border: 4px solid var(--primary-light);
            margin-bottom: 20px;
            position: relative;
            z-index: 4;
            transition: var(--transition);
        }

        .timeline-item.active .timeline-marker {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.3);
            box-shadow: 0 0 0 8px rgba(227, 31, 36, 0.2);
        }

        .timeline-content {
            text-align: center;
            opacity: 0.7;
            transform: translateY(10px);
            transition: var(--transition);
            width: 160px;
        }

        .timeline-item.active .timeline-content {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-icon {
            font-size: 2rem;
            color: var(--primary-light);
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .timeline-item.active .timeline-icon {
            color: var(--primary);
            transform: scale(1.2);
        }

        .timeline-content h3 {
            font-family: var(--font-display); /* Uses font-display */
            font-size: 1.1rem;
            font-weight: 600;
            color: black;
            margin-bottom: 8px;
        }

        .timeline-content p {
            color: black;
            font-size: 0.85rem;
            line-height: 1.4;
            font-family: var(--font-body); /* Uses font-body */
        }

        .amenity-details-wrapper {
            position: relative;
            min-height: 400px;
            margin-top: 20px;
            margin-bottom: 40px;
        }

        .amenity-detail {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(20px);
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .amenity-detail.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
        }

        .detail-image {
            width: 45%;
            height: 300px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            flex-shrink: 0;
        }

        .detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .amenity-detail:hover .detail-image img {
            transform: scale(1.05);
        }

        .detail-content {
            width: 55%;
            padding: 0 0 0 40px;
        }

        .detail-content h3 {
            font-family: var(--font-display); /* Uses font-display */
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .detail-content p {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.7;
            font-family: var(--font-body); /* Uses font-body */
        }

        /*
        **********************************************************
        * START: Improved Responsive Adjustments
        **********************************************************
        */
        @media (max-width: 1200px) {
            .timeline-item {
                width: 140px;
            }
            .timeline-content {
                width: 140px;
            }
        }

        @media (max-width: 992px) {
            .amenity-detail {
                flex-direction: column;
                padding: 30px;
                align-items: stretch;
            }
            .detail-image {
                width: 100%;
                height: 250px;
                margin-bottom: 25px;
            }
            .detail-content {
                width: 100%;
                padding: 0;
            }
            
            /* Timeline adjustments for tablet */
            .timeline {
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;
            }
            .timeline-item {
                width: calc(33.33% - 30px);
                margin-bottom: 20px;
            }
            .timeline-line {
                display: none;
            }
            .timeline-progress {
                display: none;
            }
            .timeline-container {
                padding-top: 60px;
            }
        }

        @media (max-width: 1180px) {
            #amenities {
                padding: 100px 20px;
            }
            #amenities .section-title h2 {
                font-size: 2.5rem;
            }
            #amenities .section-title p {
                font-size: 1.1rem;
            }
            
            /* Timeline adjustments for mobile */
            .timeline {
                gap: 20px;
            }
            .timeline-item {
                width: calc(50% - 20px);
            }
            .svg-background,
            .svg-background-top {
                height: 20%;
            }
            
            .amenity-details-wrapper {
                min-height: 500px;
            }
        }

        @media (max-width: 576px) {
            #amenities {
                padding: 100px 15px;
            }
            #amenities .section-title h2 {
                font-size: 2rem;
            }
            #amenities .section-title p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            /* Timeline adjustments for small mobile */
            .timeline {
                gap: 15px;
            }
            .timeline-item {
                width: 100%;
                max-width: 250px;
                margin: 0 auto 15px;
            }
            .timeline-content {
                width: 100%;
            }
            .timeline-icon {
                font-size: 1.8rem;
            }
            .timeline-content h3 {
                font-size: 1rem;
            }
            .timeline-content p {
                font-size: 0.8rem;
            }
            
            .amenity-detail {
                padding: 20px;
            }
            .detail-image {
                height: 200px;
            }
            .detail-content h3 {
                font-size: 1.5rem;
            }
            
            .svg-background,
            .svg-background-top {
                height: 15%;
            }
        }

        @media (max-width: 400px) {
            .timeline-item {
                max-width: 100%;
            }
            .detail-content h3 {
                font-size: 1.3rem;
            }
            .amenity-details-wrapper {
                min-height: 550px;
            }
        }





/**
 * Rooms Section Stylesheet
 * --------------------------------------
 * This stylesheet defines the layout and appearance of the rooms section,
 * which includes a grid layout, title blocks, room cards, and buttons.
 *
 * TABLE OF CONTENTS
 * -----------------
 * 1. LAYOUT: Rooms Grid
 * 2. COMPONENT: Main Title Block
 * 3. COMPONENT: Room Card
 * 4. COMPONENT: Explore All Block
 * 5. COMPONENT: Buttons
 */


/* --- 1. LAYOUT: Rooms Grid --- */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch; /* Ensures all grid items are the same height */
}

.grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--card-color);
    box-sizing: border-box; /* Ensures padding does not affect the final dimensions */
}

/* Modifier to remove background for specific grid items */
.grid-item.main-title-block,
.grid-item.explore-all {
    background-color: transparent;
}


/* --- 2. COMPONENT: Main Title Block --- */

.main-title-block {
    padding-right: 40px; /* Provides spacing from adjacent content */
}

.main-title-block h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--primary); /* Red */
    font-family: var(--font-body); /* Uses font-body */
}

.main-title-block h1 {
    /* Positioning for decorative lines */
    position: relative;

    /* Box Model */
    margin: 15px 0 0 0;
    padding: 10px 0;

    /* Typography */
    font-family: var(--font-heading-rooms); /* Uses font-heading-rooms */
    font-size: 50px;
    line-height: 1.2;
    text-align: center;
    color: var(--text-on-light);
}

/* Decorative lines above and below the main title */
.main-title-block h1::before,
.main-title-block h1::after {
    content: '';
    position: absolute;
    left: 50%; /* Change: Position the start of the line at the center */
    transform: translateX(-50%); /* Add: Shift the line back by half its own width */
    width: 80px;
    height: 3px;
    background-color: var(--primary); /* Red */
}

.main-title-block h1::before {
    top: -5px;
}

.main-title-block h1::after {
    bottom: -5px;
}


/* --- 3. COMPONENT: Room Card --- */

.room-card {
    flex-direction: row; /* Overrides .grid-item's column direction for a side-by-side layout */
    padding: 0; /* Cards handle their own internal padding */
    overflow: hidden;
}

.room-image,
.room-content {
    flex: 0 0 50%; /* Each section takes up exactly half the card's width */
}

.room-image {
    position: relative;
    min-height: 495px;
}

.room-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
}

.price {
    position: absolute;
    top: 20px;
    right: 0;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light); /* White */
    background-color: var(--primary); /* Red */
    font-family: var(--font-body); /* Uses font-body */
}

.room-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

/* Category Title, e.g., "Superior Room" */
.room-content > span:first-of-type {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--gray); /* Mid-gray */
    font-family: var(--font-body); /* Uses font-body */
}

.room-content h3 {
    margin: 5px 0 15px 0;
    font-family: var(--font-heading-rooms); /* Uses font-heading-rooms */
    font-size: 32px;
    color: var(--text-on-light);
}

.stars {
    margin-bottom: 20px;
    color: var(--primary); /* Red */
}

.stars i {
    margin-right: 4px;
}

.room-content p {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-family: var(--font-body); /* Uses font-body */
}

.features {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    color: var(--text-on-light);
    font-family: var(--font-body); /* Uses font-body */
}

.features span i {
    margin-right: 10px;
    font-size: 18px;
    color: var(--primary); /* Red */
}


/* --- 4. COMPONENT: Explore All Block --- */

.explore-all {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.explore-all h4 {
    font-family: var(--font-body); /* Uses font-body for h4 in explore-all */
}

.explore-all h1 {
    font-family: var(--font-heading-rooms); /* Uses font-heading-rooms for h1 in explore-all */
}

.explore-all .btn-secondary-rooms i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.explore-all .btn-secondary-rooms:hover i {
    transform: translateX(5px);
}


/* --- 5. COMPONENT: Buttons --- */

/* Base button styles, scoped to the rooms section to avoid conflicts */
.btn-primary-rooms,
.btn-secondary-rooms {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid transparent; /* Reserve space for border on hover */
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-body); /* Uses font-body for rooms buttons */
}

.btn-primary-rooms {
    border-color: var(--primary); /* Red */
    background-color: var(--primary); /* Red */
    color: var(--bg-color-rooms-dark); /* Dark BG color */
}

.btn-primary-rooms:hover {
    background-color: transparent;
    color: var(--primary); /* Red */
}

.btn-secondary-rooms {
    border-color: var(--border-color-rooms);
    color: var(--text-secondary);
}

.btn-secondary-rooms:hover {
    border-color: var(--primary); /* Red */
    color: var(--text-on-light);
}


/* --- Updated Gallery Section with Hexagon Tech Background --- */
#gallery {
    position: relative;
    /* Combines the base color with the new hexagon SVG pattern */
    /* THE CHANGE: I've increased the pattern's opacity from 0.05 to 0.1 for better visibility. */
    background: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cdefs%3E%3Cpattern%20id%3D%22p%22%20width%3D%22100%22%20height%3D%22173.205%22%20patternUnits%3D%22userSpaceOnUse%22%3E%3Cg%20fill%3D%22%23e31f24%22%20opacity%3D%220.1%22%3E%3Cpath%20d%3D%22M50%2086.602l50-28.867v57.735l-50%2028.867-50-28.867V57.735zM50%2028.867L100%200v57.735L50%2086.602%200%2057.735V0zM-50%2086.602l50-28.867v57.735l-50%2028.867-50-28.867V57.735zM-50%2028.867L0%200v57.735L-50%2086.602l-50-28.867V0zM150%2086.602l50-28.867v57.735l-50%2028.867-50-28.867V57.735zM150%2028.867L200%200v57.735l-50%2028.867-50-28.867V0z%22/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22url%28%23p%29%22/%3E%3C/svg%3E');

    /* Add balanced padding to the top and bottom */
    padding-top: 80px;
    padding-bottom: 80px;
}

.gallery-subtitle {
     color: var(--secondary);
     font-size: 1.5rem;
     font-weight: 500;
     letter-spacing: 0.05em;
     font-family: var(--font-body); /* Uses font-body */
}

#gallery h3 {
     color: var(--red-main);
     font-family: var(--font-display); /* Uses font-display for gallery h3 */
}

/* --- Gallery Modal Styles --- */
/*
  The 'hidden' class from Tailwind CSS handles visibility by default.
  This block provides custom transition styling when the 'active' class is added.
*/
#gallery-modal.active {
    visibility: visible;
    opacity: 1;
} 


/* Attractions Section Styles */
.attractions-header {
    text-align: center;
    margin-bottom: 40px;
}
.attractions-header .unique-slider-title {
    color: var(--secondary); /* Dark Orange for titles */
    font-family: var(--font-display); /* Uses font-display */
    font-size: 3.2rem;
    font-weight: 700;
}


.attractions-container {
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.attraction-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.5s ease;
    transform-style: preserve-3d;
    position: relative;
    height: 100%;
}

.attraction-card:hover {
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.3);
}

.attraction-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform-origin: center center;
}

.attraction-info {
    padding: 25px;
    transform: translateZ(40px);
    background: var(--white);
}

.attraction-title {
    font-family: var(--font-display); /* Uses font-display */
    font-weight: 300;
    margin: 10px 0;
    transition: all 0.4s ease;
    color: var(--text-on-light);
}

.attraction-card:hover .attraction-title {
    color: var(--red-main); /* Red on hover */
    transform: translateZ(60px) scale(1.05);
}

.attraction-description {
    font-size: 16px;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    font-family: var(--font-body); /* Uses font-body */
}

.read-more-btn {
    padding: 12px 25px;
    background: var(--dark-orange); /* Dark orange button */
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    transform: translateZ(50px);
    font-family: var(--font-body); /* Uses font-body */
}

.read-more-btn:hover {
    background: var(--primary); /* Red hover */
    transform: translateY(-8px) translateZ(70px);
    box-shadow: 0 20px 40px rgba(227, 27, 35, 0.5); /* Red shadow */
}

/* Footer - Redesigned */
footer {
    background-color: #e31b23; /* Dark Orange for footer background */
    color: var(--white);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using the Red Main color for the subtle background wave effect */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23e31b231a' fill-opacity='0.3' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    animation: moveBackgroundReverse 20s linear infinite alternate-reverse;
    z-index: -1;
}

@keyframes moveBackgroundReverse {
    from { background-position: 100% 100%; }
    to { background-position: 0% 0%; }
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.footer-col h3 {
    font-family: var(--font-display); /* Uses font-display */
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: var(--primary-light); /* Light Orange for footer titles */
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary); /* Red */
    border-radius: 2px;
}

.footer-col p {
    margin-bottom: 25px;
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.8;
    font-family: var(--font-body); /* Uses font-body */
}

/* Quick Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    opacity: 0.85;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-family: var(--font-body); /* Uses font-body */
}

.footer-links a i {
    color: #f5ab52; /* Red for icons */
    margin-right: 12px;
    font-size: 1em;
    width: 20px;
    text-align: center;
}

.footer-links a:hover {
    opacity: 1;
    color: #f5ab52; /* Red text on hover */
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    opacity: 0.85;
    font-family: var(--font-body); /* Uses font-body */
}

.footer-contact i {
    margin-right: 15px;
    color: #f5ab52; /* Red */
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background-color: var(--primary); /* Red */
    transform: translateY(-8px) rotate(10deg);
    border-color: var(--primary-light); /* Light Orange */
    box-shadow: var(--shadow);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    color: var(--light-gray); /* Light gray for copyright text */
    font-family: var(--font-body); /* Uses font-body */
}

/* Floating Back-to-Top Icon */
.floating-icon {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark)); /* Gradient using red/dark orange */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    animation: pulse 2.5s infinite ease-in-out, fade-in-up 0.5s forwards;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.floating-icon.show {
    opacity: 1;
    transform: translateY(0);
}
.floating-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

@keyframes pulse {
    0% { transform: scale(1) translateY(0); box-shadow: 0 0 0 0 rgba(227, 27, 35, 0.7); } /* Red shadow */
    50% { transform: scale(1.05) translateY(-3px); box-shadow: 0 0 0 15px rgba(227, 27, 35, 0); } /* Red shadow */
    100% { transform: scale(1) translateY(0); box-shadow: 0 0 0 0 rgba(227, 27, 35, 0); } /* Red shadow */
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design - Comprehensive Media Queries */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    .about-container {
        gap: 50px;
    }
    .rooms-container, .attractions-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    .section-title {
        margin-bottom: 50px;
    }
    .section-title h2 {
        font-size: 2.8rem;
    }
    .section-title p {
        font-size: 1rem;
    }

    .header-container {
        padding: 15px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-dark); /* Dark orange mobile menu bg */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        padding-top: 60px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 25px 0;
    }

    .nav-menu a {
        color: var(--white);
        font-size: 1.3rem;
        padding: 10px 0;
    }
    .nav-menu a::after {
        background-color: var(--primary-light);
    }
    .nav-menu a:hover, .nav-menu a.active-link {
        color: var(--primary);
    }

    .hamburger {
        display: block;
    }

    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .header-btns .btn {
        display: none;
    }
    .header-btns {
        margin-left: auto;
    }

    /* Hero Section responsiveness for 50-50 desktop */
    .hero { grid-template-columns: 1fr; grid-template-rows: 60vh auto; height: auto; } /* Slider gets more height */
    .hero-content-panel { padding: 2.5rem; height: 100%; justify-content: flex-end; padding-bottom: 5rem; } /* height:100% fits within its row */
    .slider-dots { position: relative; left: 0; bottom: 0; margin-top: 1.5rem; justify-content: center; width: 100%; }
    
    /* MODIFICATION: Animated background remains, Pen Icon restored */
    .shape-3, .shape, .shape-1, .shape-2 { display: none; } /* Other shapes still hidden for simplicity */
    #pen-icon { display: block; } /* Explicitly show pen icon */

    .hero h1 { /* DELETED previous 3rem to allow cascade from 1024px or 768px */
        font-size: 2.8rem; /* Retain consistency from 1024px, or define anew for clarity */
    }
    .typing-cursor { /* ADDED for consistency */
        font-size: 2.8rem;
    }

    .timeline {
        overflow-x: auto;
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 30px;
    }
    .timeline-item {
        flex: 0 0 auto;
    }

    /* Room grid changes */
    .rooms-grid { grid-template-columns: 1fr; gap: 20px;}
    .grid-item.main-title-block, .grid-item.explore-all { padding-right: 0; text-align: center;}
    .main-title-block h1 { font-size: 40px;}
    .main-title-block h1::before, .main-title-block h1::after { left: 50%; transform: translateX(-50%); }

    .room-card { flex-direction: column; }
    .room-image, .room-content { flex: none; width: 100%; }
    .room-image { min-height: 250px; }
    .room-content { padding: 30px 20px;}
    .price { top: 10px; right: 10px; padding: 6px 12px; font-size: 13px;}
    .explore-all { justify-content: center;}
    .explore-all .btn-secondary-rooms {margin-top: 20px;}

    .attraction-card img { height: 280px; }

    .section-wave.bottom-curve { margin-top: -80px; height: 80px; } /* Adjust height for mobile waves */
    .section-wave.top-curve { height: 80px; } /* Adjust height for mobile waves */

}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .section-title p {
        font-size: 0.95rem;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2.4rem; /* MODIFICATION: Adjusted from 2.8rem to 2.4rem for better progressive scaling */
        margin-bottom: 15px;
    }
    .typing-cursor { /* MODIFICATION: Added for consistency with hero h1 */
        font-size: 2.4rem; 
    }

    .hero .welcome-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    .hero .hero-btn {
        width: 95%;
        font-size: 0.9rem;
    }
    .slider-control {
        display: none;
    }

    .about-container {
        gap: 40px;
    }

    .amenities-details-wrapper {
        min-height: 580px;
    }
    .amenity-detail {
        flex-direction: column;
    }
    .detail-image,
    .detail-content {
        width: 100%;
    }
    .detail-image {
        height: 250px;
        margin-bottom: 25px;
    }
    .detail-content {
        padding: 0;
    }

    .timeline-content {
        width: 140px;
    }
    .timeline-content h3 {
        font-size: 1rem;
    }
    .timeline-content p {
        font-size: 0.8rem;
    }


    .room-content h3 {
        font-size: 1.5rem;
    }
    .room-price {
        font-size: 1.3rem;
    }

    .gallery-item {
        height: 250px;
    }
    .gallery-subtitle { font-size: 1.2rem; }
    #recent-gallery-section h3 { font-size: 3rem; }

    footer {
        padding: 60px 0 20px;
    }
    .footer-col h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .footer-newsletter button {
        padding: 0 15px;
        font-size: 1rem;
    }
    .floating-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 25px;
        right: 25px;
    }

    /* Attractions grid stack on small screens */
    .attractions-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    /* MODIFICATION: Removed `transform: none !important;` from here to allow JS to handle */
    /* .attraction-card { transform: none !important; }  -- DELETED */
    .attraction-card img { height: 250px; }
    .attraction-card .read-more-btn:hover { transform: translateY(-5px); } /* Less pronounced */

}

@media screen and (max-width: 480px) {
    .header-container {
        padding: 10px 0;
    }
    .logo h1 {
        font-size: 1.5rem;
    }
    .nav-menu {
        width: 100%;
        right: -100%;
    }

    .hero h1 {
        font-size: 2rem; /* Matches earlier 480px modification */
        margin-bottom: 15px;
    }
    .hero .welcome-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    .hero .hero-btn {
        width: 95%;
        font-size: 0.9rem;
    }
    .slider-control {
        display: none;
    }

    .about-container {
        gap: 40px;
    }

    .amenities-container, .rooms-container, .gallery-container, .attractions-container {
        grid-template-columns: 1fr;
    }
}


/* ---- Footer Logo Styles ---- */

/* This creates the white box BEHIND the logo */
.footer-logo-container {
    background-color: #ffffff;    /* This is the white background */
    padding: 10px;                /* Creates space between the logo and the edge of the white box */
    border-radius: 7px;          /* Optional: Gives the white box soft, rounded corners */
    display: inline-block;        /* Ensures the background only wraps the logo, not the full width */
    margin-bottom: 20px;          /* Adds space between the logo box and the paragraph below it */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for a lifting effect */
}

/* This styles the logo image itself */
.footer-logo-container img {
    width: 130px;      /* Adjust the size of the logo for the footer */
    height: 100px;      /* Maintains the image's aspect ratio */
    display: block;    /* Prevents extra weird space from appearing below the image */
}
























 /* Scoped styles for amenities slider */
.amenities-slider-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.amenities-slider-section .amenities-slider-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #e31b23; /* Updated */
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.amenities-slider-section .amenities-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.amenities-slider-section .amenities-slider {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
    padding: 20px 0;
}

.amenities-slider-section .amenities-slide {
    flex: 0 0 250px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 25px 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: pointer;
}

.amenities-slider-section .amenities-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.amenities-slider-section .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5ab52; /* Updated */
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid white;
}

.amenities-slider-section .icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.amenities-slider-section .amenities-slide p {
    font-size: 1.1rem;
    font-weight: bold;
    color: black; /* Updated */
    margin: 10px 0 0;
}

.amenities-slider-section .amenities-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.amenities-slider-section .amenities-info-overlay.active {
    display: flex;
}

.amenities-slider-section .info-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.amenities-slider-section .close-btn {
    background: #e31b23; /* Updated */
    border: none;
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenities-slider-section .close-btn:hover {
    background: #f5ab52; /* Updated */
}

.amenities-slider-section .info-title {
    font-size: 1.8rem;
    color: #e31b23; /* Updated */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.amenities-slider-section .info-details {
    font-size: 1rem;
    color: black; /* Updated */
    line-height: 1.6;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1200px) {
    .amenities-slider-section .amenities-slide {
        flex: 0 0 220px;
    }
}

@media (max-width: 768px) {
    .amenities-slider-section {
        padding: 40px 0;
    }
    .amenities-slider-section .amenities-slider-title {
        font-size: 2rem;
        padding: 0 20px;
    }
    .amenities-slider-section .amenities-slide {
        flex: 0 0 200px;
        padding: 20px 15px;
    }
    .amenities-slider-section .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .amenities-slider-section .icon-wrapper i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .amenities-slider-section .amenities-slider-title {
        font-size: 1.8rem;
    }
    .amenities-slider-section .amenities-slide {
        flex: 0 0 180px;
        padding: 15px 10px;
    }
    .amenities-slider-section .amenities-slide p {
        font-size: 1rem;
    }
}

/* Scoped styles for premium amenities */
.amenities-section-mod {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.amenities-section-mod * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.amenities-section-mod .section-container {
    margin: 0 auto;
    padding: 0 20px;
}

.amenities-section-mod .section-title {
    text-align: center;
    margin-bottom: 70px;
    font-size: 3rem;
    color: #e31b23; /* Updated */
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.amenities-section-mod .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 2px;
}

.amenities-section-mod .amenity-container {
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
    gap: 40px;
    position: relative;
    min-height: 500px;
}

.amenities-section-mod .text-container {
    flex: 1;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
}

.amenities-section-mod .text-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.amenities-section-mod .image-container {
    flex: 1;
    min-height: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.amenities-section-mod .image-scroller {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.amenities-section-mod .amenity-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #e31b23; /* Updated */
    position: relative;
    padding-bottom: 15px;
}

.amenities-section-mod .amenity-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f5ab52; /* Updated */
}

.amenities-section-mod .amenity-list {
    list-style-type: none;
}

.amenities-section-mod .amenity-list li {
    padding: 12px 0;
    font-size: 1.2rem;
    color: black; /* Updated */
    position: relative;
    padding-left: 40px;
    transition: all 0.3s ease;
}

.amenities-section-mod .amenity-list li::before {
    content: "•";
    position: absolute;
    left: 15px;
    color: #f5ab52; /* Updated */
    font-size: 1.5rem;
}

@media (max-width: 1200px) {
    .amenities-section-mod .amenity-container {
        gap: 30px;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .amenities-section-mod .amenity-container {
        flex-direction: column;
        min-height: 800px;
    }
    .amenities-section-mod .image-container,
    .amenities-section-mod .text-container {
        width: 100%;
        min-height: 400px;
    }
}

























/* General styles for the wrapper */
#nola-content-wrapper {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
}

/* MODIFIED: Styles for the first section (Nearby Attractions) for full-width responsiveness */
#nola-content-wrapper .attractions-container {
    display: flex;
    justify-content: center; /* Center items on the line */
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
    gap: 4rem;
 
}

/* MODIFIED: .category now uses flex properties instead of a fixed width */
#nola-content-wrapper .category {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    
    /* Flex properties for responsiveness */
    flex-grow: 1; /* Allows the item to grow and fill available space */
    flex-basis: 300px; /* Sets a base width before growing. This helps with wrapping. */
    max-width: 450px; /* Optional: Prevents items from becoming too wide on very large screens */
}
/* END OF MODIFICATIONS */

#nola-content-wrapper .category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
#nola-content-wrapper .category-header h2 {
    font-size: 1.5rem;
    margin: 1rem 1.5rem;
    color: #e31b23; /* UPDATED */
}
#nola-content-wrapper .attraction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-top: 1px solid #eee;
}
#nola-content-wrapper .attraction-name {
    font-weight: 600;
}
#nola-content-wrapper .attraction-type {
    font-size: 0.9rem;
    color: black; /* UPDATED */
}
#nola-content-wrapper .attraction-distance {
    font-weight: 700;
    color: #e31b23; /* UPDATED */
}

/* === MODIFIED SECTION FOR CHATTANOOGA ATTRACTIONS === */
/* Changed ID from #nola-attractions-section to #chatt-attractions-section */
#chatt-attractions-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#chatt-attractions-section .nola-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}
#chatt-attractions-section .nola-header {
    text-align: center;
    margin-bottom: 3rem;
}
#chatt-attractions-section .nola-title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: #e31b23; /* UPDATED */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}
#chatt-attractions-section .nola-subtitle {
    color: black; /* UPDATED */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
#chatt-attractions-section .nola-category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
#chatt-attractions-section .nola-tab {
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* UPDATED: Data-category values and colors to match the new color scheme */
#chatt-attractions-section .nola-tab[data-category="museum"] { background: #e31b23; }
#chatt-attractions-section .nola-tab[data-category="park"] { background: #f5ab52; }
#chatt-attractions-section .nola-tab[data-category="landmark"] { background: #e31b23; } /* Changed text to black for readability */


#chatt-attractions-section .nola-tab.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
#chatt-attractions-section .nola-category-content {
    display: none;
    animation: nolaFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes nolaFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
#chatt-attractions-section .nola-category-content.active {
    display: block;
}
#chatt-attractions-section .nola-hero-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
#chatt-attractions-section .nola-attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
#chatt-attractions-section .nola-attraction-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
#chatt-attractions-section .nola-attraction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
/* UPDATED: Data-category values and border colors to match new scheme */
#chatt-attractions-section .nola-attraction-card[data-category="museum"]::before { background: #e31b23; }
#chatt-attractions-section .nola-attraction-card[data-category="park"]::before { background: black; }
#chatt-attractions-section .nola-attraction-card[data-category="landmark"]::before { background: #f5ab52; }


#chatt-attractions-section .nola-attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
#chatt-attractions-section .nola-attraction-card:hover::before {
    width: 8px;
}
#chatt-attractions-section .nola-attraction-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: black; /* UPDATED */
}
#chatt-attractions-section .nola-attraction-description {
    color: black; /* UPDATED */
    line-height: 1.6;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #chatt-attractions-section .nola-category-tabs {
        gap: 0.5rem;
    }
    #chatt-attractions-section .nola-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    #chatt-attractions-section .nola-hero-image {
        height: 250px;
    }
    #chatt-attractions-section .nola-attraction-grid {
        grid-template-columns: 1fr;
    }
}







.location-container {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  background: white;
}

.location-title {
  text-align: center;
  color: #e31b23; /* Changed from #003a70 */
  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: #e31b23; /* Changed from #003a70 */
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  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(0, 0, 0, 0.1); /* Changed to neutral black shadow */
  border: 1px solid rgba(0, 0, 0, 0.1);       /* Changed to neutral black border */
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #e31b23; /* Changed from #003a70 */
  font-size: 1.4rem;
  font-weight: 600;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 1.05rem;
  color: black; /* Set paragraph text to black */
}

.coordinate i {
  color: #f5ab52; /* Changed from #fcb100 */
  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(0, 0, 0, 0.1); /* Changed to neutral black shadow */
  border: 1px solid rgba(0, 0, 0, 0.1);       /* Changed to neutral black border */
}

.directions-form label {
  font-weight: 600;
  color: #e31b23; /* Changed from #003a70 */
  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;
  color: black; /* Ensured input text is black */
}

.directions-form input:focus {
  outline: none;
  border-color: #e31b23; /* Changed from #003a70 */
  box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.2); /* Changed to red focus glow */
}

.directions-form button {
  background: #e31b23; /* Changed from #003a70 */
  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: #f5ab52; /* Changed from #fcb100 */
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Changed to neutral black shadow */
  border: 1px solid rgba(0, 0, 0, 0.1);       /* Changed to neutral black border */
  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%;
  }
}

















        /* ===== 3D CONTACT SECTION ===== */
.contact-section-3d {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 1000px;
    padding: 40px 20px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.contact-card-3d {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 15px;
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.card-face.front {
    transform: translateZ(20px);
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-face.back {
    transform: rotateY(180deg) translateZ(20px);
    background: linear-gradient(135deg, #e31b23 0%, #f5ab52 100%);
    color: white;
}

.contact-card-3d i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #e31b23; /* Changed to new red */
}

.card-face.back i {
    color: white;
}

.contact-card-3d h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: black; /* Changed to black */
}

/* Paragraphs and links on the front are black */
.contact-card-3d .front p,
.contact-card-3d .front a {
    font-size: 0.9rem;
    line-height: 1.5;
    color: black; /* Changed to black */
}

.email-text {
    word-break: break-all;
    overflow-wrap: break-word;
}

.card-face.back p,
.card-face.back a {
    font-size: 0.9rem;
    line-height: 1.5;
    color: white; /* Kept as white for contrast */
}

.card-face.back a {
    text-decoration: underline;
    transition: all 0.3s;
}

.card-face.back a:hover {
    color: #f5f5f5;
    text-decoration: none;
}

.contact-card-3d:hover {
    transform: translateY(-10px) rotateY(10deg) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-card-3d.flipped {
    transform: rotateY(180deg) translateY(-10px);
}

.glow-on-hover:hover {
    box-shadow: 0 0 25px rgba(227, 27, 35, 0.4); /* Changed to new red glow */
}

* {
    box-sizing: border-box;
}

.contact-container {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form-container {
    perspective: 1000px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    height: 100%;
}

.contact-form:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    background: linear-gradient(45deg, #f5ab52, #e31b23); /* Changed to new gradient */
    z-index: -1;
    border-radius: 15px;
    opacity: 0.7;
    transform: translateZ(-20px);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: black; /* Changed to black */
    text-align: center;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: black; /* Changed to black */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e31b23; /* Changed to new red */
    box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.2); /* Changed to new red glow */
    outline: none;
    transform: translateZ(5px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, #e31b23, #f5ab52); /* Changed to new gradient */
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    transform: translateY(-3px) translateZ(5px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #c4141c, #e38a2e); /* Darker new gradient */
}

.map-container {
    perspective: 1000px;
    min-height: 450px;
}

.map-wrapper {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}
        
.map-wrapper:hover {
    transform: translateY(-5px) rotateX(-5deg);
}
        
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-section-3d, .contact-container {
        flex-direction: column;
        align-items: center;
    }
     .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-card-3d {
        width: 250px;
        height: 250px;
    }
     .map-container {
        height: 350px;
     }
}
        
.success-message {
    display: none; 
    background: #f5ab52; /* Changed to new yellow-orange */
    color: black; /* Changed to black for better contrast */
    padding: 15px;
    border-radius: 5px; 
    margin-top: 20px; 
    text-align: center; 
    animation: fadeIn 0.5s ease;
}

.error-message {
    color: #e31b23; /* Changed to new red */
    font-size: 14px; 
    margin-top: 5px; 
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}















/* 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: black;
    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 rgba(0, 0, 0, 0.1);
    height: 120px; /* Fixed height for rectangular format */
}

#hotel-navigation-section .nav-link:hover {
    background: #e31b23; /* Changed to new Red for hover background */
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #e31b23; /* Changed to new Red */
    transition: all 0.3s ease;
}

#hotel-navigation-section .nav-link:hover .nav-icon {
    color: #f5ab52; /* Changed to new Orange/Yellow for hover */
    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: #e31b23; /* Replaced */
    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, #e31b23, #f5ab52); /* Replaced */
    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 #e31b23; /* Replaced */
}

.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: #f5ab52; /* Replaced */
    color: #e31b23;      /* Replaced */
    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, #e31b23, transparent); /* Replaced */
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: black;
}

.faq-answer a {
    color: #e31b23; /* Replaced */
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #e31b23; /* Replaced */
    border-bottom-color: #e31b23; /* Replaced */
}

.faq-answer .fa-caret-right {
    color: #e31b23; /* Replaced */
    margin-right: 8px;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 20px;
    }
}








