/* Responsive CSS - Mobile First Approach */
/* NO animations in mobile resolution as per requirements */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Typography adjustments */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  /* Hero section adjustments */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none; /* Remove decorative shapes on mobile */
  }
  
  /* Section padding */
  .section {
    padding: 2rem 0;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Cards spacing */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 1.5rem;
  }
  
  /* Process steps */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Gallery adjustments */
  .gallery-image {
    height: 200px;
  }
  
  /* NO animations on mobile */
  .service-card:hover,
  .gallery-item:hover,
  .price-card:hover {
    transform: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Section padding */
  .section {
    padding: 3rem 0;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2rem;
  }
  
  /* Cards spacing */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 1.5rem;
  }
  
  /* NO animations on mobile */
  .service-card:hover,
  .gallery-item:hover,
  .price-card:hover {
    transform: none;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Hero section */
  .hero-section {
    min-height: 90vh;
  }
  
  /* Section padding */
  .section {
    padding: 3.5rem 0;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2.5rem;
  }
  
  /* Cards in rows */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Full animations enabled */
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 4rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Full desktop experience */
  .container {
    max-width: 1140px;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .navbar {
    padding: 0.25rem 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure crisp images on retina displays */
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .contact-form {
    display: none;
  }
  
  body {
    background: white;
    color: black;
    overflow-x: hidden;
}
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
}

/* Focus styles for accessibility */
@media (prefers-reduced-motion: no-preference) {
  .btn:focus,
  .form-control:focus {
    outline: 2px solid var(--tea-gold);
    outline-offset: 2px;
  }
}

/* Dark mode considerations */


.hero-section h1 {
    padding-top: 200px;
}