/* ========== RESPONSIVE STYLES ========== */

/* Mobile First Approach */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.64rem;
  }
  
  .hero-subtitle {
    font-size: 1.18rem;
  }
  
  .hero-description {
    font-size: 1.04rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.28rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Disable autoplay and effects on mobile */
  .swiper-slide {
    transform: none !important;
  }
  
  .swiper-wrapper {
    transform: none !important;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 1.88rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card-body {
    padding: 1.5rem;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
  padding-top: 50px;
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 2.05rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0 1rem;
  }
  
  .gallery-item img {
    height: 300px;
  }
  
  /* Enable effects on larger screens */
  .swiper-slide {
    transition: transform 0.3s ease;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 2.53rem;
  }
  
  .hero-subtitle {
    font-size: 1.64rem;
  }
  
  .section-title {
    font-size: 2.05rem;
  }
  
  .container {
    max-width: 1140px;
  }
  
  .gallery-item img {
    height: 350px;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.04rem;
  }
  
  .container {
    max-width: 1200px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .breadcrumb {
    display: none !important;
  }
  
  .hero-section {
  padding-top: 50px;
    min-height: auto;
    background: white !important;
    color: black !important;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #e1e1e1;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--dark-gray);
  }
  
  .btn-primary {
    border: 2px solid var(--white);
  }
  
  .form-control {
    border: 2px solid var(--dark-gray);
  }
}

