/* Plant Identification Website - Responsive Styles */

/* Mobile First Approach */
@media (max-width: 767.98px) {
  .hero-section {
  padding-top: 50px;
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.09rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .navbar-brand {
    font-size: 1.37rem !important;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .service-item {
    margin-bottom: 1.68rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Disable autoplay and effects on mobile */
  .swiper {
    --swiper-autoplay-delay: 0;
  }
  
  .swiper-slide {
    transform: none !important;
  }
  
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.62rem; }
  h3 { font-size: 1.37rem; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.62rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.04rem;
  }
  
  .service-item:hover {
    transform: translateY(-10px);
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
} 