/* 3D-Printed Kitchen Gadgets Store - Responsive Styles */

/* Mobile First Approach */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  /* No animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card,
  .feature-card,
  .team-card {
    margin-bottom: 1.5rem;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 150px;
}
  
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
  
  /* Hide decorative blobs on mobile */
  .decorative-blob {
    display: none;
  }
  
  #hero::before {
    display: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* No animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section {
    padding: 4.5rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .section {
    padding: var(--section-padding);
  }
  
  .hero-content {
    padding-right: 2rem;
    padding-top: 150px;
}
  
  .contact-info {
    height: fit-content;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-3xl);
  }
}

/* Additional responsive utilities */
.mobile-center {
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-center {
    text-align: left;
  }
}

/* Responsive spacing */
.mb-mobile {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mb-mobile {
    margin-bottom: 0;
  }
}

/* Responsive text sizes */
@media (max-width: 767.98px) {
  .display-4 {
    font-size: var(--font-size-2xl);
  }
  
  .lead {
    font-size: var(--font-size-base);
  }
}

/* Gallery responsive grid */
@media (max-width: 575.98px) {
  .gallery-item {
    height: 200px;
    margin-bottom: 1rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .gallery-item {
    height: 220px;
    margin-bottom: 1.5rem;
  }
}

/* Team cards responsive */
@media (max-width: 767.98px) {
  .team-photo {
    height: 200px;
  }
}

/* Service cards responsive */
@media (max-width: 767.98px) {
  .service-image {
    height: 150px;
  }
}

/* Contact section responsive */
@media (max-width: 991.98px) {
  .contact-info {
    margin-top: 2rem;
  }
} 

body {
    overflow-x: hidden;
}