/* Mobile First Responsive Design */

@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .card {
    margin-bottom: 20px;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .price-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .testimonial-card {
    margin: 10px;
    padding: 20px;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .team-member img {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section .row {
    align-items: center;
  }
}

/* Print Styles */
@media print {
  .navbar, footer, .btn, .contact-form {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .section-padding {
    padding: 20px 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-item img,
  .team-member img,
  .card img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
} 