/* Responsive Design for 3D Printing Website */

/* Mobile First Approach */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-photo {
    height: 200px;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.125rem; }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .team-photo {
    height: 220px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 5rem 0;
  }
}

/* Extra Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .container-xl {
    max-width: 1140px;
  }
}

/* Disable autoplay/effects on mobile for Swiper */
@media (max-width: 767.98px) {
  .swiper-wrapper {
    animation: none !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
}

/* Navigation adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav {
    background: var(--white);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
}

/* Card layouts */
@media (max-width: 767.98px) {
  .card {
    margin-bottom: 1.5rem;
  }
  
  .service-card,
  .team-card,
  .price-card,
  .blog-card {
    margin-bottom: 2rem;
  }
}

/* Gallery responsive */
@media (max-width: 575.98px) {
  .gallery-img {
    height: 200px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .gallery-img {
    height: 220px;
  }
}

/* Process steps responsive */
@media (max-width: 767.98px) {
  .process-step {
    margin-bottom: 2rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }
}

/* FAQ responsive */
@media (max-width: 575.98px) {
  .faq-question {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  .faq-answer {
    padding: 0.75rem 1rem 0;
    font-size: 0.875rem;
  }
}

/* Footer responsive */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
  }
} 