/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 80vh;
  }
  
  .hero-image img {
    height: 250px;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card {
    margin-bottom: 1rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .gallery-img {
    height: 200px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-image img {
    height: 300px;
  }
  
  .service-image {
    height: 180px;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-image img {
    height: 350px;
  }
  
  .service-image {
    height: 190px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 992px) {
  .container-fluid {
    max-width: 1200px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .contact-form {
    display: none !important;
  }
  
  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: auto;
    background: white !important;
    color: black !important;
  }
} 