/* Responsive styles following Bootstrap 5 breakpoints */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 2.87rem;
    padding-top: 150px;
}
  
  .services-card .card-body {
    padding: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 150px;
}
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3.63rem;
    padding-top: 150px;
}
  
  .services-card .card-body {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 3rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .hero-blob-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-blob-2 {
    width: 200px;
    height: 200px;
  }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
}

/* Mobile-first adjustments */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    padding-top: 150px;
}
  
  .hero-section p {
    font-size: 1.05rem;
  }
  
  .services-card {
    margin-bottom: 1rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .faq-card .card-body {
    padding: 1rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .footer {
    text-align: center;
  }
  
  .hero-blob-1,
  .hero-blob-2 {
    display: none;
  }
} 