/* Mobile First Responsive Design */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* No animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Hero section */
  .hero-section {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  /* Service cards */
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .service-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 128, 128, 0.1);
  }
  
  /* Team photos */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery items */
  .gallery-item:hover {
    transform: none;
  }
  
  /* Section padding */
  .section-padding {
    padding: 2rem 0;
  }
  
  /* Contact form */
  .form-control {
    margin-bottom: 1rem;
  }
  
  /* Feature icons */
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 110px;
    height: 110px;
  }
}

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

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  /* Enable hover effects for larger screens */
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
  }
}

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

/* Accessibility improvements */
@media (max-width: 767.98px) {
  /* Ensure touch targets are large enough */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }
  
  .navbar-nav .nav-link {
    padding: 1rem;
  }
  
  /* Improve text contrast on small screens */
  .hero-section {
    background: var(--light-cream);
  }
  
  /* Improve footer readability on mobile */
  .footer p {
    font-size: 14px;
  }
  
  .footer .disclaimer {
    padding: 1rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .gallery-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
} 

.hero-content {
    padding-top: 275px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
