/* Responsive Styles for Artisan Bread Kits Store */

/* Tablet styles */
@media (max-width: 992px) {
  /* Hero adjustments */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative-shape {
    display: none;
  }
  
  /* Section padding */
  section {
    padding: 3rem 0;
  }
  
  /* Services grid */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Price plan featured card */
  .price-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  /* Team grid */
  .team-card {
    margin-bottom: 2rem;
  }
  
  /* Process steps */
  .process-step {
    margin-bottom: 2rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Hero section */
  #hero {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  /* Section padding */
  section {
    padding: 2rem 0;
  }
  
  /* Card adjustments */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Process numbers */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  /* Price values */
  .price-value {
    font-size: 2rem;
  }
  
  /* Gallery items */
  .gallery-item img {
    height: 200px;
  }
  
  /* Footer */
  #footer {
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
  }
}

/* Small mobile styles */
@media (max-width: 576px) {
  /* Further typography reduction */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  
  /* Hero section */
  #hero {
    min-height: 60vh;
  }
  
  /* Card padding */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card {
    padding: 1rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem 1rem;
  }
  
  /* Price values */
  .price-value {
    font-size: 1.75rem;
  }
  
  /* Gallery items */
  .gallery-item img {
    height: 150px;
  }
  
  /* Button adjustments */
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* No animations on mobile for performance and accessibility */
@media (max-width: 768px) {
  .service-card:hover,
  .gallery-item img:hover {
    transform: none;
  }
  
  .service-card,
  .gallery-item img {
    transition: none;
  }
}

/* Prefers reduced motion - mobile specific */
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
} 

body {
    overflow-x: hidden;
}