/* Responsive Styles for Vertical Farming Design Consultancy */

/* Tablet Styles */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    padding-top: 125px;
}
  
  .section {
    padding: 60px 0;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* No animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    padding-top: 125px;
}
  
  .hero-section p {
    font-size: 0.9rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .process-step {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .gallery-img {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.5rem;
    padding-top: 125px;
}
  
  .section {
    padding: 30px 0;
  }
  
  .contact-form {
    padding: 1rem;
    margin: 0.5rem;
  }
  
  .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }
  
  .service-card .card-header {
    padding: 1rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  .timeline-item {
    padding: 1rem;
  }
  
  .faq-card {
    padding: 1rem;
  }
  
  .gallery-img {
    height: 150px;
  }
}

/* High Resolution Displays */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1200px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 100px 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  .section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
  
  .hero-section {
    min-height: auto;
    background: none !important;
  }
}

/* Accessibility Improvements */
@media (max-width: 767.98px) {
  /* Ensure sufficient contrast and touch targets */
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .navbar-toggler {
    padding: 0.5rem;
    border: 2px solid var(--primary-green);
  }
  
  .form-control {
    min-height: 44px;
  }
  
  .nav-link {
    padding: 1rem !important;
  }
}