/* ===================================
   Responsive Design - Mobile First
   =================================== */

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

/* Desktop (1200px to 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* Laptop/Tablet Landscape (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .lodge-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        transition: var(--transition-base);
        box-shadow: var(--shadow-xl);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Column Adjustments */
    .col-lg-4,
    .col-lg-6,
    .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Hero Section */
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Page Hero */
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    /* Section Spacing */
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Welcome Section */
    .welcome-content .row {
        flex-direction: column;
    }
    
    .welcome-image {
        margin-top: 2rem;
    }
    
    /* Featured Lodge */
    .lodge-featured-content .row {
        flex-direction: column;
    }
    
    .lodge-info {
        margin-top: 2rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Reasons Grid */
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Lodge Specific */
    .intro-content,
    .park-content {
        margin-bottom: 2rem;
    }
    
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .dining-content {
        margin-top: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Booking Card */
    .booking-card {
        padding: 2rem;
    }
    
    .booking-card .row {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-card .col-lg-4 {
        margin-top: 1.5rem;
    }
}

/* Mobile Landscape & Large Phones (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 1rem;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    
    /* Column Adjustments */
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 450px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    /* Page Hero */
    .page-hero {
        height: 35vh;
        min-height: 250px;
        margin-top: 70px;
    }
    
    .page-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .lodge-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .lodge-location {
        font-size: 1rem;
    }
    
    /* Navigation */
    .nav-menu {
        width: 280px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    /* Section Spacing */
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    /* Reasons Grid */
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reason-icon {
        width: 80px;
        height: 80px;
    }
    
    .reason-icon i {
        font-size: 2rem;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Lodge Intro */
    .intro-content .lead {
        font-size: 1.125rem;
    }
    
    .intro-content ul,
    .intro-content ol {
        margin-left: 1.5rem;
        padding-left: 0.5rem;
    }
    
    .intro-highlights .highlight-item {
        font-size: 0.95rem;
    }
    
    /* Accommodation */
    .room-image {
        height: 200px;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-features {
        gap: 0.5rem;
    }
    
    .room-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Activities */
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activity-card {
        padding: 2rem 1.5rem;
    }
    
    .activity-icon {
        width: 70px;
        height: 70px;
    }
    
    .activity-icon i {
        font-size: 1.75rem;
    }
    
    /* Park Section */
    .park-highlights ul li {
        font-size: 0.95rem;
    }
    
    /* Dining */
    .dining-features .feature {
        margin-bottom: 1.5rem;
    }
    
    .dining-features h4 {
        font-size: 1.125rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Booking Card */
    .booking-card {
        padding: 1.5rem;
    }
    
    .booking-card h2 {
        font-size: 1.5rem;
    }
    
    .booking-card p {
        font-size: 1rem;
    }
    
    /* Legal Pages */
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .legal-content .intro {
        padding: 2rem 1.5rem;
    }
    
    .legal-content .intro h2 {
        font-size: 1.5rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h3 {
        font-size: 1.35rem;
    }
    
    .legal-section h4 {
        font-size: 1.1rem;
    }
    
    .legal-contact-box {
        padding: 1.25rem;
    }
    
    /* Back to Top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.125rem;
    }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    /* Hero */
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Page Hero */
    .page-hero {
        height: 30vh;
        min-height: 200px;
    }
    
    .page-hero .hero-title {
        font-size: 1.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* Navigation */
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    /* Section Spacing */
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
        width: 100%;
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    /* Welcome Text */
    .welcome-text p {
        font-size: 1rem;
    }
    
    /* Lodge Features */
    .lodge-features {
        gap: 1.5rem;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    /* Service Card */
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Reason Item */
    .reason-icon {
        width: 70px;
        height: 70px;
    }
    
    .reason-icon i {
        font-size: 1.75rem;
    }
    
    .reason-item h3 {
        font-size: 1.25rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Room Card */
    .room-content h3 {
        font-size: 1.25rem;
    }
    
    /* Activity Card */
    .activity-card h3 {
        font-size: 1.25rem;
    }
    
    .activity-details {
        font-size: 0.9rem;
    }
    
    /* Park Content */
    .park-content .lead {
        font-size: 1.125rem;
    }
    
    /* Dining Hours */
    .dining-hours ul li {
        font-size: 0.95rem;
    }
    
    /* Gallery Item */
    .gallery-item {
        height: 200px;
    }
    
    .gallery-overlay span {
        font-size: 1rem;
    }
    
    /* Booking Card */
    .booking-card h2 {
        font-size: 1.25rem;
    }
    
    .booking-card p {
        font-size: 0.95rem;
    }
    
    /* Legal Pages - Mobile */
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .legal-content .intro {
        padding: 1.5rem 1.25rem;
        margin-bottom: 2rem;
    }
    
    .legal-content .intro h2 {
        font-size: 1.25rem;
    }
    
    .legal-content .intro p {
        font-size: 0.95rem;
    }
    
    .legal-section {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .legal-section h4 {
        font-size: 1rem;
        margin-top: 1.25rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .legal-section ul {
        margin-left: 1rem;
    }
    
    .legal-contact-box {
        padding: 1.25rem;
        margin-top: 1rem;
    }
    
    .legal-section ul,
    .legal-section ol {
        margin-left: 1.25rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.25rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Back to Top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 1rem;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    /* Legal Pages - Extra Small */
    .legal-content {
        padding: 1.25rem 1rem;
    }
    
    .legal-content .intro {
        padding: 1.25rem 1rem;
    }
    
    .legal-section {
        padding: 1.25rem 1rem;
    }
    
    .legal-contact-box {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .service-card,
    .testimonial-card,
    .activity-card {
        padding: 1.25rem 0.875rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .room-features span {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 2rem;
    }
    
    .page-hero {
        height: auto;
        min-height: 80vh;
        padding: 6rem 0 2rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .hamburger,
    .back-to-top,
    .hero-buttons,
    .cta-section,
    .scroll-indicator {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
    
    .section-padding {
        padding: 1rem 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .btn {
        border: 1px solid #000;
        padding: 0.5rem 1rem;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #006400;
        --dark: #000000;
        --white: #ffffff;
    }
    
    .btn-outline,
    .btn-outline-white {
        border-width: 3px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scroll-indicator span::before {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* This is a placeholder for future dark mode implementation */
    /* Uncomment and adjust as needed */
    
    /*
    :root {
        --primary-color: #4aa35f;
        --dark: #f5f5f5;
        --dark-gray: #e0e0e0;
        --gray: #b0b0b0;
        --light-gray: #333333;
        --lighter-gray: #1a1a1a;
        --white: #121212;
    }
    
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    
    .header {
        background-color: #1a1a1a;
    }
    
    .service-card,
    .testimonial-card,
    .activity-card,
    .room-card {
        background-color: #1a1a1a;
    }
    */
}
