/* Mobile First Responsive Design */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  /* Disable all animations on mobile */
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .gallery-item img:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.625rem;
  }
  
  #hero {
    min-height: 85vh;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #hero {
    min-height: 90vh;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .price-card.featured {
    transform: scale(1.05);
  }
}

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

/* Print styles */
@media print {
  * {
    animation: none !important;
    transition: none !important;
  }
  
  #header,
  #footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: black;
    overflow-x: hidden;
}
} 