/* ========================================
   RESPONSIVE STYLES
   Mobile-first approach
======================================== */

/* Large screens (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 100px 0;
  }
}

/* Medium screens (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small screens (phones, 767px and down) */
@media (max-width: 767px) {
  /* Typography adjustments for mobile */
  .hero-title {
    font-size: 1.8rem;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 1rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.9rem;
    margin: 0.2rem 0;
  }
  
  /* Hero section mobile adjustments */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 2rem;
  }
  
  /* Section padding */
  .section {
    padding: 60px 0;
  }
  
  /* Grid adjustments */
  .services-grid,
  .team-grid,
  .gallery-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Cards padding */
  .service-card,
  .team-member,
  .testimonial-item {
    padding: 1.5rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Swiper adjustments for mobile */
  .swiper-slide {
    padding: 1rem;
  }
  
  /* Disable animations on mobile for better performance */
  .service-card:hover,
  .team-member:hover,
  .blog-item:hover {
    transform: none;
  }
}

/* Extra small screens (phones, 480px and down) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .service-card,
  .team-member,
  .contact-form {
    padding: 1rem;
  }
  
  .btn-primary-custom {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
}

/* Portrait orientation adjustments */
@media (orientation: portrait) and (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Landscape orientation adjustments for mobile */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem;
  }
  
  .section {
    padding: 40px 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-bg {
    background-image: url('../KOL_images/hero-bg-2x.webp');
  }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .team-member,
  .blog-item,
  .gallery-item img,
  .btn-primary-custom {
    transition: none;
  }
  
  .swiper-container {
    overflow: visible;
  }
  
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    position: static;
    margin-right: 1rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn-primary-custom {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  body { overflow-x: hidden;
    background: white;
    color: black;
  }
} 