/* Mobile First Responsive Design */

/* Extra Small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 2.10rem;
  }
  
  .navbar-brand {
    font-size: 12px !important;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .card-nature {
    margin-bottom: 2.09rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .services-grid .col-md-4 {
    margin-bottom: 2.09rem;
  }
  
  .testimonial-card {
    margin: 0.5rem;
    padding: 1.5rem;
  }
  
  .gallery-item {
    margin-bottom: 1.08rem;
  }
  
  .contact-form .form-control {
    margin-bottom: 0.96rem;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-container {
    overflow: hidden;
  }
  
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .hero-section h1 {
    font-size: 2.56rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .services-grid .col-md-4 {
    margin-bottom: 0;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .testimonial-card {
    margin: 1rem;
    padding: 2rem;
  }
  
  /* Enable Swiper autoplay and effects on desktop */
  .swiper-container {
    overflow: visible;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-section h1 {
    font-size: 3.10rem;
  }
  
  .container-fluid {
    max-width: 1200px;
  }
  
  .card-nature {
    height: 100%;
  }
  
  .services-grid .col-lg-4 {
    margin-bottom: 0;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .hero-section h1 {
    font-size: 3.61rem;
  }
  
  .section-padding {
    padding: 100px 0;
  }
  
  .container-xl {
    max-width: 1400px;
  }
}

/* High DPI displays */
@media only screen and (min-resolution: 192dpi) {
  .hero-section::before {
    background-size: 50px 50px;
  }
}

/* Landscape orientation adjustments */
@media only screen and (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-section h1 {
    font-size: 2.10rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}

/* Print styles */
@media print {
  .hero-section {
    min-height: auto;
    background: white !important;
    color: black !important;
  }
  
  .btn-nature,
  .navbar,
  .footer {
    display: none !important;
  }
  
  .card-nature {
    box-shadow: none;
    border: 1px solid #b4b4b4;
  }
}

/* Accessibility - High contrast mode */
@media (prefers-contrast: high) {
  .card-nature {
    border: 2px solid #2c2828;
  }
  
  .btn-nature {
    border: 2px solid #fff;
  }
  
  .faq-question {
    border: 1px solid #1f1f1f;
  }
}

/* Dark mode - although excluded from requirements, included for accessibility */
@media (prefers-color-scheme: dark) {
  /* This is intentionally left minimal as dark mode styles are excluded */
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    animation: none;
  }
  
  .card-nature:hover,
  .btn-nature:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  .swiper-container .swiper-wrapper {
    transition: none;
  }
} 