/* Responsive CSS for Tea Subscription Service
   Date: July 2025
   Framework: Bootstrap 5
*/

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1399px) {
  .hero-title {
    font-size: 2.7rem;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 1199px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 991px) {
  .hero {
    padding: 80px 0;
    min-height: auto;
  }
  
  .hero-img {
    margin-top: 40px;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .about-feature,
  .team-member,
  .process-item,
  .coreinfo-item {
    margin-bottom: 40px;
  }
  
  .contact-form {
    margin-bottom: 40px;
  }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media only screen and (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .team-img {
    width: 150px;
    height: 150px;
  }
  
  footer {
    padding: 50px 0 20px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 575px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .price-tag {
    font-size: 2rem;
  }
}

/* For devices that prefer 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;
  }
} 

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