/* Media Queries */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .service-item, 
  .team-member, 
  .price-item, 
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .review-item {
    padding: 1rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 15px;
  }
  
  .hero-title-1 {
    font-size: 2.75rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-bg-shape {
    width: 40%;
  }
  
  .service-item-header,
  .service-item-body,
  .price-item-header,
  .price-item-body {
    padding: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-bg-shape {
    width: 45%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-bg-shape {
    width: 50%;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Specific Responsive Adjustments */

/* Swiper Responsive */
@media (max-width: 767.98px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Navigation */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--neutral-100);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .navbar-nav {
    margin-top: 1rem;
  }
  
  .nav-link {
    padding: 0.5rem 0;
  }
}

/* Hero Section */
@media (max-width: 767.98px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 6rem 0 3rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
}

/* Team Section */
@media (max-width: 767.98px) {
  .team-member-img {
    height: 250px;
  }
}

/* Gallery */
@media (max-width: 767.98px) {
  .gallery-item img {
    height: 200px;
  }
}

/* Footer */
@media (max-width: 767.98px) {
  footer {
    padding: 3rem 0 1rem;
    text-align: center;
  }
  
  footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-theme-color: var(--primary-color-1);
  }
  
  .swiper-autoplay-running .swiper-wrapper {
    animation: none !important;
  }
}

/* Print styles */
@media print {
  header, 
  footer,
  .hero-bg-shape,
  .reviews-bg-shape,
  .btn,
  .gallery,
  .contact-form {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
    font-size: 12pt;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  section {
    padding: 0.5cm 0;
    page-break-inside: avoid;
  }
} 