/* AI Meal Planner - Responsive CSS */

/* Tablet Styles */
@media (max-width: 992px) {
  .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.57rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .service-item {
    margin-bottom: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.59rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .service-item {
    margin-bottom: 1.64rem;
  }
  
  .navbar-brand {
    font-size: 1.23rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.55rem;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .service-item {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, 
  *::before, 
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 