/* --- 5-Star Hotel Design System --- */
:root {
    --primary-dark: #1a1a1a;
    --accent-gold: #d4af37;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --spacing: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Georgia', serif; /* Elegant Serif for luxury feel */
    color: var(--primary-dark);
    line-height: 1.6;
}

/* --- Global Container --- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 80px 0;
}

/* --- Header & Navigation (Sticky White Version) --- */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    z-index: 9999;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo a {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a; 
    text-decoration: none;
    letter-spacing: 2px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 30px;
}

.main-navigation a {
    color: #333333; 
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--accent-gold);
}

.admin-bar .site-header {
    top: 0;
}



/* --- Luxury Logo Alignment & Sizing --- */
.logo img {
    max-height: 80px; /* Adjust this (e.g., 50px to 80px) to fit your header height */
    width: auto;      /* Keeps the aspect ratio perfect */
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05); /* Subtle luxury zoom on hover */
}

/* Ensure the logo container doesn't have weird padding */
.logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}







/* --- Hero Section --- */
.hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ==========================================================
   SHARED ROOM CARD STYLES (Applies to all pages)
   ========================================================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.room-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-gold);
}

.room-card img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-info {
    padding: 30px;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.room-info h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.price {
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d81b60; /* Your beautiful pink color */
    color: #ffffff;      /* Forces text to white */
}

/* --- Outline Button Style --- */
.btn-outline {
    display: inline-block;
    padding: 13px 33px; /* Slightly smaller padding to account for the 2px border */
    background: transparent;
    border: 2px solid var(--accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #d81b60;
    border-color: #d81b60;
    color: #ffffff !important;
}

/* --- Hero Buttons Wrapper --- */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center; /* This forces both buttons to be perfectly level */
    flex-wrap: wrap;
}

/* Removes the default margin so they align perfectly in the wrapper */
.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    margin-top: 0; 
}


/* ==========================================================
   1. HOME PAGE SPECIFIC (Signature Accommodations)
   ========================================================== */
.featured-rooms-section {
    padding: 100px 0;
    background: #fff;
}

.home-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.featured-rooms-section .room-card img {
    height: 450px; 
}

.featured-rooms-section .room-card::after {
    content: '';
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.featured-rooms-section .room-card:hover {
    border: 1px solid rgba(212, 175, 55, 0.6);
}




/* --- Home Gallery Strip --- */
.home-gallery-strip {
    padding: 0; /* No padding for edge-to-edge look */
    overflow: hidden;
    background: #000;
}

.gallery-track {
    display: flex;
    width: 100%;
}

.gallery-slide {
    flex: 1; /* Distributes images evenly */
    height: 400px;
    overflow: hidden;
    border-right: 2px solid #fff; /* Thin white separator for luxury feel */
}

.gallery-slide:last-child { border-right: none; }

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Slight desaturation for a moody, high-end look */
    transition: all 0.6s ease;
}

.gallery-slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}



/* ==========================================================
   2. ARCHIVE PAGE SPECIFIC (All Rooms List)
   ========================================================== */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-bottom: 80px;
}

.archive-grid .room-card img {
    height: 300px;
}



/* --- Single Room Page Styles --- */
.single-room-container {
    padding-bottom: 80px;
}

.room-header {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
}

.room-featured-image, .room-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-title-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 80px 0 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: #fff;
}

.room-meta-top {
    font-size: 1.1rem;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 10px;
}

.room-content-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.room-description p {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Ensure the home page image wrapper respects our taller height */
.featured-rooms-section .room-image {
    height: 450px;
    overflow: hidden;
}

.featured-rooms-section .room-card img {
    height: 100%; /* Make the image fill the 450px wrapper */
}

.booking-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(148, 122, 37, 0.05);
    position: sticky;
    top: 120px;
}

.sidebar-price {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.amenities-list h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 30px 0 15px;
    color: var(--accent-gold);
}

.amenities-list ul {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #666;
}

.room-gallery-section {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
    margin-top: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.85;
    cursor: zoom-in;
}



/* --- Floating Mobile Book Bar --- */
.mobile-book-bar {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.mobile-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar-price span {
    display: block;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
}

.bar-price strong {
    font-size: 1.2rem;
    color: var(--primary-dark);
}


/* --- Fine Dining Section --- */
.fine-dining-section {
    background-color: #fafafa;
    padding: 100px 0;
}

.dining-flex {
    display: grid;
    /* Changed from 1.2fr 1fr so the image on the right stays slightly larger */
    grid-template-columns: 1fr 1.2fr; 
    gap: 80px;
    align-items: center;
}

.dining-image {
    position: relative;
}

.dining-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    /* Flipped the shadow to the left side (-20px) */
    box-shadow: -20px 20px 0px var(--accent-gold); 
}

.dining-badge {
    position: absolute;
    top: -20px;
    /* Flipped the badge to the left side so it doesn't bleed off the screen */
    left: -20px; 
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 15px 25px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}




/* --- Reviews Section --- */
.reviews-section {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.reviews-header {
    margin-bottom: 60px;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.review-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    font-family: serif;
    line-height: 0;
    margin-bottom: 20px;
    opacity: 0.3;
}

.review-body {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.guest-name {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
}

.stars {
    font-size: 1.2rem;
    margin-top: 15px;
    letter-spacing: 2px;
}

.star-gold { color: var(--accent-gold); }
.star-gray { color: #e0e0e0; }

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--accent-gold);
}


/* --- Page Banner (Archive, Contact, etc) --- */
.page-banner {
    background: #1a1a1a;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 0;
}

.map-container {
    margin-top: 30px;
    border: 2px solid var(--accent-gold);
}

.gnd-form input, .gnd-form select, .gnd-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: inherit;
}

/* --- Styling Plugin Forms (CF7 / WPForms) --- */
.gnd-custom-form input[type="text"],
.gnd-custom-form input[type="email"],
.gnd-custom-form textarea,
.gnd-custom-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-family: inherit;
    border-radius: 0;
}

.gnd-custom-form input:focus, 
.gnd-custom-form textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
}

.gnd-custom-form input[type="submit"],
.wpforms-submit {
    background: var(--primary-dark) !important;
    color: #fff !important;
    padding: 15px 40px !important;
    border: none !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.gnd-custom-form input[type="submit"]:hover {
    background: var(--accent-gold) !important;
}



.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl; /* Flips the order */
}

.about-grid.reverse .about-text {
    direction: ltr; /* Keeps text reading left-to-right */
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 20px 20px 0px var(--accent-gold); /* Luxury Accent */
}

.about-text h2 {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.sub-title {
    color: #d81b60; /* Your Pink Accent */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}





/* --- Banquet Hero --- */
.banquet-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

/* --- Professional Footer --- */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-column h3.footer-logo {
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-column h4 {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.footer-column p {
    color: #aaa;
    line-height: 1.7;
}

.contact-list, .footer-menu {
    list-style: none;
    padding: 0;
}

.contact-list li, .footer-menu li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}






.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05); /* Subtle dark background */
    border: 1px solid var(--accent-gold); /* Gold border */
    border-radius: 50%;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d81b60; /* Your signature Pink */
    border-color: #d81b60;
    color: #fff;
    transform: translateY(-3px); /* Subtle luxury lift */
}




/* --- Newsletter Signup Styling --- */
.footer-newsletter {
    padding: 60px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 60px;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: #aaa;
    font-size: 1rem;
}

.newsletter-inline-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.newsletter-inline-form input {
    flex: 1;
    background: #222;
    border: 1px solid #444;
    padding: 15px 20px;
    color: #fff;
    font-family: inherit;
}

.newsletter-inline-form input:focus {
    border-color: var(--accent-gold);
    outline: none;
}

.btn-gold {
    background: var(--accent-gold);
    color: #1a1a1a;
    border: none;
    padding: 0 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #fff;
}






/* --- Contact Form 7 Newsletter Fixes --- */

/* 1. Force the hidden CF7 paragraph wrapper to act like our flexbox */
.newsletter-form-wrapper p,
.newsletter-form-wrapper form {
    display: flex;
    gap: 10px;
    width: 100%;
    margin: 0;
    align-items: stretch;
}

/* 2. Force the invisible span around the email to fill the empty space */
.newsletter-form-wrapper .wpcf7-form-control-wrap {
    flex: 1;
}

/* 3. Style the email input correctly */
.newsletter-form-wrapper input[type="email"] {
    width: 100%;
    background: #222 !important;
    border: 1px solid #444 !important;
    padding: 15px 20px !important;
    color: #fff !important;
    font-family: inherit;
    box-sizing: border-box;
    border-radius: 0 !important;
}

/* 4. Force the button color, size, and position (The !important tags block CF7) */
.newsletter-form-wrapper input.btn-gold {
    background: var(--accent-gold) !important;
    color: #1a1a1a !important;
    border: none !important;
    padding: 0 30px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    cursor: pointer;
    transition: background 0.3s ease !important;
    margin: 0 !important;
    height: 100%; /* Makes it match the height of the email box */
}

/* Hover Effect */
.newsletter-form-wrapper input.btn-gold:hover {
    background: #ffffff !important;
}



/* --- Contact Form 7 Luxury Styling --- */
.gnd-custom-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 15px;
}

.gnd-custom-form input[type="text"],
.gnd-custom-form input[type="email"],
.gnd-custom-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.gnd-custom-form input:focus,
.gnd-custom-form textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
    background: #fff;
}

/* Matching your Pink Hover for the Submit Button */
.gnd-custom-form input[type="submit"] {
    background: var(--primary-dark);
    color: #fff;
    padding: 15px 40px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%; /* Makes it a nice big call-to-action */
}

.gnd-custom-form input[type="submit"]:hover {
    background: #d81b60 !important; /* Your specific Pink */
    color: #ffffff !important;
}

/* --- Contact Form 7 Button Luxury Polish --- */
.wpcf7-submit {
    width: 100% !important;
    background: var(--primary-dark) !important;
    color: #fff !important;
    padding: 18px !important;
    border: none !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    margin-top: 10px !important;
}

.wpcf7-submit:hover {
    background: #d81b60 !important; /* Your signature Pink */
    box-shadow: 0 10px 20px rgba(216, 27, 96, 0.2);
    transform: translateY(-2px);
}


/*------ HOme Benquet Section -----*/
/* --- Home Banquet (Editorial Magazine Style) --- */
.home-editorial-banquet {
    padding: 140px 0;
    background: #fafafa;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* The Collage Container */
.editorial-image-collage {
    position: relative;
    height: 650px;
    width: 100%;
}

/* 1. The Gold Frame (Sits in the background) */
.collage-frame-gold {
    position: absolute;
    top: 0;
    left: 40px;
    width: 80%;
    height: 80%;
    border: 2px solid var(--accent-gold);
    z-index: 1;
}

/* 2. The Main Image */
.img-main {
    position: absolute;
    top: 40px;
    left: 0;
    width: 75%;
    height: 85%;
    z-index: 2;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.1);
}

.img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. The Secondary Image (Overlaps the main image) */
.img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    z-index: 3;
    box-shadow: -15px -15px 40px rgba(0,0,0,0.15);
    border: 8px solid #fafafa; /* Creates a clean cutout effect */
}

.img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The Floating Badge */
.editorial-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 12px 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 4;
}

/* Typography Enhancements */
.editorial-text-content {
    padding-right: 40px;
}

.editorial-desc {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.editorial-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.editorial-features li {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.editorial-features li .diamond {
    color: var(--accent-gold);
    font-size: 1.2rem;
}











/* =========================================
   DESKTOP: Hide the Hamburger by Default
========================================= */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1000; /* Keeps it on top of the menu */
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--primary-dark);
    transition: all 0.3s ease-in-out;
}









/* ==========================================================
   BANQUET PAGE: Inquiry Section
   ========================================================== */
.banquet-inquiry-section {
    padding: 120px 0 100px; /* Extra top padding for the floating box */
    background: var(--primary-dark); /* Uses your dark luxury variable */
    color: #ffffff;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.inquiry-content p {
    color: #aaaaaa;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.inquiry-contact-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.inquiry-contact-details p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.inquiry-contact-details strong {
    color: var(--accent-gold);
    margin-right: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* The Floating White Form Box */
.inquiry-form-wrapper {
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    /* This shifts the form UP so it breaks out of the dark section slightly */
    transform: translateY(-60px); 
}

/* Keep the form inputs visible on the white background */
.inquiry-form-wrapper .gnd-custom-form input,
.inquiry-form-wrapper .gnd-custom-form textarea {
    background: #fdfdfd;
    border: 1px solid #ddd;
    color: #333;
}




/* ==========================================================
   BANQUET PAGE: Editorial Venues (Zig-Zag Layout)
   ========================================================== */
.banquet-venues-section {
    padding: 120px 0;
    background: #fafafa;
}

.venues-editorial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px; /* Massive spacing between venues for a premium feel */
    margin-top: 60px;
}

.venue-editorial-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* The Magic Zig-Zag Rule: Swaps the image to the right on every 2nd row! */
.venue-editorial-row:nth-child(even) {
    flex-direction: row-reverse;
}

.venue-image-wrapper {
    flex: 1.2; /* Makes the image slightly larger than the text box */
    position: relative;
    height: 500px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.venue-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.venue-editorial-row:hover .venue-image-wrapper img {
    transform: scale(1.05);
}

.venue-capacity-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Fixes the badge position for the swapped rows */
.venue-editorial-row:nth-child(even) .venue-capacity-badge {
    right: auto;
    left: 0;
}

.venue-info-wrapper {
    flex: 1;
}

.venue-info-content h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
}

.venue-info-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}


/* ==========================================================
   BANQUET PAGE: Image Gallery
   ========================================================== */
.banquet-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns wide */
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 350px;
    overflow: hidden;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}



/* ==========================================================
   YOUTUBE BACKGROUND HERO
   ========================================================== */
.banquet-hero.video-hero {
    position: relative;
    height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    background: #111; /* Fallback color before video loads */
}

/* The protective wrapper */
.youtube-bg-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none; /* CRITICAL: Stops users from clicking the video! */
}

/* The Math to force 16:9 full-screen cropping */
.youtube-bg-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    border: none;
}

/* The dark glass over the video */
.video-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust this 0.4 up or down for darkness */
    z-index: 1;
}

/* Ensure text sits on top of the glass */
.video-hero .hero-content {
    position: relative;
    z-index: 2;
    animation: luxuryFadeUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
    .banquet-hero.video-hero {
        height: 60vh; /* Slightly shorter on mobile */
    }
}













/* --- About Us: Heritage & Journey Styling --- */
.about-hero-section {
    height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.serif-title {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    margin-top: 15px;
}

.gold-caps {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: bold;
}

.chapter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.chapter-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.chapter-number {
    font-size: 5rem;
    color: rgba(216, 27, 96, 0.1); /* Very faint Pink for luxury texture */
    font-family: 'Georgia', serif;
    position: absolute;
    margin-top: -40px;
    z-index: -1;
}

.chapter-content h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.chapter-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid #eee;
    box-shadow: 30px 30px 0px -10px var(--primary-dark); /* Offset shadow look */
}







/* ==========================================================================
   12. RESPONSIVE DESIGN (Bootstrap 5 Breakpoints)
   ========================================================================== */

/* --- EXTRA LARGE (xl: < 1200px) --- */
@media (max-width: 1199.98px) {
    /* Reserved for tweaking ultra-wide layouts down to standard desktop */
}

/* --- LARGE (lg: < 992px) - Standard Tablets --- */
@media (max-width: 991.98px) {
    
    /* Global Grids & Stacking */
    .home-rooms-grid, 
    .archive-grid, 
    .room-content-grid, 
    .contact-grid,
    .editorial-grid, 
    .inquiry-grid, 
    .dining-flex,
    .footer-grid,
    .chapter-grid, 
    .chapter-grid.reverse {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    /* Fix Text Direction for stacked grids */
    .chapter-grid, 
    .chapter-grid.reverse {
        direction: ltr !important; 
    }
    
    /* Room Specifics */
    .featured-rooms-section .room-card img {
        height: 350px;
    }
    
    .room-header {
        height: 50vh;
    }
    
    .mobile-book-bar {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Fine Dining Reorder */
    .dining-content {
        order: 2;
    }
    
    .dining-image {
        order: 1;
    }
    
    .dining-image img {
        height: 350px;
        box-shadow: -10px 10px 0px var(--accent-gold);
    }
    
    .dining-badge {
        left: 0;
    }
    
    /* Reviews & Newsletter */
    .review-card {
        flex: 0 0 90%;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-inline-form, 
    .newsletter-form-wrapper p, 
    .newsletter-form-wrapper form {
        flex-direction: column;
    }
    
    /* Banquet Layout Fixes */
    .banquet-inquiry-section {
        padding: 80px 0;
    }
    
    .inquiry-form-wrapper {
        transform: translateY(0);
        padding: 30px;
    }
    
    .editorial-image-collage {
        height: 500px;
    }
    
    .collage-frame-gold {
        width: 90%;
        left: 10px;
    }
    
    .img-main {
        width: 85%;
    }
    
    .img-secondary {
        width: 60%;
        height: 45%;
    }
    
    .editorial-text-content {
        padding-right: 0;
    }
    
    .venue-editorial-row, 
    .venue-editorial-row:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }
    
    .venue-image-wrapper {
        height: 350px;
        width: 100%;
    }
    
    .venue-info-content h3 {
        font-size: 2rem;
    }
    
    .banquet-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Heritage Page Imagery */
    .chapter-image img {
        height: 400px !important;
        box-shadow: 15px 15px 0px -5px var(--primary-dark);
    }
    
    .serif-title {
        font-size: 2.8rem;
    }
}

/* --- MEDIUM (md: < 768px) - Large Mobile Phones --- */
@media (max-width: 767.98px) {
    
    /* Header Layout & Logo */
    .header-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    /* Enable Hamburger Menu */
    .hamburger-menu {
        display: block;
    }
    
    /* Hidden Mobile Menu Overlay */
    #site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
    }
    
    #site-navigation.active {
        right: 0;
    }
    
    #site-navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    #site-navigation ul li a {
        font-size: 1.5rem;
        color: var(--primary-dark);
        letter-spacing: 2px;
        text-decoration: none;
    }
    
    /* Hamburger Animations */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Typography & Hero Fixes */
    .hero-content h1, 
    .hero-section h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        padding: 0 15px;
        word-break: break-word;
    }
    
    .about-hero-section {
        height: 50vh !important;
    }
    
    .serif-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-top: 10px;
    }
    
    .gold-caps {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 2rem !important;
        padding: 0 15px;
        text-align: center !important;
    }
    
    /* Rooms Stack */
    .rooms-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }
    
    .room-card {
        width: 100%;
        margin: 0;
    }
    
    /* Home Gallery Swipe Features */
    .gallery-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        scrollbar-width: none;
    }
    
    .gallery-track::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-slide {
        flex: 0 0 85%;
        height: 350px;
        scroll-snap-align: center;
        border-right: 10px solid #ffffff;
    }
    
    .gallery-slide:last-child {
        border-right: 15px solid transparent;
    }
    
    /* Small Grids */
    .banquet-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SMALL (sm: < 576px) - Small Mobile Phones --- */
@media (max-width: 575.98px) {
    /* Base typography scaling for tiny screens */
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    section {
        padding: 50px 0;
    }
}





















































