/* =========================================================
   The Grand Elegance — Stylesheet (Vanilla CSS)
   Converted from Tailwind, design preserved 1:1
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --dark: #0A0F14;
    --dark-lighter: #1A232C;
    --cream: #F9F6F0;

    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;

    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--gold);
    color: #fff;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ---------- Layout Helper ---------- */
.container {
    max-width: 80rem;          /* 1280px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;      /* 24px */
    padding-right: 1.5rem;
}
@media (min-width: 768px) {
    .container {
        padding-left: 3rem;     /* 48px */
        padding-right: 3rem;
    }
}

.is-hidden {
    display: none !important;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--outline {
    color: #8a4b00; background-color: #f9f6f0; border: 2px solid #8a4b00;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.05em; /* tracking-wider */
}
.btn--outline:hover {
    background: var(--gold);
    color: #fff;
}

.btn--gold {
    background: var(--gold);
    color: var(--dark);
    padding: 0.75rem 2rem;
}
.btn--gold:hover {
    background: #fff;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

/* Scrolled state (toggled by JS) */
.header.is-scrolled {
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    color: #fff;
    transition: color 0.3s ease;
}
.logo__main {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.1;
}
.logo__sub {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.25rem;
}
.header.is-scrolled .logo {
    color: var(--dark);
}

/* Desktop nav */
.nav {
    display: none;
    gap: 2rem;
}
.nav__link {
   color: rgb(255, 255, 255); background-color: rgb(249, 246, 240);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.nav__link:hover {
     color: #ff6e6e; 
}
.header.is-scrolled .nav__link {
    color: var(--dark);
}
.header.is-scrolled .nav__link:hover {
    color: var(--gold);
}

/* Header CTA */
.header__cta {
    display: none;
}

/* Burger */
.header__burger {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.875rem;
    line-height: 1;
    transition: color 0.3s ease;
}
.header__burger:hover {
    color: var(--gold);
}
.header.is-scrolled .header__burger {
    color: var(--dark);
}

@media (min-width: 768px) {
    .nav { display: flex; }
    .header__cta { display: block; }
    .header__burger { display: none; }
}

/* Mobile menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark);
    border-top: 1px solid var(--gray-800);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}
.mobile-menu a {
    color: #fff;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.mobile-menu a:hover {
    color: var(--gold);
}
@media (min-width: 768px) {
    .mobile-menu { display: none !important; }
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--dark);
}
.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.slide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}
.slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide__content {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}
.slide__eyebrow {
    color: var(--gold);
    font-family: var(--font-sans);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.slide__title {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.slide__text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    font-weight: 300;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .slide__eyebrow { font-size: 1rem; }
    .slide__title { font-size: 4.5rem; }
}

/* Slider controls */
.slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    font-size: 1.875rem;
    line-height: 1;
    transition: color 0.3s ease, background 0.3s ease;
}
.slider__btn:hover {
    color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
}
.slider__btn--prev { left: 1rem; }
.slider__btn--next { right: 1rem; }

@media (min-width: 768px) {
    .slider__btn { font-size: 2.25rem; }
    .slider__btn--prev { left: 2.5rem; }
    .slider__btn--next { right: 2.5rem; }
}

/* =========================================================
   RESERVATION BOX
   ========================================================= */
.reservation {
    position: relative;
    z-index: 40;
    width: 100%;
    background: #f8f6f1;
}

.reservation__wrap {
    position: relative;
    margin-top: -4rem;
}

.reservation__card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    border-top: 4px solid #c9a227;
    padding: 25px;
}

.reservation__form {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 15px;
    align-items: end;
}

.field {
    display: flex;
    flex-direction: column;
}

.field__label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.field__control {
    position: relative;
}

.field__icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #c9a227;
}

.field__input {
    width: 100%;
    height: 50px;
    padding: 0 15px 0 40px;
    border: 1px solid #ddd;
    background: #fafafa;
    outline: none;
}

.field__input--select {
    appearance: none;
}

.field__caret {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.reservation__submit {
    width: 100%;
    height: 50px;
    border: none;
    background: #c9a227;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.reservation__submit:hover {
    background: #111;
}

@media(max-width:991px){
    .reservation__form{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px){
    .reservation__form{
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   SHARED SECTION HEADINGS
   ========================================================= */
.section-head {
    text-align: center;
    margin-bottom: 4rem;
}
.section-head__eyebrow {
    display: block;
    color: var(--gold);
    font-family: var(--font-sans);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-head__title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: #fff;
    font-weight: 400;
}
.section-head__title--dark {
    color: var(--dark);
}
.section-head__rule {
    width: 6rem;
    height: 4px;
    background: var(--gold);
    margin: 1.5rem auto 0;
}
@media (min-width: 768px) {
    .section-head__title { font-size: 3rem; }
}

/* Eyebrow with line (About section) */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.section-eyebrow__line {
    height: 1px;
    width: 3rem;
    background: var(--gold);
}
.section-eyebrow__text {
    color: var(--gold);
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background: var(--cream);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about__grid { grid-template-columns: repeat(2, 1fr); }
}

.about__media {
    position: relative;
}
.about__frame {
    position: absolute;
    inset: -1rem;
    border: 2px solid rgba(212, 175, 55, 0.4);
    transform: translate(1rem, 1rem);
    transition: transform 0.5s ease;
    z-index: 0;
}
.about__media:hover .about__frame {
    transform: translate(0.5rem, 0.5rem);
}
.about__img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about__title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}
@media (min-width: 768px) {
    .about__title { font-size: 3rem; }
}
.about__para {
    color: var(--gray-600);
    font-weight: 300;
    font-size: 17px;
    margin-bottom: 1.5rem;
}
.about__para--last {
    margin-bottom: 2.5rem;
}

.about__sign-img {
    height: 3rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    filter: grayscale(1);
    mix-blend-mode: multiply;
}
.about__sign-name {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--dark);
}
.about__sign-role {
    font-size: 0.875rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =========================================================
   AMENITIES
   ========================================================= */
.amenities {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.amenities__blob {
    position: absolute;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.05);
    filter: blur(48px);
}
.amenities__blob--tr {
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    transform: translate(50%, -50%);
}
.amenities__blob--bl {
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    transform: translate(-50%, 50%);
}
.amenities__inner {
    position: relative;
    z-index: 10;
}

.amenities__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .amenities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .amenities__grid { grid-template-columns: repeat(3, 1fr); }
}

.amenity {
    border: 1px solid var(--gray-800);
    background: rgba(26, 35, 44, 0.5);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.amenity:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-0.5rem);
}
.amenity__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: var(--dark-lighter);
    color: var(--gold);
}
.amenity__icon i {
    font-size: 2.25rem;
}
.amenity__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 400;
}
.amenity__text {
    color: #ffffff;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.7;
}

/* Rotating icon animation */
@keyframes rotateIcon {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
.anim-rotate-icon {
    animation: rotateIcon 4s linear infinite;
    transform-style: preserve-3d;
}

/* =========================================================
   ATTRACTIONS (3D Carousel)
   ========================================================= */
.attractions {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--cream);
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    position: relative;
}
.attractions__head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.attractions__head .section-head__rule {
    margin-bottom: 2rem;
}
.attractions__lead {
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 300;
}

.scene {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
    width: 100%;
}
.carousel-3d {
    width: 300px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: spinCarousel 25s infinite linear;
}
.carousel-3d:hover {
    animation-play-state: paused;
}
.carousel-item {
    position: absolute;
    width: 300px;
    height: 400px;
    left: 0;
    top: 0;
    backface-visibility: hidden;
    transition: transform 1s, opacity 1s;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--gold);
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(10, 15, 20, 0.9));
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.carousel-item:hover .carousel-item__overlay {
    transform: translateY(0);
}
.carousel-item__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.carousel-item__meta {
    font-size: 0.75rem;
    font-weight: 300;
    color: #d1d5db;
}

/* Position the 5 items (360 / 5 = 72deg) */
.carousel-item:nth-child(1) { transform: rotateY(0deg)   translateZ(350px); }
.carousel-item:nth-child(2) { transform: rotateY(72deg)  translateZ(350px); }
.carousel-item:nth-child(3) { transform: rotateY(144deg) translateZ(350px); }
.carousel-item:nth-child(4) { transform: rotateY(216deg) translateZ(350px); }
.carousel-item:nth-child(5) { transform: rotateY(288deg) translateZ(350px); }

@keyframes spinCarousel {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}

.attractions__hint {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1.5rem;
    font-weight: 300;
    font-style: italic;
}

/* =========================================================
   GALLERY (3D)
   ========================================================= */
.gallery {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: var(--dark);
    color: #fff;
}
.gallery-3d-grid {
    perspective: 1000px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .gallery-3d-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .gallery-3d-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-3d-item {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
    transform: rotateX(15deg) rotateY(-10deg) translateZ(-50px);
    box-shadow: -10px 20px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    height: 20rem;
}
.gallery-3d-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.6s ease;
    z-index: 1;
}
.gallery-3d-item:hover {
    transform: rotateX(0deg) rotateY(0deg) translateZ(50px) scale(1.05);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
    z-index: 20;
}
.gallery-3d-item:hover::before {
    background: rgba(0, 0, 0, 0);
}
.gallery-3d-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Offset rows (lg:mt-12 in original) */
@media (min-width: 1024px) {
    .gallery-3d-item--offset { margin-top: 3rem; }
}

.gallery-3d-item__cap {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.gallery-3d-item:hover .gallery-3d-item__cap {
    opacity: 0.9;
}
.gallery-3d-item__cap p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
}

/* =========================================================
   LOCATION + VIDEO
   ========================================================= */
.location {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: var(--cream);
    border-top: 1px solid #e5e7eb;
}
.location__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .location__grid { grid-template-columns: repeat(2, 1fr); }
}

.location__card {
    background: #fff;
    padding: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    border-radius: 0.5rem;
}
.location__heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid var(--gold);
}
.location__frame {
    width: 100%;
    height: 400px;
    background: #e5e7eb;
    border-radius: 0.25rem;
    overflow: hidden;
}
.location__frame--dark {
    background: #000;
}
.location__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}
.location__info {
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 0.5rem;
}
.location__info i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}
.location__info-title {
    font-weight: 600;
    color: var(--dark);
}
.location__info-text {
    color: var(--gray-500);
    font-weight: 300;
    font-size: 0.875rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--dark);
    color: var(--text);
    border-top: 6px solid var(--red);
    margin-top: 4rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr;
    gap: 3.5rem;
    padding: 4rem 0 3rem;
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .footer__social {
        justify-content: center;
    }
}

/* Brand column */
.footer__brand {
    max-width: 320px;
}

.footer__logo img {
        max-width: 200px;
    height: 80px;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 6px rgb(0 0 0 / 0.2));
}

.footer__tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* Social icons - unique hover */
.footer__social {
    display: flex;
    gap: 0.85rem;
}

.footer__social a {
    width: 44px;
    height: 44px;
    border: 1px solid #334155;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.35rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__social a:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
    transform: translateY(-3px) scale(1.05);
}

/* Discover & Contact headings */
.footer__heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.35rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Links */
.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer__links a {
    color: var(--text-muted);
    text-decoration: none;
        font-size: 17px;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer__links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.2s ease;
}

.footer__links a:hover::before {
    width: 16px;
}

/* Contact column - unique styling */
.footer__contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.footer__contact .contact-item i {
    color: var(--red);
    font-size: 1.35rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer__contact .contact-item span,
.footer__contact .contact-item a {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
}

.footer__contact .contact-item a:hover {
    color: var(--gold);
}

/* Unique Book Button */
.btn-book-footer {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--red);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgb(185 28 28 / 0.4);
    text-align: center;
}

.btn-book-footer:hover {
    background: #991b1b;
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgb(185 28 28 / 0.4);
}

/* ========== UNIQUE CSS MARQUEE ========== */
.footer__marquee {
    background: var(--red);
    overflow: hidden;
    border-top: 1px solid #7f1d1d;
    border-bottom: 1px solid #7f1d1d;
}

.marquee {
    padding: 14px 0;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: scroll-left 18s linear infinite;
    padding-right: 50px;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Policy line */
.footer__policy {
    background: #020617;
    padding: 1.35rem 0;
    font-size: 0.85rem;
}

.policy-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 15px;
    color: #64748b;
}

.policy-content p {
    margin: 0;
}

.policy-links {
    display: flex;
    gap: 1.5rem;
    font-size: 16px;
}

.policy-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-links a:hover {
    color: var(--gold);
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .footer__grid {
        padding: 3rem 0 2rem;
    }
    
    .demo-hero h1 {
        font-size: 2.2rem;
    }
    
    .marquee-content {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
}

:root {
    --red: #b91c1c;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gold: #f59e0b;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 999;
}

.logo__img {
    width: 200px;
    height: 160px;
    max-width: 220px;
    object-fit: contain;
    display: block;
}



/* Main Section Wrapper (Pura About hatakar ab se 'inner-about' ban gaya) */
.inner-about {
    padding-top: 4rem;
    padding-bottom: 6rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background: var(--cream, #F9F8F6); 
}

/* Ye inner container sub center alignment properly fix rakhega */
.inner-about .inner-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
}

/* Heading H2 ka style */
.inner-about h2 {
    font-family: var(--font-serif, serif);
    font-size: 2.25rem;
    color: var(--dark, #1a1a1a);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

@media (min-width: 768px) {
    .inner-about h2 { 
        font-size: 3rem; 
    }
}

/* Paragraphs ka style */
.inner-about p {
    color: #000;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Aakhri paragraph ki nichli line gap theek karne ke liye */
.inner-about p:last-child {
    margin-bottom: 0;
}


.location-container {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    background: #ffffff;
}
.location-title {
    text-align: center;
    color: #006ab1;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}
.location-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ed1b2e;
}
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    align-items: stretch;
}
.location-info {
    flex: 1;
    min-width: 300px;
}
.coordinates-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 106, 177, 0.1);
    border: 1px solid rgba(0, 106, 177, 0.15);
}
.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #006ab1;
}
.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}
.coordinate i {
    color: #ed1b2e;
    font-size: 1.2rem;
}
.directions-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 106, 177, 0.1);
    border: 1px solid rgba(0, 106, 177, 0.15);
}
.directions-form label {
    color: #006ab1;
    text-align: left;
}
.directions-form input {
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.directions-form input:focus {
    outline: none;
    border-color: #006ab1;
    box-shadow: 0 0 0 3px rgba(0, 106, 177, 0.2);
}
.directions-form button {
    background: #006ab1;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.directions-form button:hover {
    background: #ed1b2e;
    color: #ffffff;
    transform: translateY(-2px);
}
.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 106, 177, 0.1);
    border: 1px solid rgba(0, 106, 177, 0.15);
    transition: transform 0.3s ease;
}
.location-map:hover {
    transform: translateY(-5px);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    .location-info, .location-map {
      width: 100%;
    }
}





#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}
#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}
#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #006ab1;
    text-decoration: none;
    background: #ffffff;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 106, 177, 0.2);
    height: 120px;
}
#hotel-navigation-section .nav-link:hover {
    background: #006ab1;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 106, 177, 0.3);
    transform: translateY(-3px);
}
#hotel-navigation-section .nav-link:hover .nav-desc {
    color: #ffffff;
}
#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ed1b2e;
    transition: all 0.3s ease;
}
#hotel-navigation-section .nav-link:hover .nav-icon {
    color: #ffffff;
    transform: scale(1.1);
}
#hotel-navigation-section .nav-text {
    margin-bottom: 5px;
}
#hotel-navigation-section .nav-desc {
    opacity: 0.8;
    color: #000000;
    transition: all 0.3s ease;
}
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}
@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }
    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }
    #hotel-navigation-section {
        padding: 30px 0;
    }
}


/* =================================================================
   6. FAQ SECTION
   ================================================================= */
/* =========================
   FAQ Section
========================= */

.faq-section {
    width: 100%;
    margin: 40px auto;
    padding: 0 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    align-items: stretch;
}

/* =========================
   FAQ Card
========================= */

.faq-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border-top: 4px solid #006ab1;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
}

/* =========================
   Question
========================= */

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    background: #f8f9fb;
}

.faq-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #ed1b2e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.faq-question-text {
    margin: 0;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
}

/* =========================
   Answer
========================= */

.faq-answer {
    flex: 1;
    padding: 22px;
    position: relative;
}

.faq-answer::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #006ab1, transparent);
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 18px;
    line-height: 1.8;
}

.faq-answer a {
    color: #006ab1;
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    color: #ed1b2e;
    text-decoration: underline;
}

/* =========================
   Tablet
========================= */

@media (max-width: 991px) {

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question-text {
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 17px;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 576px) {

    .faq-section {
        padding: 0 10px;
    }

    .faq-question {
        align-items: flex-start;
        padding: 18px;
    }

    .faq-answer {
        padding: 18px;
    }

    .faq-answer::before {
        left: 18px;
        right: 18px;
    }

    .faq-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 17px;
    }

    .faq-question-text {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* =========================================================
   ADA COLOR CONTRAST FIXES
   Layout/design preserved — only contrast-safe color overrides
   ========================================================= */

:root {
    --gold-accessible: #8A5C00;
    --footer-policy-text: #94A3B8;
    --ada-red: #DC2626;
}

/* Selection contrast */
::selection {
    background: var(--gold);
    color: var(--dark);
}

/* Header scrolled state: fixes white nav text on light header */
.header.is-scrolled .logo,
.header.is-scrolled .nav__link,
.header.is-scrolled .nav__link:visited,
.header.is-scrolled .header__burger {
    color: var(--dark) !important;
}

.header.is-scrolled .nav__link:hover,
.header.is-scrolled .nav__link:focus {
    color: var(--gold-accessible) !important;
}

.header.is-scrolled .btn--outline {
    color: var(--gold-accessible) !important;
    border-color: var(--gold-accessible) !important;
    background: transparent !important;
}

.header.is-scrolled .btn--outline:hover,
.header.is-scrolled .btn--outline:focus {
    background: var(--gold) !important;
    color: var(--dark) !important;
}

/* Button hover contrast: keeps gold background but uses dark readable text */
.btn--outline:hover,
.btn--outline:focus {
    background: var(--gold);
    color: var(--dark);
}

/* Form/book button contrast on gold background */
.reservation__submit {
    color: var(--dark);
}

.reservation__submit:hover,
.reservation__submit:focus {
    background: #111;
    color: #fff;
}

/* Reservation icons on light fields */
.field__icon {
    color: var(--gold-accessible);
}

/* Gold text on cream/light sections */
.about .section-eyebrow__text,
.about .section-head__eyebrow,
.about__sign-role,
.attractions .section-head__eyebrow,
.location .section-head__eyebrow,
.inner-about .section-head__eyebrow,
.faq-section .section-head__eyebrow,
#hotel-navigation-section .section-head__eyebrow {
    color: var(--gold-accessible);
}

/* Icons placed on light cards/backgrounds */
.location__info i {
    color: var(--gold-accessible);
}

/* Video placeholder on black frame */
.location__frame--dark .video-coming-soon,
.location__frame--dark .video-coming-soon p {
    color: #fff;
}

.location__frame--dark .video-coming-soon i {
    color: var(--gold);
}

/* Footer policy text/links: improves muted gray on dark background */
.policy-content,
.policy-links a {
    color: var(--footer-policy-text);
}

.policy-links a:hover,
.policy-links a:focus {
    color: var(--gold);
}

/* Footer/contact red icons with enough contrast on dark footer */
.footer__contact .contact-item i {
    color: var(--ada-red);
}

/* Red UI pieces: slight darker red for white-text contrast */
.faq-icon,
.directions-form button:hover,
.directions-form button:focus {
    background: #D7192A;
    color: #fff;
}

/* Amenity text declaration safety */
.amenity__text {
    color: #ffffff;
    font-weight: 300;
}

