/* Nature Walk Guide Shop - Responsive CSS */

/* Mobile First Approach */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    :root {
        --font-size-base: 14px;
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.27rem !important;
    }
    
    .hero-section h1 {
        font-size: 1.92rem;
    }
    
    .hero-section h2 {
        font-size: 1.35rem;
    }
    
    .card-body {
        padding: var(--spacing-sm);
    }
    
    section {
        padding: var(--spacing-md) 0;
    }
    
    /* Disable animations on mobile */
    .card:hover, .gallery-item:hover img {
        transform: none;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.05rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
  padding-top: 50px;
        min-height: 80vh;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(41, 70, 42, 0.95);
        border-radius: 8px;
        margin-top: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    
    .navbar-nav {
        text-align: center;
    }
}

/* Hero Section Responsive */
@media (max-width: 767.98px) {
    .hero-section {
  padding-top: 50px;
        text-align: center;
    }
    
    .hero-section .col-lg-6:last-child {
        margin-top: var(--spacing-md);
    }
}

/* Service Cards */
@media (max-width: 767.98px) {
    .card-img-top {
        height: 180px;
    }
}

/* Contact Form */
@media (max-width: 575.98px) {
    .contact-form .btn-primary {
        width: 100%;
    }
}

/* Footer */
@media (max-width: 767.98px) {
    footer .col-md-4 {
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .card, .gallery-item img, .btn-primary {
        transition: none !important;
        transform: none !important;
    }
}
