/* Zero-Waste Refill Station Kiosks - Responsive CSS */
/* Mobile-First Responsive Design */

/* Tablet Styles */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 3rem 0;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 100px;
}
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card {
    margin-bottom: 2rem;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* No animations on mobile per requirements */
  * {
    transition: none !important;
    transform: none !important;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  h1 {
    font-size: 1.875rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Service Cards Mobile */
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .service-image {
    height: 150px;
    font-size: 2rem;
  }
  
  .price-tag {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
  
  /* Team Cards Mobile */
  .team-photo {
    height: 200px;
    font-size: 3rem;
  }
  
  .team-info {
    padding: 1rem;
  }
  
  /* Feature Cards Mobile */
  .feature-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* Process Steps Mobile */
  .process-step {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Review Cards Mobile */
  .review-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* FAQ Cards Mobile */
  .faq-card {
    padding: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  /* Gallery Mobile */
  .gallery-item {
    height: 200px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  /* Contact Form Mobile */
  .form-control {
    padding: 0.625rem;
    font-size: 1rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Blog Cards Mobile */
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .blog-image {
    height: 150px;
    font-size: 1.5rem;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  /* Price Plan Mobile */
  .price-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .col-md-4 {
    margin-bottom: 1.5rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section {
    min-height: 50vh;
    padding: 1.5rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 1.625rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .process-step,
  .faq-card,
  .blog-card,
  .price-card {
    padding: 1.25rem;
  }
  
  .service-image,
  .team-photo {
    height: 140px;
  }
  
  .gallery-item {
    height: 160px;
  }
  
  .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }
}

/* Landscape Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 80vh;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-image,
  .team-photo,
  .gallery-item,
  .blog-image {
    background-size: cover;
    background-position: center;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .gallery-section {
    display: none;
  }
  
  .hero-section,
  .section {
    padding: 1rem 0;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card {
    border: 1px solid #ddd;
    break-inside: avoid;
    margin-bottom: 1rem;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  h1, h2, h3 {
    color: #000;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .feature-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .price-card:hover,
  .btn-primary:hover {
    transform: none;
  }
}

/* Dark Mode Support */

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--accent-mint);
  outline-offset: 2px;
}

/* Skip Link for Screen Readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-green);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}