/* Artisan Coffee Box - Responsive CSS */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  .hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero h1 {
  padding-top: 50px !important;
    font-size: var(--font-size-2xl);
  }
  
  .hero .lead {
    font-size: var(--font-size-base);
  }
  
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .section-subtitle {
    font-size: var(--font-size-base);
  }
  
  .feature-card,
  .service-card,
  .team-card,
  .review-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .price {
    font-size: var(--font-size-3xl);
  }
  
  .navbar-brand {
    font-size: var(--font-size-lg) !important;
  }
  
  .service-price {
    font-size: var(--font-size-xl);
  }
  
  .gallery img {
    height: 200px;
    margin-bottom: 1rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero h1 {
  padding-top: 50px !important;
    font-size: var(--font-size-3xl);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    text-align: left;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
  
  .gallery img {
    height: 220px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero {
    min-height: 100vh;
  }
  
  .price-card.featured {
    transform: scale(1.05);
  }
  
  .gallery img {
    height: 250px;
  }
  
  .service-card:hover,
  .team-card:hover,
  .blog-card:hover {
    transform: translateY(-10px);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero h1 {
  padding-top: 50px !important;
    font-size: var(--font-size-4xl);
  }
  
  .section-title {
    font-size: var(--font-size-3xl);
  }
}

/* Container Adjustments */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
}

/* Form Responsive */
@media (max-width: 768px) {
  .form-control {
    margin-bottom: 1.65rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  footer .row > div {
    margin-bottom: 2rem;
  }
}

/* Cards Grid Responsive */
@media (max-width: 768px) {
  .row .col-md-4,
  .row .col-lg-4,
  .row .col-md-6,
  .row .col-lg-6 {
    margin-bottom: 2rem;
  }
}

/* Image Responsive */
@media (max-width: 576px) {
  .hero img,
  .about img {
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }
}

/* Text Alignment Responsive */
@media (max-width: 768px) {
  .text-md-start {
    text-align: center !important;
  }
  
  .text-md-end {
    text-align: center !important;
  }
}

/* Spacing Adjustments */
@media (max-width: 576px) {
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  
  .mt-5 {
    margin-top: 2rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 1rem;
    font-size: var(--font-size-base);
  }
  
  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: var(--font-size-small);
  }
}

/* Blog Cards Responsive */
@media (max-width: 768px) {
  .blog-card img {
    height: 180px;
  }
  
  .blog-card-body {
    padding: 1.5rem;
  }
}

/* Review Cards Responsive */
@media (max-width: 576px) {
  .review-card {
    padding: 1.5rem;
  }
  
  .review-card::before {
    font-size: 3rem;
    top: -5px;
    left: 15px;
  }
} 