/* ==========================================
   Nestled Inn Cabin - Stylesheet
   v25 - Smoky Mountain Lodge Editorial
   Inspired by vintage National Parks posters & mid-century lodge design
   ========================================== */

/* CSS Variables - Lodge Editorial Aesthetic */
:root {
    /* Deep Forest - Dominant palette */
    --primary-color: #1a2e1d;
    --primary-light: #2d4a32;
    --primary-dark: #0f1a11;
    --primary-deep: #0a120b;
    --primary-hover: #243d28;

    /* Copper & Rust - Sharp accents */
    --secondary-color: #8b4513;
    --accent-color: #c4632a;
    --accent-warm: #d4783c;
    --accent-glow: #e89850;
    --accent-gold: #c9a227;

    /* Parchment & Earth */
    --text-dark: #1c1917;
    --text-light: #44403c;
    --text-muted: #78716c;
    --background: #fdf8f3;
    --background-alt: #f5ede4;
    --background-warm: #faf5ed;
    --bg-warm: #f5ede4;
    --white: #fffcf7;
    --black: #1c1917;
    --border-color: #e7dfd3;

    /* Atmospheric Effects - Dramatic shadows */
    --shadow-sm: 0 2px 8px rgba(28,25,23,0.08);
    --shadow-md: 0 6px 20px rgba(28,25,23,0.12);
    --shadow-lg: 0 12px 40px rgba(28,25,23,0.16);
    --shadow-xl: 0 24px 60px rgba(28,25,23,0.2);
    --shadow-warm: 0 8px 32px rgba(196,99,42,0.15);
    --shadow-copper: 0 4px 24px rgba(196,99,42,0.25);
    --glow-warm: 0 0 80px rgba(196,99,42,0.12);
    --glow-gold: 0 0 40px rgba(201,162,39,0.2);

    /* Radii - Softer, organic */
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions - Smooth, intentional */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-dramatic: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Typography - Lodge Editorial */
    --font-primary: 'Crimson Pro', Georgia, serif;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-accent: 'Josefin Slab', 'Courier New', serif;

    /* Texture overlays - Subtle paper grain */
    --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");

    /* Decorative patterns */
    --pattern-dots: radial-gradient(circle, var(--accent-color) 1px, transparent 1px);
    --pattern-lines: repeating-linear-gradient(90deg, var(--border-color) 0, var(--border-color) 1px, transparent 1px, transparent 60px);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 var(--radius-md) 0;
    font-weight: 600;
    z-index: 9999;
    transition: var(--transition);
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; }

.lead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* Section typography refinements */
.section-title {
    letter-spacing: -0.015em;
}

.section-subtitle {
    letter-spacing: 0.02em;
}

/* Buttons - Enhanced Micro-interactions */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Subtle shine effect on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(42,74,40,0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42,74,40,0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(42,74,40,0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Outline button variant - subtle, less prominent */
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 16px auto 0;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.animate-underline::after {
    transform: scaleX(1);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

.navbar.scrolled .nav-logo {
    color: var(--primary-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.nav-logo i {
    font-size: 1.75rem;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link:hover {
    background: var(--background-alt);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ==========================================
   Hero Section - Atmospheric Design
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/exterior.jpg') center/cover no-repeat;
    background-image: image-set(
        url('images/exterior.webp') type('image/webp'),
        url('images/exterior.jpg') type('image/jpeg')
    );
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

/* Animated background zoom */
.hero::before {
    content: '';
    position: absolute;
    inset: -5%;
    /* Use simple url() - image-set() doesn't render reliably on pseudo-elements */
    background: url('images/exterior.jpg') center/cover no-repeat;
    animation: heroZoom 30s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* Warm vignette */
        radial-gradient(ellipse at center, transparent 0%, rgba(15,31,14,0.3) 70%, rgba(15,31,14,0.7) 100%),
        /* Forest atmosphere gradient */
        linear-gradient(
            to bottom,
            rgba(15,31,14,0.35) 0%,
            rgba(26,50,24,0.4) 40%,
            rgba(26,50,24,0.55) 70%,
            rgba(15,31,14,0.75) 100%
        );
}

/* Subtle grain texture overlay */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    opacity: 0.03;
    pointer-events: none;
}

/* Warm light glow effect */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(200,145,92,0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 850px;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.85;
    animation: heroFadeIn 1s ease-out 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    animation: heroFadeIn 1s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    margin-bottom: 40px;
    animation: heroFadeIn 1s ease-out 0.5s both;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.hero-features span:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.hero-features i {
    font-size: 1.1rem;
    color: var(--accent-warm);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    animation: heroFadeIn 1s ease-out 0.6s both;
}

.hero-price-hint {
    font-size: 0.95rem;
    opacity: 0.85;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    animation: heroFadeIn 1s ease-out 0.65s both;
}

.hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.hero-price:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

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

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

.about-text p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.about-highlights {
    margin: 32px 0;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-weight: 500;
}

.about-highlights i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--primary-color);
}

.about-badge i {
    color: gold;
}

/* ==========================================
   Sleeping Arrangements
   ========================================== */
.sleeping {
    background: var(--background-alt);
}

.sleeping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sleeping-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.sleeping-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.sleeping-card:hover .sleeping-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 30px rgba(42,74,40,0.25);
}

.sleeping-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
}

.sleeping-card h3 {
    margin-bottom: 12px;
}

.sleeping-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.bed-type {
    display: inline-block;
    padding: 6px 16px;
    background: var(--background-alt);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.amenity-card {
    background: var(--background);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(42,74,40,0.1);
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-warm);
    color: var(--accent-warm);
}

.amenity-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.amenity-card.featured .amenity-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.amenity-card.featured p {
    color: rgba(255,255,255,0.9);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.amenity-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.amenity-card.featured h3 {
    color: var(--white);
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==========================================
   Feature Cards (Landing Pages)
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.feature-card {
    background: var(--background);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(42,74,40,0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-warm);
    color: var(--accent-warm);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section - Landing Pages */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-section .btn-primary {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--background-alt) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-section .cta-subtext {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Features Section Background */
.features-section {
    padding: 4rem 0;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    background: var(--background-alt);
}

/* Gallery Filter Tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Gallery item filtering animation */
.gallery-item.hidden {
    display: none;
}

.gallery-item.fade-out {
    opacity: 0;
    transform: scale(0.9);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08) rotate(1deg);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26,50,24,0.7) 0%,
        rgba(26,50,24,0.3) 40%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: var(--transition-bounce);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox - Smooth Cinematic Transitions */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15,20,15,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    backdrop-filter: blur(10px);
}

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

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 16px;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-color);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
}

/* ==========================================
   Booking Section
   ========================================== */
.booking {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.booking .section-title,
.booking .section-subtitle {
    color: var(--white);
}

.booking .section-title::after {
    background: var(--accent-color);
}

/* Booking Layout - Two Column */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Panel - Property Info */
.booking-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-price-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.price-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-from {
    font-size: 1rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.price-per {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Price pulse animation on scroll */
@keyframes pricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.price-amount.animate-pulse {
    animation: pricePulse 0.6s ease-in-out;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.booking-highlights {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.booking-highlights h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-highlights h4 i {
    color: var(--accent-color);
}

.booking-highlights ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.booking-highlights li i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

/* Booking Trust Badges */
.booking-trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.trust-badge-item i {
    color: var(--accent-warm);
    font-size: 1rem;
}

/* Iframe skeleton loader */
.booking-widget-wrapper {
    position: relative;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.booking-widget-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    animation: shimmer 1.5s infinite;
    z-index: 1;
    pointer-events: none;
}

.booking-iframe:not([src=""]) + .booking-widget-wrapper::before,
.booking-widget-wrapper:has(.booking-iframe[src])::before {
    display: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.booking-quote {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
}

.booking-quote i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.booking-quote p {
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 12px;
}

.booking-quote .quote-author {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
}

.booking-contact {
    text-align: center;
    padding: 20px;
}

.booking-contact p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.booking-contact .contact-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.booking-contact .contact-link:hover {
    background: rgba(255,255,255,0.25);
}

/* Booking Card */
.booking-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Booking Widget */
.booking-widget-wrapper {
    background: transparent;
    overflow: hidden;
    width: 330px;
    min-height: 850px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 480px;
    }

    .booking-info-panel {
        order: 2;
    }

    .booking-card {
        order: 1;
    }

    .booking-highlights ul {
        grid-template-columns: 1fr;
    }
}

.booking-iframe {
    width: 330px;
    height: 850px;
    border: none;
    display: block;
}

.booking-times {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 16px 24px;
    background: transparent;
    width: 100%;
    max-width: 330px;
    margin-top: -120px;
}

.booking-time-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-time-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.booking-time-item .time-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-time-item .time-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.booking-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 12px 16px;
    background: transparent;
    color: var(--white);
    font-size: 0.85rem;
    width: 100%;
    max-width: 330px;
}

.booking-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-features i {
    color: var(--accent-color);
}

@media (max-width: 480px) {
    .booking-times {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .booking-features {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

.price-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.price-card h3 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.price-item:last-of-type {
    border-bottom: none;
}

.price-value {
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

.booking-policies {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.booking-policies h4 {
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-policies ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-policies li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.booking-policies li i {
    color: var(--accent-color);
}

.booking-calendar {
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.calendar-container {
    width: 100%;
    min-height: 850px;
    position: relative;
}

.calendar-container iframe {
    width: 100%;
    height: 850px;
    border: none;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.booking-wrapper.booking-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.booking-wrapper.booking-centered .booking-calendar {
    width: 100%;
    max-width: 500px;
}

.booking-policies-compact {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.booking-policies-compact h4 {
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.booking-policies-compact ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin: 0;
}

.booking-policies-compact li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.booking-policies-compact li i {
    color: var(--accent-color);
}

/* Custom Booking Widget */
.custom-booking-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 32px;
    width: 100%;
    max-width: 420px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin: 0;
}

.calendar-nav {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.calendar-weekdays span {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 24px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--primary-light);
    color: var(--white);
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.disabled {
    color: var(--text-muted);
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: var(--white);
}

.calendar-day.in-range {
    background: rgba(45, 90, 39, 0.15);
}

.calendar-day.today {
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.booking-form {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.date-selection {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.date-field {
    flex: 1;
    background: var(--background);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.date-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.date-field span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.guest-selection {
    margin-bottom: 20px;
}

.guest-selection label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.guest-selection select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--background);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.guest-selection select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-book {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    display: block;
    text-decoration: none;
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.booking-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ==========================================
   Location Section
   ========================================== */
.location {
    background: var(--white);
}

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

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 450px;
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

.map-container .map-note {
    background: var(--white);
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-container .map-note i {
    color: var(--primary-color);
}

.custom-map .map-overlay {
    position: relative;
    padding: 32px;
    z-index: 1;
    background: transparent;
}

.map-background {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-region {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.map-region:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.map-region i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.map-region span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-color);
    white-space: nowrap;
}

.map-region small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Position each region */
.map-region.smoky-mountains {
    bottom: 10%;
    left: 10%;
}

.map-region.gatlinburg {
    bottom: 25%;
    right: 15%;
}

.map-region.pigeon-forge {
    top: 30%;
    right: 10%;
}

.map-region.dollywood {
    top: 15%;
    right: 30%;
}

.map-region.sevierville {
    top: 20%;
    left: 15%;
}

/* Cabin marker - center */
.cabin-marker {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cabin-pin {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(45, 80, 50, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.cabin-pin i {
    font-size: 1.8rem;
    color: var(--white);
}

.cabin-marker > span {
    margin-top: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    background: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.map-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary-dark);
    margin-top: 20px;
    margin-bottom: 0;
}

.map-note i {
    margin-right: 6px;
}

@media (max-width: 768px) {
    .map-background {
        min-height: 320px;
    }

    .map-region {
        padding: 8px 12px;
    }

    .map-region span {
        font-size: 0.75rem;
    }

    .map-region i {
        font-size: 1.2rem;
    }
}

.location-card {
    background: var(--background-alt);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.location-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.location-details h3 {
    margin-bottom: 16px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.attraction-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px;
    background: var(--background-alt);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.attraction-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.attraction-item:hover small {
    color: rgba(255,255,255,0.8);
}

.attraction-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.attraction-item:hover i {
    color: var(--accent-color);
}

.attraction-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.attraction-item small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================
   Reviews Section
   ========================================== */
.reviews {
    background: var(--background-alt);
}

.reviews-stats {
    text-align: center;
    margin-bottom: 48px;
}

.overall-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars {
    color: gold;
    font-size: 1.25rem;
}

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

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-info h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Verified badge */
.verified-badge {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-left: 8px;
}

.verified-badge i {
    color: var(--primary-color);
    margin-right: 3px;
}

/* Review date styling */
.review-date {
    display: block;
    margin-top: 2px;
}

.review-date i {
    margin-right: 4px;
    color: var(--text-muted);
}

/* Guest type badges */
.guest-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    background: var(--background);
    color: var(--text-light);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    margin-top: 6px;
}

.guest-type-badge i {
    font-size: 0.7rem;
    color: var(--accent-color);
}

.review-rating {
    margin-left: auto;
    color: gold;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.review-nav-btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.review-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.reviews-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.reviews-link i {
    font-size: 1.25rem;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0,0,0,0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Enhanced focus styles for keyboard navigation */
.faq-question:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Gallery focus rings for accessibility */
.gallery-item:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Review card focus */
.review-card:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

/* Navigation link focus */
.nav-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

/* ==========================================
   Hosts Section
   ========================================== */
.hosts {
    background: var(--background-alt);
    padding: 60px 0;
}

.hosts-content {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.hosts-avatar {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
}

.hosts-text h2 {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.hosts-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.hosts-text p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.hosts-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.badge i {
    color: var(--accent-color);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: var(--background-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-form {
    background: var(--background);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(42, 74, 40, 0.1);
}

/* Form success animation */
@keyframes successCheckmark {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(-45deg); }
    100% { transform: scale(1) rotate(-45deg); opacity: 1; }
}

.form-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(42, 74, 40, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-color);
    font-weight: 600;
}

.form-success::before {
    content: '';
    width: 20px;
    height: 10px;
    border-left: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    animation: successCheckmark 0.4s ease-out forwards;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==========================================
   Navigation CTA
   ========================================== */
.nav-cta {
    display: none;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    margin-left: 16px;
}

.navbar.scrolled .nav-cta {
    display: inline-flex;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==========================================
   Hero Rating - Refined Trust Signal
   ========================================== */
.hero-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    animation: heroFadeIn 1s ease-out 0.45s both;
}

.hero-rating .stars {
    color: var(--accent-warm);
    font-size: 1rem;
    letter-spacing: 2px;
}

.hero-rating span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-rating .divider {
    opacity: 0.4;
    font-weight: 300;
}

/* Guest Favorite Badge - Accent styling */
.guest-favorite-badge {
    background: var(--accent-warm);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}


/* ==========================================
   Why Book Direct Section
   ========================================== */
.book-direct {
    background: var(--background-alt);
    padding: 80px 0;
}

.book-direct-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.direct-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.direct-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.direct-card:hover .direct-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(42,74,40,0.3);
}

.direct-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.75rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
}

.direct-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.direct-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 1.5rem;
    color: var(--text-dark);
}

.trust-badge:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.trust-badge:last-child i {
    font-size: 1.1rem;
}

/* ==========================================
   Floor Plan Section
   ========================================== */
.floor-plan {
    background: var(--white);
    padding: 80px 0;
}

.floor-plan-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.floor-plan-content img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
}

/* ==========================================
   Hosts Photo
   ========================================== */
.hosts-image {
    flex-shrink: 0;
}

.hosts-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .booking-info {
        grid-template-columns: 1fr 1fr;
    }

    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* Mobile Sticky CTA - Shows after scrolling past hero */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.mobile-sticky-cta .btn {
    font-size: 0.85rem;
    padding: 14px 20px;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

/* Desktop Sticky CTA Bar */
.desktop-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.desktop-sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sticky-cta-price {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.sticky-cta-price strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.sticky-cta-rating {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (min-width: 769px) {
    .desktop-sticky-cta {
        display: block;
    }
}

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

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

    .hero-rating {
        flex-direction: column;
        gap: 8px;
    }

    .hero-rating .divider {
        display: none;
    }

    .hero-urgency {
        flex-direction: column;
        gap: 8px;
    }

    .urgency-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .hosts-photo {
        width: 150px;
        height: 150px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--text-dark);
        padding: 16px 0;
        width: 100%;
        min-height: 48px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-cta {
        flex-direction: column;
    }

    /* Minimum touch targets for mobile */
    .btn {
        min-height: 48px;
        min-width: 48px;
    }

    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 350px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .booking-info {
        grid-template-columns: 1fr;
    }

    .calendar-container iframe {
        height: 900px;
    }

    .review-card {
        flex: 0 0 100%;
    }

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

    .hosts-content {
        flex-direction: column;
        text-align: center;
    }

    .hosts-badges {
        justify-content: center;
    }

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

    .footer-brand p {
        max-width: none;
    }

    .footer-links ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-contact p {
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-urgency {
        gap: 6px;
    }

    .urgency-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    /* Larger touch targets for mobile */
    .btn {
        min-height: 48px;
        padding: 16px 24px;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .faq-question {
        min-height: 48px;
    }

    .book-direct-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 12px;
    }

    .trust-badge {
        padding: 8px 12px;
        font-size: 1.2rem;
    }

    .hosts-photo {
        width: 120px;
        height: 120px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

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

    .contact-form {
        padding: 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ==========================================
   Page Load & Scroll Reveal Animations
   Lodge Editorial - Orchestrated reveals
   ========================================== */

/* Core reveal keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: var(--shadow-copper);
    }
    50% {
        box-shadow: var(--shadow-copper), 0 0 30px rgba(196,99,42,0.3);
    }
}

/* Scroll-reveal base class */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay classes for orchestrated reveals */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* Section title decorative underline animation */
.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-gold));
    margin: 16px auto 0;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    border-radius: var(--radius-full);
}

.reveal.revealed .section-title::after,
.section-title.animate-line::after {
    width: 60px;
}

/* ==========================================
   Enhanced Hover Micro-interactions
   ========================================== */

/* Amenity card hover - Icon lift + accent glow */
.amenity-card {
    transition: var(--transition), box-shadow 0.4s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-warm);
    border-color: var(--accent-color);
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1) translateY(-4px);
    color: var(--accent-color);
}

.amenity-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

/* Feature card enhanced hover */
.feature-card {
    transition: var(--transition), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196,99,42,0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-warm);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--accent-color);
}

.feature-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

/* Gallery hover - Dramatic zoom + warm overlay */
.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08) rotate(0.5deg);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(196,99,42,0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Button hover enhancements */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: var(--transition), box-shadow 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    box-shadow: var(--shadow-copper);
    transform: translateY(-2px);
}

/* Review card hover */
.review-card {
    transition: var(--transition), box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

/* FAQ accordion hover */
.faq-question {
    transition: var(--transition), background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--background-alt);
}

/* Nav link underline draw animation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* ==========================================
   Atmospheric Backgrounds & Textures
   ========================================== */

/* Subtle paper texture on main sections */
.about,
.amenities,
.gallery,
.reviews,
.faq {
    position: relative;
}

.about::before,
.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grain);
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

/* Warm glow accent on booking section */
.booking::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(196,99,42,0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative corner accents */
.section-header {
    position: relative;
}

/* Atmospheric depth on alternating sections */
section:nth-child(odd) {
    background-color: var(--background);
}

section:nth-child(even) {
    background-color: var(--background-warm);
}

/* CTA Section atmospheric enhancement */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.1), transparent 40%),
        radial-gradient(ellipse at 80% 50%, rgba(196,99,42,0.1), transparent 40%);
    pointer-events: none;
}

/* Hero decorative elements */
.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.6;
}

/* ==========================================
   Landing Page Styles
   ========================================== */

/* Hero for landing pages with external images */
.hero-landing {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Reset main hero background when landing page class is present */
.hero.hero-landing {
    background: transparent;
    background-image: none;
}

.hero.hero-landing::before {
    display: none;
}

.hero-landing .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-landing .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 46, 29, 0.3) 0%,
        rgba(26, 46, 29, 0.5) 50%,
        rgba(26, 46, 29, 0.7) 100%
    );
    z-index: 1;
}

.hero-landing .hero-content {
    position: relative;
    z-index: 2;
}

/* Distance Grid for location pages */
.distance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--background-warm);
    border-radius: 12px;
    border: 1px solid rgba(196, 99, 42, 0.1);
    transition: all 0.3s ease;
}

.distance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 46, 29, 0.1);
    border-color: rgba(196, 99, 42, 0.25);
}

.distance-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.distance-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.distance-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Landing page FAQ grid (non-accordion style) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.faq-item {
    padding: 2rem;
    background: var(--background-warm);
    border-radius: 16px;
    border: 1px solid rgba(196, 99, 42, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 46, 29, 0.08);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Scroll indicator for landing pages */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

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

/* Guest Favorite badge styling */
.guest-favorite {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-color));
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.02em;
}

/* Landing page responsive adjustments */
@media (max-width: 768px) {
    .hero-landing {
        min-height: 85vh;
    }

    .distance-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .distance-item {
        padding: 1rem 1.25rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .booking,
    .back-to-top,
    .lightbox {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}
