/* ===== RESPONSIVE STYLES ===== */

/* Mobile First Approach */
@media (max-width: 575.98px) {
  /* Extra small devices */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .balloon-shape {
    display: none;
  }
  
  /* Disable autoplay and effects on mobile */
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  /* Small devices */
  .hero-section {
    min-height: 85vh;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .balloon-shape {
    opacity: 0.05;
  }
  
  /* Disable autoplay and effects on mobile */
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* Medium devices */
  .hero-section {
    min-height: 90vh;
  }
  
  .section-padding {
    padding: 3.5rem 0;
  }
  
  .card-img-top {
    height: 180px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .balloon-shape {
    opacity: 0.08;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Large devices */
  .hero-section {
    min-height: 95vh;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-content {
    max-width: 80%;
  }
}

@media (min-width: 1200px) {
  /* Extra large devices */
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .container {
    max-width: 1140px;
  }
  
  .hero-content {
    max-width: 70%;
  }
  
  .balloon-shape {
    opacity: 0.1;
  }
}

/* Landscape orientation fixes */
@media (orientation: landscape) and (max-height: 500px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .balloon-shape {
    display: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--color-dark);
  }
  
  .btn-primary {
    border: 2px solid var(--color-dark);
  }
  
  .form-control {
    border: 2px solid var(--color-dark);
  }
}


/* Focus styles for accessibility */
.btn:focus, .form-control:focus, .nav-link:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  transition: top 0.3s;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
} 