/*
  Hotel North View | Main Design System & Home Styles
  Theme: Minimal White Luxury
*/

:root {
    --white: #ffffff;
    --light-grey: #f8f8f8;
    --gold: #c8a97e;
    --gold-dark: #b6986a;
    --dark: #111111;
    --grey: #555555;
    --font-heading: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.2s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

.no-scroll {
    overflow: hidden !important;
    padding-right: 8px;
    /* Offset for scrollbar removal */
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Custom Selection */
::selection {
    background-color: var(--gold);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    overflow: hidden;
    /* Prevent child animations from causing slide */
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.bg-light {
    background-color: var(--light-grey);
}

.no-padding {
    padding: 0;
}

.mt-4 {
    margin-top: 40px;
}

.text-center {
    text-align: center;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header .subtitle {
    display: inline-block;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 20px auto 40px;
}

/* Navbar & Top Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0px 0;
}

/* Scroll Progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--gold);
    z-index: 11000;
    transition: width 0.1s ease;
}

.nav-top-bar {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.top-bar-marquee {
    display: flex;
    white-space: nowrap;
    animation: topMarquee 60s linear infinite;
    gap: 0;
}

@keyframes topMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.top-bar-marquee span {
    padding: 0 60px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.top-bar-marquee .sep {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.6;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 30px;
}

.top-info span i {
    color: var(--gold);
    margin-right: 8px;
}

.top-actions a {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.top-actions a:hover {
    color: var(--gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 4px;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition-smooth);
    position: relative;
}

.logo-text span {
    color: var(--gold);
}

.logo-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding: 10px 0;
}

.nav-links li a.active {
    color: var(--gold);
}

.nav-links li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-links li a:hover::after {
    width: 60%;
}

.nav-cta {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 12px 30px !important;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--gold);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-top-bar {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.navbar.scrolled .nav-container {
    padding: 15px 40px;
}

.navbar.scrolled .logo-text {
    color: var(--dark);
    font-size: 1.5rem;
}

.navbar.scrolled .nav-links li a {
    color: var(--dark);
}

.navbar.scrolled .nav-links li a:hover {
    color: var(--gold);
}

.navbar.scrolled .nav-cta {
    border-color: var(--gold);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.navbar.scrolled .mobile-toggle .bar {
    background-color: var(--dark);
}

@media (max-width: 991px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active-mobile {
        max-height: 400px;
    }

    .nav-links li a {
        display: block;
        padding: 20px;
        color: var(--dark) !important;
        border-bottom: 1px solid #f1f1f1;
    }

    .nav-links li a::after {
        display: none;
    }

    .nav-cta {
        margin: 20px;
        display: inline-block;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    /* Hamburger Animation */
    .mobile-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--gold);
    }

    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--gold);
    }

    /* Add background to navbar when menu is open on mobile */
    .navbar.mobile-menu-open {
        background-color: var(--white) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar.mobile-menu-open .logo-text,
    .navbar.mobile-menu-open .mobile-toggle .bar {
        color: var(--dark) !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.5));
    z-index: -1;
}

/* Subpage Hero */
.subpage-hero {
    position: relative;
    height: 100vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    margin-bottom: 60px;
}

.subpage-hero .hero-bg {
    filter: brightness(0.6);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 100px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    letter-spacing: 2px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 15px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: none;
}

.btn-text {
    color: var(--gold);
    font-weight: 700;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-text:hover {
    gap: 15px;
}

.full-width {
    width: 100%;
}

.quick-booking {
    position: relative;
    margin-top: -65px;
    z-index: 100;
}

.booking-bar {
    background-color: var(--white);
    padding: 35px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 4px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.booking-bar:hover {
    transform: translateY(-5px);
}

.booking-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #d4af37, #996515);
}

.booking-item {
    padding: 0 30px;
    border-right: 1px solid #f1f1f1;
    transition: all 0.3s;
}

.booking-item:hover {
    background-color: #fafafa;
}

.booking-item:last-child {
    border-right: none;
    display: flex;
    align-items: center;
    padding-right: 5px;
}

.booking-item label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.booking-item input,
.booking-item select {
    width: 100%;
    padding: 10px 0;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--dark);
    outline: none;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .booking-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .booking-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .booking-bar {
        grid-template-columns: 1fr;
    }
}

/* Rooms Preview */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

.room-card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(200, 169, 126, 0);
    z-index: 10;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.room-card:hover::before {
    border-color: rgba(200, 169, 126, 0.5);
}

.room-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.room-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.room-card:hover .room-img img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

.room-price span {
    font-size: 0.8rem;
    font-weight: 400;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.room-info p {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 20px;
    height: 50px;
    overflow: hidden;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--grey);
}

@media (max-width: 991px) {
    .rooms-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.amenity-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
    border: 1px solid rgba(200, 169, 126, 0.1);
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.amenity-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(200, 169, 126, 0.05) 0%,
            rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.amenity-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(200, 169, 126, 0.3);
}

.amenity-item:hover::before {
    opacity: 1;
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.amenity-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.amenity-item p {
    color: var(--grey);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Preview */
.gallery-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.gallery-text {
    flex: 1;
}

.gallery-text p {
    color: var(--grey);
    margin-bottom: 30px;
}

.gallery-images {
    flex: 1.5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.img-box {
    overflow: hidden;
    height: 250px;
}

.img-box.tall {
    grid-row: span 2;
    height: 520px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.img-box:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .gallery-layout {
        flex-direction: column;
    }

    .gallery-images {
        width: 100%;
    }
}

/* Testimonials */
.testimonials-slider {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    max-width: 500px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--light-grey);
    line-height: 1;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author strong {
    display: block;
    color: var(--dark);
}

.author span {
    font-size: 0.85rem;
    color: var(--grey);
}

@media (max-width: 768px) {
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
.main-footer {
    background-color: #0c0c0c;
    color: #aeaeae;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info .logo-text {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-info p {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--gold);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
        opacity 1s ease,
        transform 1s ease;
    will-change: opacity, transform;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
    transition:
        opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translate3d(80px, 0, 0);
    transition:
        opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-left.appear,
.reveal-right.appear {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 768px) {

    .reveal-left,
    .reveal-right {
        transform: translateY(30px);
        /* Vertical animation only on mobile to prevent horizontal slide */
    }
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Premium Animations */
.ambient-glow {
    position: relative;
    overflow: hidden;
}

.ambient-glow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(200, 169, 126, 0.05) 0%,
            rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: luxuriousDrift 20s infinite alternate ease-in-out;
}

@keyframes luxuriousDrift {
    0% {
        transform: translate(-60%, -40%) scale(1);
    }

    100% {
        transform: translate(-40%, -60%) scale(1.3);
    }
}

.magnetic {
    transition:
        transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
        background-color 0.3s,
        color 0.3s,
        box-shadow 0.3s;
}

.reveal-text {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 1.2s ease;
}

.reveal-text.appear span {
    transform: translateY(0);
    opacity: 1;
}

.reveal-text span:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-text span:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-text span:nth-child(4) {
    transition-delay: 0.3s;
}

/* Stagger Details */
.hero .content {
    z-index: 2;
    position: relative;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

.scroll-indicator span {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        opacity 1s ease,
        visibility 1s ease;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 5px;
    font-weight: 800;
    animation: pulse 2s infinite;
}

.loader-logo span {
    color: var(--gold);
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Premium Marquee Section */
.marquee-section {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 15px;
    color: var(--light-grey);
    -webkit-text-stroke: 1px rgba(17, 17, 17, 0.1);
    display: flex;
    align-items: center;
    gap: 50px;
    padding-right: 50px;
    will-change: transform;
}

.marquee-text span {
    color: var(--gold);
    -webkit-text-stroke: 0;
}

.marquee-content.reverse {
    animation: marquee-reverse 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Mobile Marquee */
@media (max-width: 768px) {
    .marquee-text {
        font-size: 3rem;
        letter-spacing: 8px;
    }
}

/* Comprehensive Mobile Responsiveness for index.html */
@media (max-width: 991px) {
    .booking-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .booking-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .booking-item:nth-child(2) {
        border-bottom: 1px solid #eee;
    }

    .booking-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        grid-column: span 2;
    }

    .gallery-layout {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.5;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .subpage-hero h1 {
        font-size: 2.5rem !important;
    }

    .subpage-hero {
        min-height: 300px;
        height: 100vh;
    }

    .quick-booking {
        margin-top: 0;
        padding: 0 15px;
    }

    .booking-bar {
        top: -25px;
        grid-template-columns: 1fr;
        padding: 25px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
    }

    .booking-item {
        padding: 15px 0;
        border-right: none;
        border-bottom: 1px solid #f1f1f1;
    }

    .booking-item:last-child {
        border-bottom: none;
        padding-top: 25px;
        grid-column: span 1;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .gallery-images {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .top-actions {
        display: none;
    }

    .top-info span {
        display: block;
        margin-bottom: 5px;
    }
}

/* Premium About Section Enhancements */
.about-preview {
    position: relative;
    overflow: hidden;
}

.staggered-images {
    position: relative;
    height: 500px;
    width: 100%;
}

.image-main {
    position: absolute;
    width: 80%;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.image-sub {
    position: absolute;
    width: 60%;
    height: 350px;
    bottom: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
    border: 10px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-main img,
.image-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.staggered-images:hover .image-main img {
    transform: scale(1.1);
}

.experience-tag {
    position: absolute;
    top: 40px;
    right: -20px;
    background-color: var(--gold);
    color: var(--white);
    padding: 20px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 30px rgba(200, 169, 126, 0.3);
    border-radius: 2px;
}

.experience-tag .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-tag .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #f1f1f1;
}

.stat-item {
    text-align: left;
}

.stat-item h4 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .staggered-images {
        height: 350px;
        margin-bottom: 40px;
    }

    .image-main {
        width: 100%;
        height: 250px;
        position: relative;
        /* Break absolute on mobile if needed */
    }

    .image-sub {
        display: none;
    }

    .stats-row {
        gap: 15px;
        justify-content: center;
        text-align: center;
    }

    .stat-item {
        flex: 1 1 140px;
        text-align: center;
        padding: 10px !important;
    }

    .about-footer-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .watermark-text {
        font-size: 8rem !important;
        top: 5% !important;
        opacity: 0.05 !important;
    }
}

.watermark-text {
    position: absolute;
    top: 10%;
    right: -5%;
    font-size: 15rem;
    font-family: var(--font-heading);
    color: var(--light-grey);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
    transform: rotate(-5deg);
    user-select: none;
}

.stat-item.card-style {
    background: var(--white);
    padding: 15px 25px;
    border-left: 2px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.stat-item.card-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.section-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(200, 169, 126, 0.1);
    border-left: 3px solid var(--gold);
    margin-bottom: 20px;
}

.section-badge .subtitle {
    margin-bottom: 0;
}

.about-footer-info {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: var(--gold);
    margin-top: 5px;
    opacity: 0.8;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 10000;
}

/* Fix for possible floating issues in grid-split */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .grid-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Booking Modal Styling */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    max-width: 600px;
    width: 90%;
    padding: 60px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.booking-modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--grey);
}

.modal-header h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.booking-summary {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-item span:first-child {
    color: var(--grey);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.summary-item span:last-child {
    font-weight: 700;
    color: var(--dark);
}