/* ==========================================
   LAZY COYOTE RANCH - Wine Country Retreat
   Modern, Elegant Direct Booking Website
   ========================================== */

/* CSS Custom Properties */
:root {
    /* Colors - Modern Farmhouse Palette */
    --color-primary: #7A8B6E;
    --color-primary-dark: #5D6B54;
    --color-primary-light: #9AAD8A;
    --color-accent: #C9A66B;
    --color-accent-light: #E8DCC8;

    --color-dark: #2D3029;
    --color-text: #454840;
    --color-text-light: #6B7066;
    --color-light: #F8F9F7;
    --color-white: #FFFFFF;
    --color-cream: #F5F6F3;
    --color-sage: #8A9B7A;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1400px;
    --container-padding: clamp(1.5rem, 5vw, 3rem);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

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

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

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

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

.btn-full {
    width: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-base);
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    color: var(--color-white);
    transition: color var(--transition-base);
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-right: 0.75rem;
    filter: invert(1);
    transition: filter var(--transition-base);
}

.nav.scrolled .nav-logo .logo-img {
    filter: invert(0);
}

.nav-logo .logo-text {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    white-space: nowrap;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.nav.scrolled .nav-menu a {
    color: var(--color-text);
}

.nav-menu a:hover {
    color: var(--color-white);
}

.nav.scrolled .nav-menu a:hover {
    color: var(--color-primary);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-white);
    color: var(--color-dark) !important;
    border-radius: var(--radius-sm);
}

.nav.scrolled .nav-cta {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-fast);
}

.nav.scrolled .nav-toggle span {
    background-color: var(--color-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/yard/32100Hwy128032.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 40, 37, 0.4) 0%,
        rgba(44, 40, 37, 0.5) 50%,
        rgba(44, 40, 37, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 var(--container-padding);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
}

.hero .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

/* Hero Platform Links */
.hero-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

.hero-platforms span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.platform-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.95);
    transition: all var(--transition-base);
}

.platform-link img {
    height: 20px;
    width: auto;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.hero-scroll span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.5; }
}

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

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

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

.about-content {
    max-width: 540px;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.about-feature svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.about-images {
    position: relative;
    height: 600px;
}

.about-image {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

.about-image-1 {
    top: 0;
    right: 0;
    width: 65%;
    height: 55%;
    z-index: 1;
}

.about-image-2 {
    bottom: 5%;
    left: 0;
    width: 48%;
    height: 50%;
    z-index: 2;
}

.about-image-3 {
    bottom: 0;
    right: 0;
    width: 45%;
    height: 38%;
    z-index: 3;
}

/* Amenities Section */
.amenities {
    padding: var(--section-padding) 0;
    background-color: var(--color-cream);
}

/* Highlights Row */
.amenities-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.highlight-item .highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item .highlight-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-dark);
    stroke-width: 1.25;
}

.highlight-text h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.highlight-text p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Featured Cards Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.amenity-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.amenity-card-content {
    position: relative;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.amenity-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.amenity-card:hover .amenity-card-content {
    opacity: 0;
}

.amenity-card:hover .amenity-card-image {
    opacity: 1;
}

.amenity-featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.amenity-featured .amenity-icon {
    background-color: rgba(255, 255, 255, 0.15);
}

.amenity-featured .amenity-icon svg {
    color: var(--color-white);
}

.amenity-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-light);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.amenity-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.amenity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.amenity-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

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

/* Accordion Styles */
.amenities-accordion {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color var(--transition-fast);
}

.accordion-trigger:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
}

.accordion-title svg {
    width: 22px;
    height: 22px;
    color: var(--color-text-light);
}

.accordion-chevron {
    width: 20px;
    height: 20px;
    color: var(--color-text-light);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.accordion-content.open {
    max-height: 500px;
}

.amenity-list {
    padding: 0 1.5rem 1.5rem 3.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
}

.amenity-list li {
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.amenity-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--color-sage);
    border-radius: 50%;
}

/* Responsive Amenities */
@media (max-width: 1024px) {
    .amenities-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .amenity-list {
        grid-template-columns: 1fr;
    }
}

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

    .accordion-trigger {
        padding: 1rem 1.25rem;
    }

    .amenity-list {
        padding-left: 2.5rem;
    }
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

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

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

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 40, 37, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

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

/* Pool Hero Slider Section */
.pool-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pool-slider {
    position: absolute;
    inset: 0;
}

.pool-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.pool-slide.active {
    opacity: 1;
}

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

.pool-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.pool-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 800px;
}

.pool-hero-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.pool-hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.5);
}

/* Pool Slider Navigation */
.pool-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--color-dark);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pool-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.pool-nav svg {
    width: 26px;
    height: 26px;
}

.pool-prev {
    left: 30px;
}

.pool-next {
    right: 30px;
}

/* Pool Slider Dots */
.pool-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.pool-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.pool-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.pool-dot.active {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .pool-hero {
        height: 60vh;
        min-height: 450px;
    }

    .pool-nav {
        width: 44px;
        height: 44px;
    }

    .pool-nav svg {
        width: 22px;
        height: 22px;
    }

    .pool-prev {
        left: 15px;
    }

    .pool-next {
        right: 15px;
    }

    .pool-dots {
        bottom: 20px;
    }
}

/* Location Section */
.location {
    padding: var(--section-padding) 0;
    background-color: var(--color-cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location-content {
    max-width: 520px;
}

.location-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.highlight-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.highlight-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.highlight-content p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.location-map {
    position: relative;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.map-overlay span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-dark);
    display: block;
}

.map-overlay p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

/* Booking Section */
.booking {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #3a3633 100%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

.booking-content {
    color: var(--color-white);
}

.booking-content .section-label {
    color: var(--color-accent);
}

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

.booking-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

.booking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-detail {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.detail-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-white);
}

/* Booking Platform Buttons */
.booking-platforms {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platforms-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.platform-buttons {
    display: flex;
    gap: 1rem;
}

.btn-platform {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    background-color: white;
    transition: all var(--transition-base);
}

.btn-platform img {
    height: 22px;
    width: auto;
}

.btn-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.booking-form-wrapper {
    background-color: #E8E6E1;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.booking-form-wrapper #lodgify-book-now-box {
    width: 100%;
    max-width: 380px;
}

.booking-form h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-light);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

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

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--color-white);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: var(--color-cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--color-accent);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--color-dark);
    transform: scale(1.2);
}

.testimonial-stars {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-dark);
}

.author-location {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    padding: 4rem 0 2rem;
    color: var(--color-white);
}

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    max-height: 40px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: invert(1);
    margin-right: 0.6rem;
    flex-shrink: 0;
}

.footer-logo-text {
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-white);
}

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

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

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

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

/* Footer Platform Links */
.footer-platforms {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.footer-platform-link img {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-platform-link:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-platform-link:hover img {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .location-grid,
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        height: 400px;
        order: -1;
    }

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

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

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

    .testimonial-card {
        min-width: 100%;
    }

    .carousel-track {
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-menu a {
        color: var(--color-text);
        font-size: 1rem;
    }

    .nav-cta {
        background-color: var(--color-primary);
        color: var(--color-white) !important;
        margin-top: 1rem;
    }

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

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-images {
        height: 300px;
    }

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

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

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

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

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

    .platform-buttons {
        flex-direction: row;
    }

    .btn-platform img {
        height: 18px;
    }

    .platform-link img {
        height: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand .footer-logo {
        justify-content: center;
    }

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

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    /* Smaller container padding on phones */
    :root {
        --container-padding: 1.25rem;
    }

    /* Hero adjustments for small screens */
    .hero-title {
        font-size: clamp(2.25rem, 12vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-scroll {
        bottom: 1.5rem;
    }

    .hero-scroll span {
        font-size: 0.6875rem;
    }

    /* Section titles smaller on mobile */
    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    /* About section mobile */
    .about-text {
        font-size: 1rem;
    }

    .about-features {
        gap: 1rem;
    }

    .about-feature {
        font-size: 0.875rem;
    }

    /* Amenity cards mobile */
    .amenity-card {
        padding: 1.5rem;
    }

    .amenity-card h3 {
        font-size: 1.25rem;
    }

    /* Highlights mobile */
    .highlight-item {
        gap: 1rem;
    }

    .highlight-item .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-item .highlight-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Logo mobile */
    .nav-logo .logo-img {
        height: 46px;
    }

    .nav-logo .logo-text {
        font-size: 16px;
        letter-spacing: 2px;
    }

    /* Pool hero mobile */
    .pool-hero {
        height: 50vh;
        min-height: 400px;
    }

    .pool-hero-content {
        padding: 0 4rem;
    }

    .pool-hero-content h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.05;
    }

    .pool-hero-content p {
        font-size: 0.9375rem;
        line-height: 1.3;
    }

    .pool-prev {
        left: 8px;
    }

    .pool-next {
        right: 8px;
    }

    .pool-nav {
        width: 36px;
        height: 36px;
    }

    .pool-nav svg {
        width: 18px;
        height: 18px;
    }

    /* Location section mobile */
    .location-text {
        font-size: 1rem;
    }

    .location-highlight {
        gap: 0.75rem;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-content h4 {
        font-size: 1.125rem;
    }

    .map-placeholder img {
        height: 300px;
    }

    .map-overlay {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem 1.25rem;
    }

    .map-overlay span {
        font-size: 1.125rem;
    }

    /* Booking section mobile */
    .booking-content .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .booking-text {
        font-size: 1rem;
    }

    .booking-detail {
        padding: 1.25rem;
    }

    .detail-value {
        font-size: 1.125rem;
    }

    .booking-form-wrapper {
        padding: 1.5rem;
    }

    /* Testimonials mobile */
    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    /* Footer mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-menu a {
        padding: 0.5rem 0;
    }

    .accordion-trigger {
        padding: 1.25rem;
    }

    .gallery-item {
        /* Remove hover effect on touch devices */
        cursor: default;
    }

    .gallery-item:hover img {
        transform: none;
    }

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

    /* Make buttons easier to tap */
    .btn {
        min-height: 48px;
        padding: 1rem 1.5rem;
    }

    .pool-dot {
        width: 12px;
        height: 12px;
    }
}

/* Landscape phone orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 4rem 0;
    }

    .hero-stats {
        margin-bottom: 1.5rem;
    }

    .hero-scroll {
        display: none;
    }

    .pool-hero {
        height: 100vh;
        min-height: auto;
    }
}

/* Animations for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Gallery Lightbox Styles */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    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: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2001;
}

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

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

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 100vw;
        max-height: 100vh;
        padding: 0;
    }

    .lightbox-content img {
        max-height: 80vh;
    }

    .lightbox-close {
        top: env(safe-area-inset-top, 1rem);
        right: 1rem;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }
}

/* Safe area support for notched devices */
@supports (padding: env(safe-area-inset-top)) {
    .nav {
        padding-top: calc(1.5rem + env(safe-area-inset-top));
    }

    .nav.scrolled {
        padding-top: calc(1rem + env(safe-area-inset-top));
    }

    .footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }

    @media (max-width: 768px) {
        .nav-menu {
            padding-top: calc(6rem + env(safe-area-inset-top));
        }
    }
}

/* Lodgify Widget Typography Overrides */
#lodgify-book-now-box {
    --ldg-bnb-font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

#lodgify-book-now-box * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#lodgify-book-now-box button,
#lodgify-book-now-box input,
#lodgify-book-now-box select,
#lodgify-book-now-box label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    letter-spacing: 0.01em;
}

/* Style the main booking button */
#lodgify-book-now-box button[type="submit"],
#lodgify-book-now-box .ldg-button,
#lodgify-book-now-box [class*="button"] {
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    font-size: 0.875rem !important;
}

/* Style input fields */
#lodgify-book-now-box input,
#lodgify-book-now-box select {
    font-size: 0.9375rem !important;
    font-weight: 400 !important;
    padding-left: 1rem !important;
}

/* Fix date picker text spacing */
#lodgify-book-now-box [class*="date"],
#lodgify-book-now-box [class*="Date"],
#lodgify-book-now-box [class*="picker"],
#lodgify-book-now-box [class*="check"] {
    padding-left: 1rem !important;
}

/* Style labels */
#lodgify-book-now-box label {
    font-size: 0.8125rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
}

/* Style any headings within the widget */
#lodgify-book-now-box h1,
#lodgify-book-now-box h2,
#lodgify-book-now-box h3,
#lodgify-book-now-box h4 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 500 !important;
}

/* Print styles */
@media print {
    .nav,
    .hero-scroll,
    .booking-form-wrapper {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-bg,
    .hero-overlay {
        display: none;
    }

    .hero-content {
        color: var(--color-dark);
    }
}
