/* Responsive Styles for Zero-Emissions Courier Service */

/* Mobile First - Base styles are for mobile */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .navbar-brand {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .hero-content {
    padding-right: 2rem;
    padding-top: 200px;
}
  
  .service-card {
    height: auto;
    min-height: 350px;
  }
  
  .team-photo {
    height: 300px;
  }
  
  .gallery-image {
    height: 300px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    padding: 6rem 0;
  }
  
  .section {
    padding: 8rem 0;
  }
  
  .section-header {
    margin-bottom: 4rem;
  }
  
  .service-card {
    min-height: 400px;
  }
  
  .review-card {
    min-height: 300px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .service-card {
    min-height: 450px;
  }
}

/* Mobile specific overrides */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 2rem;
    padding-top: 200px;
}
  
  .decorative-blob {
    display: none;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
    min-height: auto;
  }
  
  .team-photo {
    height: 200px;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .btn:last-child {
    margin-bottom: 0;
  }
  
  /* Disable animations on mobile */
  .service-card:hover,
  .team-card:hover,
  .gallery-item:hover {
    transform: none;
  }
}

/* Extra small devices */
@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .faq-question,
  .faq-answer {
    padding: 1rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .gallery-item {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
} 
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
