/* Responsive CSS for Zero-waste Refill Station Kiosks Template */

/* Tablet Styles */
@media (max-width: 992px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section::before {
    display: none;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .service-card,
  .feature-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Disable animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .navbar-collapse {
    text-align: center;
    margin-top: 1rem;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-desc {
    margin-bottom: 2rem;
  }
  
  /* Remove hover effects on mobile */
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover,
  .team-card:hover,
  .case-card:hover,
  .career-card:hover,
  .gallery-item:hover,
  .blog-card:hover {
    transform: none;
    box-shadow: 0 5px 15px var(--shadow-light);
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .process-step,
  .timeline-item,
  .faq-card {
    margin-bottom: 1rem;
    padding: 1.5rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .service-image {
    height: 150px;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
  #space {
    margin: 2rem 0;
    min-height: 50vh;
    font-size: 1.2rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .hero-section {
    min-height: 50vh;
  }
  
  .section {
    padding: 1.5rem 0;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card,
  .contact-form,
  .contact-info {
    padding: 1rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .contact-info-item i {
    margin: 0 0 0.5rem 0;
  }
  
  .form-control {
    padding: 0.5rem 0.75rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .price-value {
    font-size: 1.75rem;
  }
  
  .service-image {
    height: 120px;
  }
  
  #space {
    margin: 1rem 0;
    min-height: 40vh;
    font-size: 1rem;
    padding: 2rem;
  }
} 

.hero-section h1 {
    padding-top: 150px;
}