/* ==== Coffee Cart Template - Responsive Styles ==== */

/* ==== Mobile First Approach ==== */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  :root {
    --fs-h1: 2rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.25rem;
    --section-padding: 2rem 0;
  }
  
  /* Hero section */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-shape {
    display: none;
  }
  
  /* Navbar */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Cards spacing */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 1.5rem;
  }
  
  /* Gallery adjustments */
  .gallery-item img {
    height: 200px;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Button sizing */
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Process steps */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Price amount */
  .price-amount {
    font-size: 2.5rem;
  }
  
  /* Footer */
  #footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Disable animations on mobile */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  
  :root {
    --fs-h1: 2.25rem;
    --fs-h2: 1.875rem;
    --section-padding: 3rem 0;
  }
  
  .hero-shape {
    width: 200px;
    height: 200px;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  :root {
    --section-padding: 3.5rem 0;
  }
  
  /* Hero section adjustments */
  .hero-shape {
    width: 250px;
    height: 250px;
  }
  
  /* Service cards in 2 columns */
  .service-card img {
    height: 180px;
  }
  
  /* Gallery items */
  .gallery-item img {
    height: 230px;
  }
  
  /* Team layout */
  .team-photo {
    width: 140px;
    height: 140px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Full desktop features */
  .hero-shape {
    width: 280px;
    height: 280px;
  }
  
  .gallery-item img {
    height: 240px;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Maximum container width */
  .container {
    max-width: 1140px;
  }
  
  .hero-shape {
    width: 300px;
    height: 300px;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* ==== Navigation Responsive ==== */
@media (max-width: 991.98px) {
  /* Standard Bootstrap 5 navbar collapse - no custom modifications */
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
}

/* ==== Grid Adjustments ==== */
@media (max-width: 767.98px) {
  /* Services grid */
  .services-grid .col-md-4 {
    margin-bottom: 2rem;
  }
  
  /* Features grid */
  .features-grid .col-md-3 {
    margin-bottom: 1.5rem;
  }
  
  /* Team grid */
  .team-grid .col-lg-2 {
    margin-bottom: 2rem;
  }
  
  /* Reviews grid */
  .reviews-grid .col-lg-4 {
    margin-bottom: 1.5rem;
  }
}

/* ==== Form Responsive ==== */
@media (max-width: 575.98px) {
  .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 0.75rem;
  }
}

/* ==== Section Spacing ==== */
@media (max-width: 767.98px) {
  .section-title {
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .section-description {
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }
}

/* ==== Card Adjustments ==== */
@media (max-width: 575.98px) {
  .feature-card,
  .info-card {
    padding: 1.5rem 1rem;
  }
  
  .feature-icon,
  .info-icon {
    font-size: 2.5rem;
  }
  
  .price-card {
    padding: 1.5rem;
  }
  
  .review-card,
  .case-card,
  .career-card {
    padding: 1.5rem;
  }
  
  .faq-card {
    padding: 1.25rem;
  }
}

/* ==== Typography Responsive ==== */
@media (max-width: 575.98px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
}

/* ==== Utility Responsive Classes ==== */
@media (max-width: 767.98px) {
  .text-center-mobile {
    text-align: center !important;
  }
  
  .mb-mobile-2 {
    margin-bottom: 1rem !important;
  }
  
  .mb-mobile-3 {
    margin-bottom: 1.5rem !important;
  }
}

/* ==== Image Responsive ==== */
@media (max-width: 575.98px) {
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
  
  /* Blog card images */
  .blog-card img {
    height: 180px;
  }
  
  /* Service card images */
  .service-card img {
    height: 160px;
  }
}

/* ==== Landscape Phone Specific ==== */
@media (max-width: 767.98px) and (orientation: landscape) {
  #hero {
    min-height: 70vh;
  }
  
  .section {
    padding: 2rem 0;
  }
} 

body {
    overflow-x: hidden;
}

.hero-content {
    padding-top: 200px;
}