/* ===========================================
   Apple Capital Getaway - Vacation Rental Website
   A warm, nature-inspired design with apple accents
   =========================================== */

/* CSS Variables - Apple-inspired color palette */
:root {
    /* Primary Colors - Apple Reds */
    --apple-red: #C41E3A;
    --apple-red-dark: #8B0000;
    --apple-red-light: #DC143C;
    
    /* Accent Colors - Orchard Greens */
    --leaf-green: #355E3B;
    --leaf-green-light: #4A7C59;
    --apple-stem: #6B4423;
    
    /* Nature Tones */
    --mountain-blue: #4A6FA5;
    --river-blue: #5B8FB9;
    --sunset-gold: #D4A853;
    --sunset-orange: #E07B39;
    
    /* Neutrals - Warm Earthtones */
    --cream: #FDF5E6;
    --cream-dark: #F5E6D3;
    --warm-white: #FFFAF5;
    --warm-gray: #8B8178;
    --charcoal: #2C2416;
    --soft-brown: #4A3C2E;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --container-max: 1400px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(44, 36, 22, 0.08);
    --shadow-medium: 0 8px 40px rgba(44, 36, 22, 0.12);
    --shadow-heavy: 0 16px 60px rgba(44, 36, 22, 0.18);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--apple-red);
    margin-bottom: 1rem;
}

.section-label.light {
    color: var(--cream);
}

.section-intro {
    font-size: 1.15rem;
    color: var(--warm-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--soft-brown);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--apple-red);
    color: white;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: var(--apple-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

/* ===========================================
   Navigation
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 250, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: white;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo {
    color: var(--charcoal);
}

.logo-icon {
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--apple-red);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--apple-red) !important;
    color: white !important;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--apple-red-dark) !important;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--charcoal);
}

/* ===========================================
   Hero Section
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        to bottom,
        rgba(44, 36, 22, 0.3) 0%,
        rgba(44, 36, 22, 0.5) 50%,
        rgba(44, 36, 22, 0.7) 100%
    );
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(196, 30, 58, 0.9);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero h1 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    margin-bottom: 0.75rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Transparent buttons specifically for hero section */
.hero .btn-primary {
    background: rgba(196, 30, 58, 0.8); /* Semi-transparent red */
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .btn-primary:hover {
    background: rgba(139, 0, 0, 0.9); /* Slightly more opaque on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Hero Slideshow Styles */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2;
}

.hero-nav-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-indicator.active {
    background: white;
    border-color: white;
}

.hero-indicator:hover {
    border-color: white;
    transform: scale(1.2);
}

/* ===========================================
   About Section
   =========================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 60%;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    border: 5px solid white;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--warm-gray);
}

.property-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.highlight-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.highlight-text span {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

/* ===========================================
   Gallery Section
   =========================================== */
.gallery {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
    text-align: center;
}

.gallery h2 {
    margin-bottom: 1rem;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.gallery-tab {
    padding: 0.65rem 1.25rem;
    background: transparent;
    border: 2px solid var(--cream-dark);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-tab:hover {
    border-color: var(--apple-red);
    color: var(--apple-red);
}

.gallery-tab.active {
    background: var(--apple-red);
    border-color: var(--apple-red);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.gallery-item.featured {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 22, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.gallery-item.hidden {
    display: none;
}

/* ===========================================
   Amenities Section
   =========================================== */
.amenities {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
    text-align: center;
}

.amenities h2 {
    margin-bottom: 1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: center;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.amenity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.amenity-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* ===========================================
   Activities Section
   =========================================== */
.activities {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
    text-align: center;
}

.activities h2 {
    margin-bottom: 1rem;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.season-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.season-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.season-header.summer {
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-orange) 100%);
    color: white;
}

.season-header.winter {
    background: linear-gradient(135deg, var(--mountain-blue) 0%, var(--river-blue) 100%);
    color: white;
}

.season-icon {
    font-size: 2rem;
}

.season-header h3 {
    color: white;
    font-size: 1.35rem;
}

.activity-list {
    list-style: none;
    padding: 2rem;
}

.activity-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.activity-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-list li strong {
    display: block;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.activity-list li span {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

/* Attractions Showcase */
.attractions-showcase {
    margin-top: 4rem;
}

.attractions-showcase h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.attractions-section {
    margin-top: 2.5rem;
}

.attractions-section:first-child {
    margin-top: 0;
}

.attraction-group {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    text-align: left;
}

/* Attractions Preview Section */
.attractions-preview {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.attractions-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.attraction-preview-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.attraction-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.attraction-preview-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.attraction-preview-content {
    padding: 1.5rem;
    text-align: center;
}

.attraction-preview-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin: 0 0 0.5rem;
}

.attraction-preview-content .distance {
    display: inline-block;
    background: var(--apple-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.attraction-preview-content p {
    color: var(--warm-gray);
    margin: 0;
    font-size: 0.95rem;
}

.attractions-preview-cta {
    text-align: center;
    margin-top: 3rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.attraction-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.attraction-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.attraction-image.leavenworth {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.attraction-image.mission-ridge {
    background: linear-gradient(135deg, #4A6FA5 0%, #87CEEB 100%);
}

.attraction-image.ohme-gardens {
    background: linear-gradient(135deg, #355E3B 0%, #90EE90 100%);
}

.attraction-image.rocky-reach {
    background: linear-gradient(135deg, #5B8FB9 0%, #ADD8E6 100%);
}

.attraction-content {
    padding: 1.5rem;
    text-align: left;
}

.attraction-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.distance {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--apple-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.attraction-content p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

/* ===========================================
   Location Section
   =========================================== */
.location {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h2 {
    margin-bottom: 2rem;
}

.address-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.address-icon {
    font-size: 2rem;
}

.address-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.address-text span {
    color: var(--warm-gray);
}

.travel-options {
    margin-bottom: 2rem;
}

.travel-options h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.travel-option {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.travel-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.travel-details strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.travel-details p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.distances h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.distance-list {
    list-style: none;
}

.distance-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.distance-list li span:last-child {
    font-weight: 600;
    color: var(--apple-red);
}

.location-map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* ===========================================
   Booking Section
   =========================================== */
.booking {
    position: relative;
    padding: var(--section-padding) 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--apple-red-dark) 0%, var(--apple-red) 50%, var(--sunset-orange) 100%);
    z-index: -1;
}

.booking-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.booking h2 {
    color: white;
    margin-bottom: 1rem;
}

.booking-intro {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.booking-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.platform-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-logo svg {
    width: 40px;
    height: 40px;
}

.platform-text-logo {
    font-weight: 700;
    font-size: 1rem;
}

.platform-info {
    flex: 1;
    text-align: left;
}

.platform-info h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.platform-info p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.platform-arrow {
    font-size: 1.5rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.platform-card:hover .platform-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.booking-contact {
    margin-top: 3rem;
    font-size: 1rem;
    opacity: 0.9;
}

.booking-contact a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking-contact a:hover {
    opacity: 0.8;
}

/* ===========================================
   Apple Capital Section
   =========================================== */
.apple-capital {
    padding: var(--section-padding) 0;
    background: var(--cream);
    text-align: center;
}

.apple-content {
    max-width: 900px;
    margin: 0 auto;
}

.apple-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.apple-content h2 {
    margin-bottom: 1.5rem;
}

.apple-content > p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 3rem;
}

.apple-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fact-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--apple-red);
}

.fact-label {
    font-size: 0.95rem;
    color: var(--warm-gray);
}

/* ===========================================
   Footer
   =========================================== */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo-icon {
    font-size: 2rem;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.7;
    max-width: 300px;
}

.footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--apple-red-light);
}

.footer-contact p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.social-links a:hover {
    opacity: 1;
    color: var(--apple-red-light);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ===========================================
   Lightbox
   =========================================== */
.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: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 1rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===========================================
   Responsive Design
   =========================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-images {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-heavy);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--charcoal) !important;
        font-size: 1.25rem;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    /* Hero Slideshow Mobile Optimizations */
    .hero-content {
        padding: 1rem;
        position: absolute;
        bottom: 120px; /* Position at bottom to show more image */
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.3); /* More transparent background */
        border-radius: 12px;
        backdrop-filter: blur(8px);
        max-width: 90%;
        width: 90%;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.75rem;
        background: rgba(196, 30, 58, 0.8); /* Semi-transparent red badge */
        backdrop-filter: blur(4px);
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 0.5rem;
        line-height: 1.1;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7); /* Stronger text shadow */
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        margin-bottom: 0.4rem;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        opacity: 0.95;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }
    
    .hero-navigation {
        padding: 0 1rem;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-indicators {
        bottom: 80px; /* Move up to avoid overlap with scroll indicator */
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 0.75rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
    
    .gallery-item.featured {
        grid-column: span 1;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .property-highlights {
        grid-template-columns: 1fr;
    }
    
    .apple-facts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-brand p {
        max-width: none;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - phones in portrait */
    .hero-content {
        bottom: 100px; /* Position at bottom */
        padding: 0.75rem;
        max-width: 95%;
        width: 95%;
        background: rgba(0, 0, 0, 0.2); /* Much more transparent on small screens */
        backdrop-filter: blur(6px); /* Reduced blur for more image visibility */
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.7rem;
        margin-bottom: 0.5rem;
        background: rgba(196, 30, 58, 0.7); /* More transparent on small screens */
        backdrop-filter: blur(3px);
    }
    
    .hero h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        line-height: 1.05;
        margin-bottom: 0.4rem;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8); /* Multiple shadows for better readability */
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 0.3rem;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Extra transparent buttons on small screens */
    .hero .btn-primary {
        background: rgba(196, 30, 58, 0.6); /* More transparent red */
        backdrop-filter: blur(3px);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero .btn-secondary {
        background: rgba(255, 255, 255, 0.15); /* More transparent white */
        backdrop-filter: blur(3px);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    }
    
    /* Perfect centering for scroll indicator on small screens */
    .scroll-indicator {
        bottom: 15px;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-navigation {
        padding: 0 0.5rem;
    }
    
    .hero-indicators {
        bottom: 60px;
        gap: 0.5rem;
    }
    
    .hero-indicator {
        width: 8px;
        height: 8px;
    }
    
    .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-platforms {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   Animations & Scroll Reveals
   =========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--warm-gray);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--apple-red);
}

