/* Responsive CSS for Sneaker Shop Template */

/* Extra Small Devices (portrait phones) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .hero-shape {
    display: none;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .team-image {
    width: 120px;
    height: 120px;
  }
  
  .service-card,
  .price-card,
  .review-item {
    margin-bottom: var(--spacing-md);
  }
  
  .contact-form {
    padding: var(--spacing-md);
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  footer {
    text-align: center;
  }
  
  .footer-links,
  .footer-contact {
    margin-bottom: var(--spacing-md);
  }
}

/* Small Devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2.75rem;
  }
  
  .hero-shape {
    width: 40%;
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .service-card,
  .price-card,
  .review-item {
    margin-bottom: var(--spacing-md);
  }
  
  footer {
    text-align: center;
  }
  
  .footer-links,
  .footer-contact {
    margin-bottom: var(--spacing-md);
  }
}

/* Medium Devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-shape {
    width: 45%;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 10% 100%);
  }
  
  .service-card,
  .price-card,
  .review-item {
    margin-bottom: var(--spacing-md);
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Large Devices (desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-shape {
    width: 45%;
  }
}

/* Extra Large Devices (large desktops) */
@media (min-width: 1200px) {
  html {
    font-size: 17px;
  }
  
  .container {
    max-width: 1200px;
  }
}

/* Responsive Navigation */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    padding: var(--spacing-sm);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin-top: var(--spacing-xs);
    border-radius: var(--radius-md);
  }
  
  .nav-link {
    padding: 0.5rem 0;
  }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0 !important;
  }
  
  .card:hover,
  .price-card:hover,
  .gallery-item:hover img {
    transform: none !important;
  }
  
  .nav-link::after {
    transition: none !important;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .hero-section,
  .contact-form,
  .gallery-section,
  .shape-divider {
    display: none !important;
  }
  
  body {
    background-color: white !important;
    color: black !important;
  }
  
  .container {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black !important;
    page-break-after: avoid;
  }
  
  p, li {
    font-size: 12pt;
  }
  
  img {
    max-width: 500px !important;
  }
} 