/* ========================================
   RESPONSIVE.CSS - Mobile Optimization
   Local Ingredient Gourmet Meal-Prep Kits
   ======================================== */

/* Disable all animations globally */
* {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

/* Force all sal.js animated elements to be visible */
[data-sal] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Mobile-First Responsive Design */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .hero-decorative {
    width: 150px;
    height: 150px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.6rem; }
  
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  section {
    padding: 60px 0;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.3rem; }
  h5 { font-size: 1.2rem; }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  section {
    padding: 50px 0;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .price-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .team-photo {
    height: 200px;
  }
  
  .price-value {
    font-size: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Animation styles are now handled globally at the top of the file */
  
  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; }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 1rem 0;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  section {
    padding: 40px 0;
  }
  
  .section-title {
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .section-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .price-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .service-price {
    font-size: 1.3rem;
  }
  
  .service-features {
    font-size: 0.85rem;
  }
  
  .feature-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .team-photo {
    height: 180px;
  }
  
  .team-info {
    padding: 1.25rem;
  }
  
  .team-name {
    font-size: 1.1rem;
  }
  
  .team-role {
    font-size: 0.85rem;
  }
  
  .review-text {
    font-size: 0.9rem;
  }
  
  .price-value {
    font-size: 1.8rem;
  }
  
  .faq-card {
    padding: 1.25rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 1.25rem;
  }
  
  .form-control {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .blog-title {
    font-size: 1.1rem;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 0.75rem;
  }
  
  #space {
    min-height: 40vh;
  }
}

/* Landscape orientation for mobile devices */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 50vh;
  }
  
  section {
    padding: 30px 0;
  }
  
  #space {
    min-height: 30vh;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-item,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  #space {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .faq-card {
    box-shadow: none;
    border: 1px solid #f6f6f6;
    margin-bottom: 10px;
    page-break-inside: avoid;
  }
} 

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