/* Responsive Design - Mobile First */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .section-title h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  .custom-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .decorative-blob {
    display: none;
  }
  
  /* No animations on mobile per requirements */
  .custom-card:hover,
  .service-card:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-content h1 {
    font-size: 1.875rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 1.625rem;
  }
  
  .custom-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 1.95rem;
  }
  
  .section-title h2 {
    font-size: 1.7rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
}

/* Navigation responsive fixes */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary-cream);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream-dark);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Gallery responsive */
@media (max-width: 767.98px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
}

/* Contact form responsive */
@media (max-width: 575.98px) {
  .contact-form .row .col-md-6 {
    margin-bottom: 1rem;
  }
}

/* Team section responsive */
@media (max-width: 575.98px) {
  .team-photo {
    width: 100px;
    height: 100px;
    font-size: 1.75rem;
  }
}

/* Price cards responsive */
@media (max-width: 767.98px) {
  .price-card.featured {
    transform: none;
    margin-bottom: 1rem;
  }
}

/* Footer responsive */
@media (max-width: 767.98px) {
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .row .col-md-3,
  .footer .row .col-md-4 {
    margin-bottom: 2rem;
  }
} 