/* Responsive CSS for Virtual Craft-Tea Tasting Kit Curator */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.3;
    padding-top: 275px;
}
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.375rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .service-card, .feature-card, .priceplan-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .team-card {
    padding: 1rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  /* Disable hover effects on mobile */
  .service-card:hover, .feature-card:hover, .priceplan-card:hover,
  .team-card:hover, .blog-card:hover, .gallery-item:hover {
    transform: none;
  }
  
  /* Mobile navigation adjustments */
  .navbar-collapse {
    background-color: var(--light-cream);
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 1rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 1.75rem;
    padding-top: 275px;
}
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .service-card, .feature-card, .priceplan-card {
    padding: 1.75rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .hero-title {
    font-size: 2rem;
    padding-top: 275px;
}
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .service-card img, .feature-card img {
    height: 180px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .container-lg {
    max-width: 960px;
  }
  
  .service-card img, .feature-card img {
    height: 220px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .container-xl {
    max-width: 1140px;
  }
  
  .service-card img, .feature-card img {
    height: 240px;
  }
  
  .gallery-item img {
    height: 280px;
  }
}

/* Specific responsive utilities */
.d-mobile-none {
  display: none;
}

@media (min-width: 768px) {
  .d-mobile-none {
    display: block;
  }
}

/* Print styles */
@media print {
  .navbar, .footer {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .service-card, .feature-card, .priceplan-card {
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }
  
  body {
    color: black;
    background: white;
    overflow-x: hidden;
}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card, .feature-card, .priceplan-card,
  .team-card, .review-card, .faq-card,
  .contact-form, .blog-card {
    border-width: 3px;
    border-color: black;
  }
  
  .btn-primary {
    border-width: 2px;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 60vh;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
} 