/* Responsive Styles for Specialty Gluten-Free Bakery Truck */

/* Tablet Styles */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card,
  .price-card,
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    width: 150px;
    height: 150px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* NO ANIMATIONS ON MOBILE */
  * {
    transition: none !important;
    animation: none !important;
  }
  
  [data-sal] {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Typography */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  h4 { font-size: 1.2rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 1rem; }
  
  p { font-size: 0.9rem; }
  
  /* Header */
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  /* Sections */
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  /* Cards */
  .feature-card,
  .service-card,
  .price-card,
  .review-card,
  .case-card,
  .process-step,
  .timeline-item,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    margin-bottom: 1rem;
    padding: 1.5rem;
  }
  
  /* Remove hover effects on mobile */
  .feature-card:hover,
  .service-card:hover,
  .btn-primary:hover {
    transform: none;
  }
  
  /* Service Cards */
  .service-img {
    height: 150px;
  }
  
  /* Team */
  .team-img {
    width: 120px;
    height: 120px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-control {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
  }
  
  .gallery-item {
    height: 150px;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Price Cards - Stack on mobile */
  .price-card.featured {
    transform: none;
    border-width: 2px;
  }
  
  /* Process Steps */
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  /* Blog Cards */
  .blog-img {
    height: 150px;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  /* FAQ Cards */
  .faq-card {
    padding: 1rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
  /* Even more conservative spacing */
  .section {
    padding: 1.5rem 0;
  }
  
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .contact-form {
    padding: 1rem;
  }
  
  .team-img {
    width: 100px;
    height: 100px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-item {
    height: 120px;
  }
  
  .service-img,
  .blog-img {
    height: 120px;
  }
  
  .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-card,
  .service-card,
  .price-card,
  .review-card,
  .case-card,
  .process-step,
  .timeline-item,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card,
  .contact-form {
    border: 2px solid var(--primary-forest);
  }
  
  .btn-primary {
    border: 2px solid var(--primary-forest);
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 50vh;
  }
  
  .section {
    padding: 1.5rem 0;
  }
}

.hero-content {
    padding-top: 275px;
}