/* ==========================================================================
   New Country Motel - Modern Elegant Design
   Inspired by Bellevue Chalet Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Primary Colors */
    --primary: #1a1a1a;
    --primary-hover: #333333;

    /* Accent */
    --accent: #b8860b;
    --accent-light: #d4a84b;

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --bg-overlay: rgba(0, 0, 0, 0.45);

    /* Text */
    --text-dark: #1a1a1a;
    --text-body: #555555;
    --text-muted: #888888;
    --text-light: #ffffff;

    /* Borders */
    --border-light: #eeeeee;
    --border-dark: #dddddd;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 140px);
    --container-max: 1400px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 500;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 500;
}

p {
    margin-bottom: 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
}

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

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   4. Layout & Container
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: var(--section-padding) 0;
}

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar:not(.scrolled) {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    transition: all var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.nav-cta {
    margin-left: 15px;
    padding: 12px 28px;
    background: var(--text-light);
    color: var(--text-dark);
    border-radius: 50px;
}

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

.nav-link.nav-cta:hover {
    background: var(--accent);
    color: var(--text-light);
}

.navbar.scrolled .nav-link.nav-cta {
    background: var(--text-dark);
    color: var(--text-light);
}

.navbar.scrolled .nav-link.nav-cta:hover {
    background: var(--accent);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    position: relative;
    transition: background var(--transition-fast);
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--text-dark);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--transition-fast);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero/heroimage01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}

@media (min-width: 769px) {
    .hero-bg {
        background-image: url('/assets/images/hero/heroimage02.jpg');
    }
}

.hero.loaded .hero-bg {
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-overlay);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

.hero-subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: var(--text-light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-cta:hover {
    background: var(--accent);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-buttons .hero-cta {
    opacity: 1;
    transform: none;
    animation: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.2s, bounce 2.5s infinite 2s;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    fill: rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* --------------------------------------------------------------------------
   7. Section Headers
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.about {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid var(--border-dark);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-content {
    padding-right: 40px;
}

.about-content .section-subtitle {
    margin-bottom: 15px;
}

.about-content h2 {
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-body);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.about-feature svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. Rooms Section
   -------------------------------------------------------------------------- */
.rooms {
    background: var(--bg-light);
}

.room-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.room-slideshow {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.slideshow-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.dot:hover,
.dot.active {
    background: var(--text-light);
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.slideshow-arrow:hover {
    background: var(--text-light);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--text-dark);
}

.slideshow-arrow.prev {
    left: 20px;
}

.slideshow-arrow.next {
    right: 20px;
}

.room-details {
    padding: 20px 0;
}

.room-details h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.room-details > p {
    color: var(--text-body);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.room-details .btn {
    margin-top: 30px;
}

.room-details .btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.room-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-light);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition-fast);
}

.room-feature:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

.room-feature svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   10. Amenities Section
   -------------------------------------------------------------------------- */
.amenities {
    background: var(--bg-white);
}

.amenity-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.amenity-image {
    overflow: hidden;
    height: 350px;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.amenity-card {
    text-align: center;
    padding: 50px 30px;
    flex: 0 1 240px;
    max-width: 280px;
    background: var(--bg-light);
    transition: all var(--transition-normal);
}

.amenity-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.amenity-card:hover .amenity-icon {
    background: var(--text-dark);
}

.amenity-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-dark);
    transition: fill var(--transition-fast);
}

.amenity-card:hover .amenity-icon svg {
    fill: var(--text-light);
}

.amenity-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.amenity-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. Location Section
   -------------------------------------------------------------------------- */
.location {
    background: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-container {
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 15px;
}

.map-placeholder svg {
    width: 50px;
    height: 50px;
    fill: var(--text-muted);
    opacity: 0.5;
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.location-address {
    background: var(--bg-white);
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.location-address address {
    font-style: normal;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-body);
}

.location-address address strong {
    color: var(--text-dark);
}

.location-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--text-dark);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-fast);
}

.location-phone:hover {
    background: var(--accent);
    color: var(--text-light);
    transform: translateY(-2px);
}

.location-phone svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nearby-places {
    margin-top: 10px;
}

.nearby-places h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.nearby-list {
    list-style: none;
}

.nearby-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.nearby-list li:last-child {
    border-bottom: none;
}

.nearby-name {
    font-weight: 500;
    color: var(--text-dark);
}

.nearby-distance {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.6rem;
    font-weight: 500;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-about p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-light);
}

.contact-link .icon {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.footer-address address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 2;
    opacity: 0.8;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   13. Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--text-dark);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

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

.room-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.room-buttons .btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* --------------------------------------------------------------------------
   14. Utilities
   -------------------------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.text-accent {
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   15. Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .about-grid {
        gap: 60px;
    }

}

@media (max-width: 1024px) {
    .about-grid,
    .location-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .about-image::before {
        display: none;
    }

    .about-image img,
    .about-image-placeholder {
        height: 400px;
    }

    .about-content {
        padding-right: 0;
    }

    .room-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slideshow-container {
        height: 350px;
    }

    .slideshow-arrow {
        width: 40px;
        height: 40px;
    }

    .slideshow-arrow.prev {
        left: 10px;
    }

    .slideshow-arrow.next {
        right: 10px;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .room-features {
        justify-content: center;
    }

    .room-details .btn {
        margin: 20px auto 0;
        display: block;
        width: fit-content;
    }
}

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

    .hero-bg,
    .hero.loaded .hero-bg {
        transform: scale(1.0);
    }

    .nav-toggle {
        display: block;
    }

    .navbar .nav-menu,
    .navbar.scrolled .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: #1a1a1a !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 90px 20px 40px 20px !important;
        margin: 0 !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999 !important;
        list-style: none !important;
    }

    .navbar .nav-menu.active,
    .navbar.scrolled .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .navbar .nav-menu li,
    .navbar.scrolled .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .navbar .nav-menu .nav-link,
    .navbar.scrolled .nav-menu .nav-link {
        color: #ffffff !important;
        font-size: 1.1rem !important;
        padding: 15px 30px !important;
        display: block !important;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .navbar .nav-menu .nav-link::after,
    .navbar.scrolled .nav-menu .nav-link::after {
        display: none !important;
    }

    .navbar .nav-menu .nav-link.nav-cta,
    .navbar.scrolled .nav-menu .nav-link.nav-cta {
        margin: 25px auto 0 !important;
        background-color: #c9a227 !important;
        color: #ffffff !important;
        display: inline-block !important;
        width: auto !important;
        border-radius: 50px !important;
        padding: 15px 45px !important;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before,
    .nav-toggle.active .hamburger::after {
        background: var(--text-light);
    }

    .nav-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-toggle.active .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .amenity-images {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .amenity-image {
        height: 280px;
    }

    .room-features {
        justify-content: center;
    }

    .room-details .btn {
        margin: 30px auto 0;
        display: block;
        width: fit-content;
    }

    .amenities-grid {
        gap: 20px;
    }

    .amenity-card {
        flex: 0 1 200px;
        max-width: 220px;
        padding: 35px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }

    .room-buttons {
        flex-direction: column;
        width: 100%;
    }

    .room-buttons .btn {
        width: 100%;
    }

    .amenity-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .location-address {
        padding: 25px;
    }

    .location-buttons {
        flex-direction: column;
    }

    .location-phone {
        width: 100%;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   16. Animations
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .room-card,
    .amenity-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition-normal);
    }

    .room-card.animate,
    .amenity-card.animate {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   17. Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Clickable images */
.slide img,
.amenity-image img {
    cursor: pointer;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}
