/* Magic Shop Template - Responsive CSS */

/* Mobile First Approach */
@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
}

/* Tablet Portrait */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .service-card {
    padding: 1.8rem;
  }
}

/* Tablet Landscape & Small Desktop */
@media (min-width: 769px) and (max-width: 992px) {
  .service-card {
    min-height: 400px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .service-card {
    min-height: 450px;
  }
  
  .section {
    padding: 6rem 0;
  }
}

/* Swiper Slider Responsive Settings */
@media (max-width: 768px) {
  .swiper-slide {
    width: 100% !important;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

/* Navigation Responsive */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(107, 70, 193, 0.95);
    margin-top: 1rem;
    border-radius: 10px;
    padding: 1rem;
  }
  
  .navbar-nav {
    text-align: center;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .swiper-slide {
    transition: none !important;
  }
  
  .service-card,
  .btn-primary {
    transition: none !important;
  }
  
  .service-card:hover,
  .btn-primary:hover {
    transform: none !important;
  }
} 