﻿/* Importing Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Define CSS Variables for White & Black Theme */
:root {
    --font-primary: 'Poppins', sans-serif;
    
    /* Core White & Black Colors */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark-grey: #333333; /* For secondary dark elements, less harsh than pure black */
    --color-light-grey: #CCCCCC; /* For subtle light elements, less stark than pure white */

    /* Theme colors re-mapped to black/white/grey scheme */
    --theme-dark: var(--color-black); /* Used for main headings, body text, primary dark backgrounds */
    --theme-accent-dark: var(--color-dark-grey); /* Used for secondary dark backgrounds, darker borders */
    --theme-accent-light: var(--color-light-grey); /* Used for lighter backgrounds, subtle highlights */
    --theme-highlight: var(--color-white); /* Used for strong white accents on dark backgrounds, active states */
    
    /* Transparent colors (black based for general overlaying, shadows, borders) */
    --transparent-dark-10: rgba(0, 0, 0, 0.1); 
    --transparent-dark-15: rgba(0, 0, 0, 0.15); /* For specific shadow */
    --transparent-dark-20: rgba(0, 0, 0, 0.2); 
    --transparent-dark-30: rgba(0, 0, 0, 0.3);
    --transparent-dark-40: rgba(0, 0, 0, 0.4); 
    --transparent-dark-50: rgba(0, 0, 0, 0.5); 
    --transparent-dark-60: rgba(0, 0, 0, 0.6); /* For specific logo shadow */
    --transparent-dark-70: rgba(0, 0, 0, 0.7); /* For captions, shadows */
    --transparent-dark-80: rgba(0, 0, 0, 0.8);
    --transparent-dark-90: rgba(0, 0, 0, 0.9);

    /* Transparent light colors (white based for highlights on dark surfaces) */
    --transparent-light-05: rgba(255, 255, 255, 0.05);
    --transparent-light-10: rgba(255, 255, 255, 0.1);
    --transparent-light-20: rgba(255, 255, 255, 0.2);
    --transparent-light-30: rgba(255, 255, 255, 0.3);
    --transparent-light-70: rgba(255, 255, 255, 0.7); /* For specific indicators */
    --transparent-light-80: rgba(255, 255, 255, 0.8);
    --transparent-light-90: rgba(255, 255, 255, 0.9); /* If needed */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* RESPONSIVENESS FIXES (General) */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensure HTML and body cover the full viewport height */
}

/* Add a no-scroll class to body for mobile menu overlay */
body.no-scroll {
    overflow: hidden;
}

/* General Styles */
body {
    font-family: var(--font-primary);
    background-color: var(--color-white); /* White background */
    background-attachment: fixed; /* Note: dynamic background loader script handles this for some sections */
    background-size: cover;
    color: var(--theme-dark); /* Changed to black */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--theme-dark); /* Using variable for consistency, now black */
}

p, a, li {
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Top Bar */
.topbar {
    background: linear-gradient(to right, var(--color-dark-grey), var(--color-black)); /* Changed to dark grey to black gradient */
    color: var(--color-white); /* Keep white text on dark background */
    font-size: 18px;
    padding: 3px 0;
}

/* Main Container */
.topbar-container {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Aligning Items */
.topbar-left, .topbar-center, .topbar-right {
    display: flex;
    align-items: center;
}

.topbar-left {
    flex: 1;
    justify-content: flex-start;
}

.topbar-center {
    text-align: center;
    font-weight: 400;
    color: var(--color-light-grey); /* Changed to light grey */
}

.topbar-right {
    flex: 1;
    justify-content: flex-end;
    gap: 15px;
}

/* Social Media Icons */
.social-icon {
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--transparent-light-20), var(--transparent-light-50)); /* Kept as transparent white based */
    transition: background 0.3s ease-in-out;
}

.social-icon i {
    color: var(--color-white); /* Kept white */
    font-size: 16px;
}

.social-icon:hover {
    background: linear-gradient(to right, var(--theme-highlight), var(--color-white)); /* Changed to white/lighter gradient for hover */
}

.social-icon:hover i {
    color: var(--theme-dark); /* Changed to black */
}

/* Book Now Button */
.book-now {
    background: linear-gradient(to right, var(--theme-highlight), var(--theme-accent-light)); /* Changed to white/light grey gradient */
    color: var(--color-black); /* Changed to black */
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 300;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 10px var(--transparent-dark-40); /* Changed to transparent black */
}

.book-now:hover {
    background: linear-gradient(to right, var(--color-black), var(--color-dark-grey)); /* Changed to black/dark grey gradient for hover */
    transform: scale(1.05);
}

.call-link {
    color: var(--color-white); /* Kept white */
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.call-link:hover {
    color: var(--theme-highlight); /* Changed to white */
    text-decoration: none;
}

/* Responsive Design - Tablet & Mobile for Top Bar */
@media screen and (max-width: 1024px) {
    .topbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar {
        padding: 12px 0;
    }

    .topbar-left,
    .topbar-center,
    .topbar-right {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .book-now {
        font-size: 13px;
        padding: 7px 14px;
    }
}

/* Mobile View Fixes for Top Bar and other smaller element sizing */
@media screen and (max-width: 768px) {
    .topbar {
        padding: 10px 0;
    }

    .topbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar-left,
    .topbar-center,
    .topbar-right {
        width: 100%;
        justify-content: center;
        text-align: center;
        margin-bottom: 6px;
    }

    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .book-now {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Responsive Design for Smaller Screens - Logo and Headers */
    .logo img {
        height: 60px;  /* Keeping it smaller on mobile */
    }

    h1 {
        font-size: 20px; /* Adjust heading size for mobile */
    }

    p {
        font-size: 12px; /* Adjust text size for mobile */
    }
    
    /* Navigation fixes */
    .custom-hamburger-menu {
        right: 15px;
        font-size: 24px;
        padding: 8px;
        margin-top: -100px;
    }
    
    .custom-mobile-nav {
        width: 85%;
    }
}

/* Logo Row */
.logo-container {
    text-align: center;
    padding: 20px 0;
    background: #000; /* Kept black */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px var(--transparent-dark-15); /* Changed to transparent black */
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Logo Styling */
.logo img {
    height: 100px;  /* Reduced size for better proportion */
    display: block;
    margin: 0 auto;
}

/* Logo Hover Effect */
.logo img:hover {
    transform: scale(1.05);
}


/* Premium Navigation Styling */
.custom-nav-header {
    background: #b4b1b1; /* Changed to white/light grey gradient */
    padding: 15px 0;
    text-align: center;
    /* --- START STICKY HEADER MODIFICATIONS --- */
    position: sticky; /* Make the header sticky */
    top: 0; /* Stick to the top of the viewport */
    z-index: 1010; /* Ensure it stays above other content, including mobile menus */
    box-shadow: 0 4px 10px var(--transparent-dark-15); /* Add a subtle shadow for elevation when sticky */
    /* --- END STICKY HEADER MODIFICATIONS --- */
}

/* Navigation Menu Container */
.custom-nav-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Desktop Navigation Links */
.custom-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 55px;
}

.custom-nav-menu ul li {
    display: inline-block;
}

.custom-nav-menu ul li a {
    color: white; /* Changed to black */
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: color 0.3s ease-in-out;
    padding: 10px 0;
}

/* Dropdown Arrows */
.custom-nav-menu ul li a i {
    font-size: 12px;
    margin-left: 5px;
}

/* Hover Effects */
.custom-nav-menu ul li a:hover {
    color: white; /* Changed to dark grey for hover */
}

/* Dropdown Menu Styling - FIXED VERSION */
.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-dropdown-menu {
    position: absolute;
    background: var(--color-white); /* Kept white */
    min-width: 250px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 10px 0;
    box-shadow: 0px 8px 12px var(--transparent-dark-30); /* Changed to transparent black */
    border-radius: 8px;
    border: 1px solid var(--transparent-dark-40); /* Changed to transparent black */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: block !important; /* Force block display */
}

/* Show dropdown when hovering */
.custom-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}

/* Staggered animation for list items */
.custom-dropdown-menu li {
    padding: 12px 20px;
    text-align: left; /* Changed from center */
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeIn 0.4s ease-in-out forwards;
    animation-fill-mode: both;
    display: block; /* Ensure vertical layout */
    width: 100%; /* Full width for each item */
    white-space: nowrap; /* Prevent text wrapping */
}

/* Delay effect for each list item */
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }
.custom-dropdown:hover .custom-dropdown-menu li:nth-child(5) { animation-delay: 0.5s; }

/* Keyframes for the dropdown animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Item Styling */
.custom-dropdown-menu li a {
    color: var(--theme-dark); /* Changed to black */
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: left; /* Kept left from second style block */
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Hover effect with glow */
.custom-dropdown-menu li a:hover {
    color: var(--theme-dark); /* Keep black for hover text on light background */
    background: var(--transparent-dark-10); /* Changed to transparent black */
    box-shadow: 0px 0px 10px var(--transparent-dark-30); /* Changed to transparent black */
}

/* Active link styling */
#custom-nav-links > li.active > a,
.custom-dropdown-menu > li.active > a {
    color: white !important; /* Changed to strong black */
    font-weight: bold;
}

/* Keep dropdown open when active */
.custom-dropdown.active .custom-dropdown-menu {
    display: block !important;
}

/* Mobile responsiveness for desktop dropdowns */
@media (max-width: 1024px) { /* Changed from 768px for custom-dropdown-menu collapse point */
    .custom-dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border: 1px solid var(--color-light-grey); /* Changed to light grey */
        transform: none;
        display: none !important;
    }
    
    .custom-dropdown.active .custom-dropdown-menu {
        display: block !important;
    }
    
    .custom-dropdown:hover .custom-dropdown-menu {
        transform: none;
    }
}

/* Premium Hamburger Menu */
.custom-hamburger-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white; /* Changed to black */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
    text-align: center;
    z-index: 1001;
}

.custom-hamburger-menu:hover {
    background: var(--transparent-light-20); /* Kept transparent white based */
    color: white; /* Changed to black */
}

/* Mobile Navigation Overlay */
.custom-mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-dark-grey), var(--color-black)); /* Changed to dark grey to black gradient */
    color: var(--color-white); /* Kept white */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: left 0.5s ease-in-out;
    box-shadow: 4px 0px 10px var(--transparent-dark-20); /* Kept transparent black */
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 0 20px 0;
}

.custom-mobile-nav.show {
    left: 0;
}

.custom-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.custom-mobile-nav ul li {
    padding: 0;
    width: 100%;
    border-bottom: 1px solid var(--transparent-light-10); /* Kept transparent white based */
}
        
/* This container allows the link and toggle to sit side-by-side */
.mobile-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
        
/* Make the link take up most of the space */
.mobile-nav-item a {
    flex-grow: 1; /* Allows the link to expand */
    padding: 15px 20px;
}

.custom-mobile-nav ul li a {
    color: var(--color-light-grey); /* Changed to light grey */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.custom-mobile-nav ul li a:hover {
    color: var(--theme-highlight); /* Changed to white */
    background: var(--transparent-light-05); /* Kept transparent white based */
}
        
/* Style for the separate dropdown toggle icon */
.mobile-dropdown-toggle {
    cursor: pointer;
    padding: 15px 20px; /* Makes the tap area bigger */
    font-size: 16px;
    color: var(--color-light-grey); /* Changed to light grey */
}

.mobile-dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s;
}

/* Rotate the icon inside the toggle span when active */
.custom-dropdown.active .mobile-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Mobile dropdown menu items */
.custom-mobile-nav .custom-dropdown-menu {
    background: var(--transparent-dark-20); /* Kept transparent black based */
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.5s ease-in-out;
    position: static;
    transform: none;
    opacity: 1;
    display: block;
}

.custom-mobile-nav .custom-dropdown.active .custom-dropdown-menu {
    max-height: 500px;
    visibility: visible;
}

.custom-mobile-nav .custom-dropdown-menu li {
    border-bottom: none;
    padding: 0;
    animation: none;
    opacity: 1;
    transform: none;
}

.custom-mobile-nav .custom-dropdown-menu li a {
    padding: 12px 20px 12px 40px;
    font-size: 16px;
    color: var(--color-light-grey); /* Changed to light grey */
    font-weight: 400;
}

.custom-mobile-nav .custom-dropdown-menu li a:hover {
    background: var(--transparent-light-10); /* Kept transparent white based */
    color: var(--theme-highlight); /* Changed to white */
}

/* Book Now Button within the mobile menu */
.custom-mobile-nav .custom-book-now {
    background: linear-gradient(to right, var(--theme-highlight), var(--theme-accent-light)); /* Changed to white/light grey gradient */
    color: var(--color-black); /* Changed to black */
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 10px var(--transparent-dark-40); /* Changed to transparent black */
    display: block;
    margin: 20px;
    text-align: center;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.custom-mobile-nav .custom-book-now:hover {
    background: linear-gradient(to right, var(--color-black), var(--color-dark-grey)); /* Changed to black/dark grey gradient for hover */
    transform: scale(1.02);
}

/* Close Button for mobile navigation */
.custom-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--color-white); /* Kept white */
    transition: 0.3s;
    z-index: 1001;
    background: var(--transparent-dark-20); /* Kept transparent black based */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-close-btn:hover {
    color: var(--theme-highlight); /* Changed to white */
    background: var(--transparent-dark-40); /* Kept transparent black based */
}

/* Overlay when mobile menu is open */
.custom-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--transparent-dark-70); /* Kept transparent black based */
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.custom-mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design - Media Queries for Navigation */
@media screen and (max-width: 1024px) {
    .custom-hamburger-menu {
        display: block;
        margin-top: -120px;
    }

    .custom-nav-menu ul {
        display: none;
    }
    
    .custom-nav-header {
        padding: 0px 0;
    }
}


/* --- Hero Carousel Section --- */

/* Container for slides */
.hero-carousel-container { /* This is the primary fullscreen hero carousel */
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden; /* Tailwind: overflow-hidden */
}

/* Slides base style */
.slide {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* Tailwind: inset-0 */
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Modified: Slower opacity for image changing effect */
    z-index: 0;
}

/* Ken Burns Effect for Images (from original styles) */
.slide-image { /* Renamed from .slide img */
    width: 100%; /* Tailwind: w-full */
    height: 100%; /* Tailwind: h-full */
    object-fit: cover; /* Tailwind: object-cover */
    transform: scale(1);
    transform-origin: center center; /* Zoom from the center */
}

/* Active slide visible */
.slide.active {
    opacity: 1;
    z-index: 10;
}
.slide.active .slide-image { /* Gently zoom in to 108% (now instant as no transition on slide-image) */
    transform: scale(1.08);
}

/* Text Overlay (from Tailwind bg-black bg-opacity-50 flex flex-col justify-center items-center px-4 text-center) */
.slide-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* Tailwind: inset-0 */
    background-color: rgba(0, 0, 0, 0.3); /* Modified: Decreased darkness from ~50% to 30% */
    display: flex; /* Tailwind: flex */
    flex-direction: column; /* Tailwind: flex-col */
    justify-content: center; /* Tailwind: justify-center */
    align-items: center; /* Tailwind: items-center */
    padding-left: 1rem; /* Tailwind: px-4 */
    padding-right: 1rem; /* Tailwind: px-4 */
    text-align: center;
}

/* Text style (animation removed) */
.slide-text {
    opacity: 1; /* Modified: Always visible */
    transform: translateY(0); /* Modified: Always at original position */
    color: var(--color-white); /* Kept white */
    font-family: var(--font-primary); /* Apply new font */
    font-size: 1.875rem; /* Tailwind: text-3xl (30px base) */
    font-weight: 500; /* Tailwind: font-semibold */
    line-height: 1.25; /* Tailwind: leading-tight */
    max-width: 80rem; /* Tailwind: max-w-5xl (approx. 1280px) */
}

/* Responsive font sizes for slide-text (from Tailwind breakpoints) */
@media (min-width: 640px) { /* sm breakpoint */
    .slide-text { font-size: 2.25rem; } /* sm:text-4xl */
}
@media (min-width: 768px) { /* md breakpoint */
    .slide-text { font-size: 3rem; } /* md:text-5xl */
}
@media (min-width: 1024px) { /* lg breakpoint */
    .slide-text { font-size: 3.75rem; } /* lg:text-6xl */
}

/* Bottom gradient overlay (from Tailwind absolute inset-x-0 bottom-0 h-1/3 bg-gradient-to-t from-black/80 to-transparent z-12) */
.slide-gradient {
    position: absolute;
    left: 0;
    right: 0; /* Tailwind: inset-x-0 */
    bottom: 0;
    height: 33.333333%; /* Tailwind: h-1/3 */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%); /* Modified: Decreased darkness from ~80% to 50% */
    z-index: 12; /* Tailwind: z-12 */
}

/* Default (Desktop) Settings */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white); /* Kept white */
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.15); /* Modified: Decreased darkness from ~30% to 15% */
    border-radius: 50%; /* Tailwind equivalent: rounded-full for square elements */
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 20;
    outline: none; /* Often beneficial for accessibility and consistency */
}

/* Mobile (Portrait) Settings */
@media (max-width: 767px) {
    .nav-btn {
        font-size: 2rem; /* Smaller font size for mobile */
        width: 40px;
        height: 40px;
        top: 60%; /* Adjusted top position for mobile */
    }
}

/* Tablet Settings */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-btn {
        font-size: 2.2rem; /* Slightly smaller than desktop for tablets */
        width: 45px;
        height: 45px;
        top: 60%; /* Adjusted top position for tablet */
    }
}

.nav-btn:hover,
.nav-btn:focus {
    background: rgba(0, 0, 0, 0.3); /* Modified: Decreased darkness from ~60% to 30% */
}
.nav-btn.left {
    left: 1rem;
}
.nav-btn.right {
    right: 1rem;
}

/* Caption bottom right */
.caption {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: var(--color-white); /* Kept white */
    font-weight: 300;
    z-index: 15; /* Ensure caption is above the new gradient */
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4); /* Modified: Decreased darkness from ~70% to 40% */
}


/* About Us Section */
#about {
    background-color: var(--color-white); /* Clean white background */
    text-align: center; /* Center align all text content */
}

/* Container for responsive width and centering */
#about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Padding for mobile devices */
}

/* Section Header Styling */
#about .section-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--theme-dark); /* Dark color for the main heading (black) */
    margin-bottom: 15px;
}

/* Subtitle for a brief tagline */
#about .section-header .subtitle { /* This rule is defined, but no element with .subtitle in HTML for this section */
    font-size: 1.2rem;
    color: var(--color-dark-grey); /* Changed to dark grey */
    margin-bottom: 30px;
    font-style: italic;
}

/* A decorative line to separate header from content */
#about .section-header .divider {
    width: 100px;
    height: 3px;
    background-color: var(--color-black); /* Changed to black accent color */
    margin: 0 auto 30px auto; /* Center the divider */
    border-radius: 2px;
}

/* Main Content Paragraphs */
#about .about-content {
    text-align: center; /* Set text-align to center to match the request */
    color: var(--color-dark-grey); /* Changed to dark grey */
}

#about .about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Style for emphasized text, like movie titles */
#about .about-content em {
    font-weight: bold;
    font-style: normal;
    color: var(--theme-dark); /* Changed to black */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #about .section-header h1 {
        font-size: 2.2rem;
    }
}


/* --- Corporate Image Layout Section --- */
#image-layout-container {
    width: 100%;
    box-sizing: border-box;
    display: block;
    font-family: var(--font-primary);
    margin-top: -20px;
}

#image-layout-container .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#image-layout-container .column {
    flex: 1;
    min-width: 300px;
    height: 350px;
    margin: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-size: 2em;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px;
}

/* MODIFIED: This now styles the <img> tag */
#image-layout-container .column .inner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image cover the area without distortion */
    transition: transform 0.7s ease, filter 0.5s ease;
    transform: scale(1.05);
}

#image-layout-container .column:hover .inner-image {
    transform: scale(1.15);
    filter: grayscale(0%) brightness(1) saturate(1);
}

#image-layout-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--transparent-dark-40);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    opacity: 0.9;
}

#image-layout-container .column:hover .overlay {
    opacity: 1;
    background-color: var(--transparent-dark-50);
}

#image-layout-container .overlay-text {
    color: var(--color-white);
    font-size: 1.1em;
    padding: 10px;
    text-shadow: 2px 2px 4px var(--transparent-dark-70);
    transition: transform 0.4s ease;
    font-family: var(--font-primary);
}

#image-layout-container .column:hover .overlay-text {
    transform: translateY(-5px);
}

/* Responsive styles remain the same */
@media (max-width: 1200px) {
    #image-layout-container .column {
        height: 300px;
        font-size: 1.5em;
    }
}

@media (max-width: 900px) {
    #image-layout-container .row {
        flex-direction: column;
        align-items: center;
    }
    #image-layout-container .column {
        width: calc(100% - 20px);
        height: 300px;
        margin: 10px 0;
        min-width: unset;
        flex: 0 0 auto;
    }
    #image-layout-container .overlay-text {
        font-size: 1.2em;
    }
}


/*
=============================================================
--- Encapsulated Styles for Top Destinations Section ---
=============================================================
*/

/* ===== Section Background & Header ===== */
#top-destinations-section {
    background-color: var(--color-white); /* Kept white */
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

#top-destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#top-destinations-section .destinations-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#top-destinations-section .destinations-header {
    text-align: center;
    margin-top: 30px;
}

#top-destinations-section .destinations-header h2 {
    font-weight: 800;
    font-size: 3rem;
    color: var(--theme-dark); /* Uses black */
    margin: 0;
    line-height: 1.2;
    /* MODIFIED: Explicitly apply primary heading font */
    font-family: var(--font-primary);
}

#top-destinations-section .destinations-header .destinations-subtitle {
    font-size: 1.1rem;
    color: var(--color-dark-grey); /* Changed to dark grey */
    margin-top: 1rem;
    font-weight: 400;
    /* Will inherit var(--font-primary) from <body>, explicitly setting here as good practice */
    font-family: var(--font-primary);
}

/* ===== Carousel & Cards ===== */
#top-destinations-section .carousel-container {
    position: relative;
    margin: 2rem auto 0;
    /* This padding is for Desktop/Larger Screens (base styling) */
    padding: 0 60px; 
}

#top-destinations-section .carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    height: 500px;
    overflow: visible;
    position: relative;
}

#top-destinations-section .card {
    position: absolute;
    width: 340px;
    height: 480px;
    border-radius: 16px;
    will-change: transform;
    box-shadow: 0 15px 35px var(--transparent-dark-10); /* Changed to transparent black */
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    overflow: hidden;
    background: var(--color-white); /* Kept white */
    user-select: none;
    border: 1px solid var(--transparent-dark-10); /* Changed to transparent black */
}

#top-destinations-section .card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#top-destinations-section .card:hover > img {
    transform: scale(1.05);
}

#top-destinations-section .card.active {
    box-shadow: 0 5px 10px var(--transparent-dark-20); /* Changed to transparent black */
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

#top-destinations-section .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, var(--transparent-dark-80) 0%, transparent 150%); /* Kept transparent black based */
    color: var(--color-white); /* Kept white */
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary); /* Explicitly set font */
}

#top-destinations-section .card-content .title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    width: 100%;
    /* MODIFIED: Explicitly apply primary heading font */
    font-family: var(--font-primary);
}

#top-destinations-section .card-content .listing {
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    padding: 4px 12px;
    background-color: var(--transparent-dark-90); /* Changed to transparent black */
    border-radius: 20px;
    /* Will inherit var(--font-primary) from its parent .card-content, explicitly set here for safety*/
    font-family: var(--font-primary); 
}

#top-destinations-section .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--theme-accent-dark); /* Changed to dark grey */
    border: none;
    color: var(--color-white); /* Kept white */
    width: 60px; /* Default for Desktop */
    height: 60px; /* Default for Desktop */
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 15px var(--transparent-dark-30); /* Changed to transparent black */
    font-family: var(--font-primary); /* Explicitly set font */
}

#top-destinations-section .carousel-btn:hover {
    background-color: var(--theme-highlight); /* Changed to white */
    color: var(--theme-accent-dark); /* Changed to dark grey */
    transform: translateY(-50%) scale(1.1);
}

/* Default positioning for Desktop/Larger Screens */
#top-destinations-section .carousel-btn.prev {
    left: 20px; 
}

#top-destinations-section .carousel-btn.next {
    right: 20px; 
}

#top-destinations-section .carousel-btn svg {
    width: 24px; /* Default for Desktop */
    height: 24px; /* Default for Desktop */
    color: inherit; /* Inherits from parent button */
}

/* Responsive Adjustments (DO NOT affect desktop) */
@media (max-width: 1024px) {
    #top-destinations-section .card {
        width: 300px;
        height: 420px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.5rem;
    }

    /* Tablet: Adjust container padding */
    #top-destinations-section .carousel-container {
        padding: 0 25px; /* Reduced from 60px */
    }

    /* Tablet: Slightly reduce button size */
    #top-destinations-section .carousel-btn {
        width: 55px;
        height: 55px;
    }

    /* Tablet: Position buttons closer to the new padding edge */
    #top-destinations-section .carousel-btn.prev {
        left: 5px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: 5px; 
    }
}

@media (max-width: 768px) {
    #top-destinations-section .destinations-header h2 {
        font-size: 2rem;
    }
    
    #top-destinations-section .carousel {
        height: 380px;
    }
    
    #top-destinations-section .card {
        width: 240px;
        height: 340px;
    }
    
    #top-destinations-section .card-content {
        padding: 15px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.3rem;
    }
    
    #top-destinations-section .card-content .listing {
        font-size: 0.9rem;
    }
    
    /* Mobile/Small Tablet: Further adjust container padding */
    #top-destinations-section .carousel-container {
        padding: 0 10px; /* More reduced padding */
    }

    /* Mobile/Small Tablet: Standard button size */
    #top-destinations-section .carousel-btn {
        width: 50px; 
        height: 50px;
    }

    /* Mobile/Small Tablet: Position buttons flush with container's new padding edge */
    #top-destinations-section .carousel-btn.prev {
        left: 0px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: 0px; 
    }
}

@media (max-width: 576px) {
    #top-destinations-section {
        padding: 0.5rem 0;
    }
    
    #top-destinations-section .destinations-header h2 {
        font-size: 1.8rem;
    }
    
    #top-destinations-section .carousel {
        height: 320px;
    }
    
    #top-destinations-section .card {
        width: 200px;
        height: 280px;
    }
    
    #top-destinations-section .card-content .title {
        font-size: 1.1rem;
    }

    /* Smallest Mobile: Minimal padding */
    #top-destinations-section .carousel-container {
        padding: 0 5px; 
    }

    /* Smallest Mobile: Smallest button size */
    #top-destinations-section .carousel-btn {
        width: 40px; 
        height: 40px;
    }
    /* Smallest Mobile: Adjust SVG icon size to fit smaller buttons */
    #top-destinations-section .carousel-btn svg {
        width: 20px; 
        height: 20px;
    }

    /* Smallest Mobile: Allow buttons to slightly extend beyond container for visibility */
    #top-destinations-section .carousel-btn.prev {
        left: -5px; 
    }
    #top-destinations-section .carousel-btn.next {
        right: -5px; 
    }
}
/*
**********************************************************
* END: Styles for Top Destination Carousel
**********************************************************
*/


/* USP Carousel Styles */
.about-usp-carousel-wrapper {
    position: relative;
    padding: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden; /* <-- This is the added line that fixes the issue */
}

.about-usp-carousel {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    animation: marquee 25s linear infinite;
}

.about-usp-carousel-wrapper:hover .about-usp-carousel {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.usp-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white); /* Kept white */
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px -3px var(--transparent-dark-10); /* Kept transparent black based */
    min-width: 180px;
    border: 1px solid var(--transparent-dark-10); /* Changed to transparent black */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px -3px var(--transparent-dark-15); /* Kept transparent black based */
}

.usp-item img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.usp-item:hover img {
    filter: grayscale(0%); /* Restore original colors on hover */
    opacity: 1;
}

/* --- RESPONSIVE REFINEMENTS --- */
@media (max-width: 1023px) {
    .about-content-wrapper .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .overlap-image-container {
        width: 75%; /* Adjust width for tablets */
        margin-top: -60px; /* Adjust overlap amount for tablet */
    }
    .about-usp-carousel {
        gap: 1.5rem;
        animation-duration: 20s;
    }
    .usp-item {
        min-width: 150px;
        padding: 1.2rem;
    }
    .usp-item img {
        height: 2.8rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2.5rem 0;
    }
    .overlap-image-container {
      width: 80%;
      margin-right: 0.5rem;
    }
    .about-award-usp {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .about-usp-carousel {
        gap: 1rem;
    }
    .usp-item {
        min-width: 130px;
        padding: 1rem;
    }
    .usp-item img {
        height: 2.5rem;
    }
}


.phone-link {
    color: white; /* Changes the text color to black */
    text-decoration: none; /* Removes the underline */
}


.footer-legal-link,
.footer-design-link {
    color: black; /* A darker grey color */
    text-decoration: none; /* Remove underline */
    margin: 0 5px; /* Add some space around the links */
}



 /* ADD THESE MISSING STYLES */
        .hospitality-section {
            max-width: 1500px;
            margin: 40px auto;
            text-align: center;
            color: #333;
        }

        .hospitality-section h2 {
            font-size: 2.8em;
            letter-spacing: 2px;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .hospitality-section p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 25px;
            padding: 0 20px;
        }

        .hospitality-section ul {
            list-style-type: none;
            padding: 0;
            margin: 40px auto;
            text-align: left;
            max-width: 750px;
        }

        .hospitality-section ul li {
            font-size: 1em;
            line-height: 1.6;
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }

        .hospitality-section ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 1px;
            font-size: 1.4em;
            color: #333;
        }
        
        .hospitality-section .final-cta {
            margin-top: 40px;
        }



         /* Styling for the larger container section */
        .email-section {
          font-family: Arial, sans-serif;
          text-align: center;
          border: 1px solid #e0e0e0;
          padding: 30px;
          border-radius: 12px;
          max-width: 550px; /* Increased from 400px to a medium size */
          margin: 40px auto;
          box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        /* New style for the plain text email address display */
        .email-address-display {
          font-size: 18px;
          font-weight: bold;
          color: #333;
          background-color: #f5f5f5; /* A light background to make it stand out */
          padding: 12px 20px;
          border-radius: 6px;
          border: 1px solid #ddd;
          display: inline-block; /* Ensures the background fits the text */
          margin-top: 10px;
          margin-bottom: 25px; /* Added space between the email and the button */
        }
        
        /* Styling for the action button */
        .email-action-button {
          display: inline-block;
          padding: 14px 28px;
          background-color: #007bff;
          color: white;
          text-decoration: none;
          border-radius: 6px;
          font-weight: bold;
          font-size: 16px;
          transition: background-color 0.3s ease, transform 0.2s ease;
        }

        /* A simple hover effect for the button */
        .email-action-button:hover {
          background-color: #0056b3;
          transform: translateY(-2px); /* Lifts the button slightly on hover */
          cursor: pointer;
        }



        .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: black;
    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: #b4b1b1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    color: #b4b1b1;
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 24px;
    text-align: center;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--hampton-blue);
}

.info-text p, .info-text a {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--hampton-blue);
    text-decoration: underline;
}

.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    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;
    }
}


.showcase-container .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .showcase-container {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
        }
        .showcase-container .controls-header {
            background-color: #b4b1b1;
            padding: 30px 0;
            color: #000;
            border-bottom: 1px solid white;
        }
        .showcase-container .section-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }
        .showcase-container .filter-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .showcase-container .filter-btn {
            color: #000;
            font-weight: 700;
            letter-spacing: 1px;
            background: none;
            border: 2px solid white;
            padding: 12px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 30px;
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        .showcase-container .filter-btn:hover,
        .showcase-container .filter-btn.active {
            background-color: #000;
            color: #ffffff;
            border-color: #000;
        }
        /* KEY FIX for LEFT ALIGNMENT: 
           This grid style naturally places items starting from the top-left.
           All special centering styles have been removed. */
        .showcase-container .hotel-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            padding: 40px 0;
        }
        .showcase-container .gallery-item {
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }
        .showcase-container .gallery-item.hidden {
            display: none;
        }
        .showcase-container .gallery-item.selected {
            box-shadow: 0 0 0 3px #b4b1b1;
        }
        
        /* KEY FIX for SIZING ("Rectangle" issue):
           This rule applies to ALL items, including the placeholder.
           It forces every image container to be exactly the same height,
           guaranteeing uniform card sizes. */
        .showcase-container .image-container {
            position: relative;
            overflow: hidden;
            height: 240px; 
        }

        .showcase-container .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Prevents the image from stretching/squashing. */
            display: block;
            transition: transform 0.5s ease;
        }
        .showcase-container .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        .showcase-container .overlay-content {
            color: #ffffff;
            text-align: center;
        }
        .showcase-container .view-details {
            font-weight: 700;
            letter-spacing: 1px;
            font-size: 1.1rem;
        }
        .showcase-container .gallery-item:hover .overlay {
            opacity: 1;
        }
        .showcase-container .gallery-item:hover img {
            transform: scale(1.05);
        }
        .showcase-container .gallery-item-title {
            color: #333;
            font-size: 1rem;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s ease;
            margin-top: auto;
            min-height: 65px;
            padding: 5px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .showcase-container .gallery-item:hover .gallery-item-title {
            background: #b4b1b1;
            color: #ffffff;
        }
        .showcase-container .upcoming-item {
            display: none; /* Hidden by default */
        }
        /* Hotel Details Section */
        .showcase-container .hotel-details-wrapper {
            display: none;
            background-color: #ffffff;
            border-top: 1px solid #eee;
            padding: 0;
        }
        .showcase-container .hotel-gallery > .hotel-details-wrapper.visible {
            display: block;
            grid-column: 1 / -1;
            animation: fadeIn 0.5s ease-out;
        }
        .showcase-container .details-content {
            padding: 50px 0;
        }
        .showcase-container .details-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .showcase-container .details-header h2 {
            font-size: 2rem;
            color: #000;
            flex: 1;
            margin-right: 20px;
            line-height: 1.3;
            margin-bottom: 15px;
            min-width: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }
        .showcase-container .close-btn {
            background: none;
            border: none;
            color: #b4b1b1;
            cursor: pointer;
            padding: 5px;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        .showcase-container .close-btn:hover {
            color: #000;
            background: #f0f0f0;
        }
        .showcase-container .details-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .showcase-container .info-section {
            padding-right: 20px;
        }
        .showcase-container .location-label {
            font-weight: 700;
            color: #b4b1b1;
            font-size: 0.8rem;
            margin-bottom: 5px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .showcase-container #hotel-location {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #000;
            font-weight: 600;
        }
        .showcase-container #hotel-description {
            line-height: 1.7;
            color: #000;
            margin-bottom: 40px;
        }
        .showcase-container .action-buttons {
            display: flex;
            gap: 25px;
            align-items: center;
            flex-wrap: wrap;
        }
        .showcase-container .action-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #000;
            letter-spacing: 1px;
            font-weight: 700;
            border-bottom: 2px solid #b4b1b1;
            text-decoration: none;
            padding-bottom: 5px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        .showcase-container .action-link:hover {
            color: #b4b1b1;
            border-color: #b4b1b1;
        }
        .showcase-container .btn-call {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
            border-radius: 4px;
            background-color: #000;
            color: #ffffff;
            border: 2px solid #000;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        .showcase-container .btn-call:hover {
            background-color: #b4b1b1;
            border-color: #b4b1b1;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px #b4b1b1;
        }
        .showcase-container .details-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 12px #b4b1b1;
            margin-top: -120px;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @media (max-width: 992px) {
            .showcase-container .details-image img {
                margin-top: 0;
            }
        }
        @media (max-width: 768px) {
            .showcase-container .section-title {
                font-size: 1.8rem;
            }
            .showcase-container .filter-controls {
                gap: 10px;
            }
            .showcase-container .filter-btn {
                padding: 10px 18px;
                font-size: 0.8rem;
            }
            .showcase-container .hotel-gallery {
                grid-template-columns: 1fr;
                padding: 30px 20px;
            }
            .showcase-container .details-header {
                flex-direction: column;
                align-items: stretch;
            }
            .showcase-container .details-header h2 {
                margin: 0 0 15px 0;
                font-size: 1.6rem;
            }
            .showcase-container .details-body {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .showcase-container .info-section {
                padding-right: 0;
            }
            .showcase-container #hotel-description {
                margin-bottom: 40px;
            }
            .showcase-container .action-buttons {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .showcase-container .btn-call {
                width: 100%;
                justify-content: center;
            }
            .showcase-container .details-image img {
                margin-top: 20px;
            }
        }
        @media (max-width: 480px) {
            .showcase-container .section-title {
                font-size: 1.6rem;
            }
            .showcase-container .details-header h2 {
                font-size: 1.4rem;
            }
            .showcase-container .action-link,
            .showcase-container .btn-call {
                font-size: 0.8rem;
                padding: 12px 20px;
            }
        }


.section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5em;
            color: black;
            margin-top: -30px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1500px;
            margin: 0 auto;
        }

        .team-member-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .member-icon-container {
            width: 100%;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e9ecef;
            transition: background-color 0.3s ease;
        }
        
        .member-icon-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }
        
        .team-member-card:hover .member-icon-container img {
            transform: scale(1.1);
        }
        
        .team-member-card:hover .member-icon-container {
            background-color: #dee2e6;
        }
        
        .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: black;
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease-in-out;
        }

        .member-info h3 {
            margin: 0 0 5px 0;
            font-size: 1.2em;
            color: white;
        }

        .member-info p {
            margin: 0;
            font-size: 0.9em;
            opacity: 0.9;
        }

        .team-member-card:hover .member-info {
            transform: translateY(0);
        }

        .hidden {
            display: none !important;
        }

        #modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            z-index: 1000;
            overflow-y: auto;
        }

        #team-member-detail {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 100%;
            box-sizing: border-box;
            padding: 50px;
            gap: 50px;
            flex-wrap: wrap;
        }

        .detail-image {
            flex: 1 1 350px;
            max-width: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
            border-radius: 8px;
            min-height: 350px;
        }

        .detail-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .detail-info {
            flex: 2 1 450px;
            max-width: 650px;
        }

        .detail-info .name {
            font-size: 3em;
            font-weight: bold;
            color: #b4b1b1;
            margin: 0;
            line-height: 1.1;
        }

        .detail-info .title {
            font-size: 1.4em;
            font-weight: 600;
            color: #333;
            margin-top: 5px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 2px solid #eee;
        }

        .detail-info .bio {
            font-size: 1.1em;
            line-height: 1.6;
            color: #555;
        }

        .back-button {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 30px;
            background-color: #b4b1b1;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1em;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .back-button:hover {
            background-color: black;
            transform: translateY(-2px);
        }

        @media (max-width: 1200px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }