/* Jigsaw Puzzle E-Shop - Responsive Styles */

/* Mobile First Approach */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    height: 80vh;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .service-card {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem !important;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .team-member img {
    width: 140px;
    height: 140px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .service-card {
    padding: 1.8rem;
  }
  
  .team-member img {
    width: 160px;
    height: 160px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .team-member img {
    width: 180px;
    height: 180px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .container-fluid {
    max-width: 1400px;
  }
}

/* Mobile Navigation */
@media (max-width: 767.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
    text-align: center;
  }
}

/* Tablet and Mobile Adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
  }
  
  .decorative-blob {
    display: none;
  }
  
  .section-title {
    margin-bottom: 0.8rem;
  }
  
  .section-desc {
    margin-bottom: 2rem;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
}

/* Disable Swiper autoplay and effects on mobile */
@media (max-width: 767.98px) {
  .swiper-slide {
    transition: none !important;
  }
  
  .swiper-wrapper {
    transition-duration: 0ms !important;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .contact-section,
  .decorative-blob {
    display: none !important;
  }
  
  .hero-section {
    height: auto !important;
    background: white !important;
    color: black !important;
  }
  
  .section-title,
  .section-subtitle,
  .section-desc {
    color: black !important;
  }
} 