/* Responsive CSS for Wrapping Cloth Store */

/* Mobile First Approach */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
  padding-top: 50px;
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 1.55rem;
  }
  
  .service-card,
  .team-card,
  .contact-form {
    padding: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .navbar-brand {
    font-size: 1.19rem !important;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 1.81rem;
  }
  
  .service-card {
    padding: 1.75rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
  padding-top: 50px;
    text-align: left;
  }
  
  .hero-section h1 {
    font-size: 2.14rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  /* Enable Swiper features on tablets and up */
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section::before {
    display: block;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  .team-card img {
    height: 300px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
  padding-top: 50px;
    min-height: 100vh;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* High contrast for accessibility */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .blog-card,
  .faq-item {
    border: 2px solid var(--primary-color);
  }
  
  .btn-primary {
    border: 2px solid var(--primary-dark);
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .hero-section::before {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .service-card,
  .team-card,
  .blog-card {
    box-shadow: none;
    border: 1px solid #e3d9da;
  }
} 