/* ============================================
   FREEMAN CAMPSITE & NATURE PARK
   Ultimate Nature-Inspired Design System
   Version: 2.0 - Premium Edition
   ============================================ */

/* ---------- CSS RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Primary Nature Color Palette */
    --green-deep: #0a3d2e;
    --green-forest: #1a5d3c;
    --green-moss: #2d6a4f;
    --green-sage: #40916c;
    --green-mint: #74c69d;
    --green-light: #b7e4c7;
    --green-pale: #d8f3dc;
    
    /* Neutral Tones */
    --cream: #fefae0;
    --sand: #faedcd;
    --warm-gray: #e9ecef;
    --stone: #ced4da;
    --charcoal: #2b2d42;
    --dark-text: #1b4332;
    
    /* Accent Colors */
    --sunset: #e9c46a;
    --terracotta: #e76f51;
    --gold: #f4a261;
    --sunrise: #f8edeb;
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    
    /* Typography */
    --font-serif: 'Playfair Display', 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, #f9fef7 0%, #f0f7ea 100%);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, .logo-text, .heading-font {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-moss), var(--green-mint));
    border-radius: 3px;
}

/* ---------- NAVIGATION BAR - PREMIUM ---------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(64, 145, 108, 0.2);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-deep), var(--green-moss));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text span {
    background: linear-gradient(135deg, var(--green-moss), var(--green-sage));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-moss), var(--green-mint));
    transition: width 0.3s ease;
}

.nav-links a:hover:before,
.nav-links a.active:before {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green-moss);
}

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 61, 46, 0.7), rgba(29, 93, 68, 0.6)), url('https://images.pexels.com/photos/2422265/pexels-photo-2422265.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title span {
    color: #d4e36e;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-secondary, .btn-outline, .btn-cta, .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--green-deep);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--green-moss);
    color: var(--green-moss);
    background: transparent;
}

.btn-outline:hover {
    background: var(--green-moss);
    color: white;
    transform: translateY(-3px);
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold), #e9c46a);
    color: var(--green-deep);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-submit {
    background: linear-gradient(135deg, var(--green-moss), var(--green-deep));
    color: white;
    justify-content: center;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: floatBounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes floatBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- CONTAINER & LAYOUT ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* ---------- WELCOME / ABOUT SECTION ---------- */
.welcome {
    background: white;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-moss);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.welcome-text {
    color: #4a5b4e;
    line-height: 1.8;
    margin: 1.5rem 0;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-moss);
    display: block;
    font-family: var(--font-serif);
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.welcome-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.welcome-image:hover img {
    transform: scale(1.02);
}

.floating-icon {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    color: var(--green-moss);
    font-size: 1.5rem;
}

/* ---------- PREVIEW / AMENITIES CARDS ---------- */
.featured-preview {
    background: linear-gradient(135deg, var(--green-pale), #eef6e8);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.preview-card, .amenity-card, .feature {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(64, 145, 108, 0.1);
}

.preview-card:hover, .amenity-card:hover, .feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-mint);
}

.preview-card i, .amenity-card i, .feature i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--green-moss), var(--green-sage));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.preview-card h3, .amenity-card h3 {
    margin: 0.5rem 0;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-home {
    background: linear-gradient(135deg, var(--green-deep), #0d4e3a);
    color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.testimonial-card i {
    font-size: 2rem;
    opacity: 0.6;
    margin-bottom: 1rem;
    color: var(--gold);
}

.testimonial-card .guest {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--green-light);
}

/* ---------- CTA SECTION WITH BOUNCING LOGO ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--green-deep), #082c20);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255,215,120,0.1), transparent);
}

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

.bouncing-logo {
    animation: bouncePremium 1.8s infinite ease-in-out;
    display: inline-block;
    margin-bottom: 2rem;
}

.bouncing-logo img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}

@keyframes bouncePremium {
    0%, 100% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-20px) scale(1.02); }
    70% { transform: translateY(6px) scale(0.98); }
    85% { transform: translateY(-3px); }
}

.cta-content h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--green-light);
    margin-bottom: 2rem;
}

/* ---------- GALLERY PAGE ---------- */
.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s;
}

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

.gallery-item .overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
    transition: bottom 0.4s ease;
}

.gallery-item:hover .overlay {
    bottom: 0;
}

/* ---------- FOUNDER PAGE (Premium) ---------- */
.founder-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(10,61,46,0.85), rgba(27,67,50,0.8)), url('https://images.pexels.com/photos/3997962/pexels-photo-3997962.jpeg?auto=compress');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.founder-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.founder-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.founder-badges span {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.founder-story {
    padding: 5rem 0;
    background: white;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.founder-portrait img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
}

.portrait-caption {
    margin-top: 1rem;
    text-align: center;
    color: var(--green-moss);
    font-weight: 500;
}

.quote-block {
    background: linear-gradient(135deg, var(--green-pale), #eef6e8);
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    position: relative;
}

.quote-block i {
    font-size: 2rem;
    color: var(--green-moss);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.quote-block p {
    font-style: italic;
    font-size: 1.1rem;
}

.quote-block span {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--green-deep);
}

.loves-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.loves-grid span {
    background: linear-gradient(135deg, var(--green-moss), var(--green-sage));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.scout-legacy {
    background: linear-gradient(135deg, var(--green-pale), white);
    padding: 5rem 2rem;
}

.legacy-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
}

.legacy-card i {
    font-size: 3rem;
    color: var(--green-moss);
    margin-bottom: 1rem;
}

.scout-principles {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.scout-principles div {
    background: var(--green-pale);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.contact-details {
    margin: 2rem 0;
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--green-moss);
}

.map-container {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green-moss);
    box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.2);
}

/* ---------- AMENITIES PAGE ---------- */
.amenities-full {
    padding: 4rem 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-info {
    background: linear-gradient(135deg, var(--green-pale), white);
    padding: 4rem 2rem;
}

.pricing-card {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-grid div {
    background: var(--green-pale);
    padding: 1rem;
    border-radius: 16px;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
    min-height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,61,46,0.7), rgba(0,0,0,0.5));
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: linear-gradient(135deg, #0a2f1f, #051f14);
    color: #cbd5e1;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 45px;
}

.footer-brand span {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-social a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--green-mint);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
    .welcome-grid, .founder-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .navbar .btn-primary {
        display: none;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* ---------- UTILITY CLASSES ---------- */
.text-center { text-align: center; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }


/* ============================================
   FULLY RESPONSIVE FIXES - ADD THIS ENTIRE BLOCK
   ============================================ */

/* Tablet & Medium Devices (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .welcome-grid,
    .mission-grid,
    .founder-grid,
    .booking-grid,
    .connection-grid {
        gap: 2rem;
    }
}

/* Mobile Landscape & Tablet (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation - Mobile Friendly */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(64,145,108,0.2);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links a {
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--green-pale);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .mobile-menu-btn i {
        font-size: 1.5rem;
        color: var(--green-moss);
    }
    
    /* Hero Section */
    .hero, .about-hero, .gallery-hero, .founder-hero, .booking-hero, .amenities-hero {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero-title, .about-hero h1, .gallery-hero h1, .founder-hero h1, .booking-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary, .btn-outline, .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Grid Layouts - Convert to Single Column */
    .welcome-grid,
    .mission-grid,
    .founder-grid,
    .booking-grid,
    .connection-grid,
    .preview-grid,
    .testimonial-grid,
    .features-grid-premium,
    .amenities-premium-grid,
    .gallery-premium-grid,
    .values-grid,
    .stats-grid-large,
    .pricing-grid-premium,
    .credentials-grid,
    .passions-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Section Padding */
    section {
        padding: 3rem 0 !important;
    }
    
    .welcome, .featured-preview, .testimonials-home, .amenities-main, .gallery-main {
        padding: 3rem 0;
    }
    
    /* Stats Section */
    .stats-grid, .stats-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stat-premium {
        text-align: center;
    }
    
    /* Gallery Items */
    .gallery-item {
        aspect-ratio: 4 / 3;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(10,61,46,0.95), transparent);
        padding: 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
    
    /* Cards */
    .amenity-premium-card, .preview-card, .testimonial-card, .value-card {
        margin-bottom: 0;
    }
    
    /* Timeline - About Page */
    .timeline-line {
        left: 20px !important;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px !important;
        margin-bottom: 2rem;
    }
    
    .timeline-year {
        text-align: left !important;
        width: auto !important;
        padding-right: 0 !important;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        width: 100% !important;
    }
    
    .timeline-content:before {
        left: -12px !important;
        right: auto !important;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .booking-form input, 
    .booking-form select, 
    .booking-form textarea {
        padding: 0.8rem;
    }
    
    /* FAQ Section */
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    /* Quotes */
    .quote-text {
        font-size: 1.1rem !important;
    }
    
    .philosophy-quote {
        font-size: 1.1rem !important;
    }
    
    /* Map */
    .map-container iframe {
        height: 250px !important;
    }
    
    /* Filter Buttons - Gallery */
    .filter-container {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    /* CTA Sections */
    .cta-section, .about-cta, .gallery-cta, .founder-cta {
        padding: 3rem 1rem;
    }
    
    .cta-content h2, .about-cta h2 {
        font-size: 1.6rem;
    }
    
    /* Bouncing Logo */
    .bouncing-logo img, .bouncing-logo-premium img {
        width: 80px;
        height: 80px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero-title, .about-hero h1, .gallery-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-badge, .hero-badge-premium {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    /* Section Titles */
    .section-title, .welcome-title {
        font-size: 1.6rem !important;
    }
    
    /* Cards Padding */
    .amenity-premium-card .amenity-card-inner,
    .preview-card,
    .testimonial-card,
    .value-card,
    .mission-card,
    .info-card,
    .form-card {
        padding: 1.2rem;
    }
    
    /* Icons Size */
    .amenity-icon-wrapper, .mission-icon, .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .amenity-icon-wrapper i, .mission-icon i, .value-icon i {
        font-size: 1.5rem;
    }
    
    /* Headers */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    /* Stats Numbers */
    .stat-number, .stat-number-premium, .stat-number-large {
        font-size: 1.8rem;
    }
    
    /* Contact Details */
    .contact-detail {
        flex-wrap: wrap;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Buttons Full Width on Mobile */
    .btn-primary, .btn-secondary, .btn-outline, .btn-cta, .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Founder Badges */
    .founder-badges {
        gap: 0.5rem;
    }
    
    .founder-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Price Cards */
    .pricing-price {
        font-size: 1.5rem;
    }
    
    /* Lightbox */
    .lightbox-prev, .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .lightbox-close {
        font-size: 1.8rem;
        top: 10px;
        right: 20px;
    }
    
    .lightbox-img {
        max-width: 95%;
        max-height: 70vh;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.6rem;
    }
    
    /* Logo */
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

/* Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
}

/* Fix for Notched Phones */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}

/* Hide Mobile Menu Button on Desktop */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* Improved Touch Targets for Mobile */
@media (max-width: 768px) {
    button, 
    .btn-primary, 
    .btn-secondary, 
    .btn-outline, 
    .btn-cta,
    .filter-btn,
    .nav-links a,
    .footer-links a,
    .gallery-item {
        cursor: pointer;
        min-height: 44px;
    }
    
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}