/* Responsive Styles for Artisan Jams Subscription Site */

/* Extra Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  .hero-content {
    padding-right: 3rem;
    padding-top: 150px;
}
  
  .service-card {
    padding: 2.5rem;
  }
  
  .pricing-card {
    padding: 3.5rem 2.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  
  .hero-content {
    padding-right: 2rem;
    padding-top: 150px;
}
  
  .service-card {
    padding: 2rem;
  }
  
  .team-member img {
    width: 180px;
    height: 180px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 150px;
}
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
    padding: 2.5rem 1.5rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 160px;
    height: 160px;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 150px;
}
  
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .service-card img {
    height: 180px;
  }
  
  .feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
  }
  
  .feature-item i {
    font-size: 2.5rem;
  }
  
  .pricing-card {
    margin-bottom: 1.5rem;
    padding: 2rem 1.25rem;
  }
  
  .pricing-card .price {
    font-size: 2.5rem;
  }
  
  .team-member {
    margin-bottom: 1.5rem;
  }
  
  .team-member img {
    width: 140px;
    height: 140px;
  }
  
  .review-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .case-study-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .process-step {
    margin-bottom: 2rem;
    padding: 1.5rem 0.5rem;
  }
  
  .process-step::before {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .faq-card {
    padding: 1.25rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .blog-card img {
    height: 180px;
  }
  
  .blog-card-body {
    padding: 1.25rem;
    overflow-x: hidden;
}
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  /* Hero Section Mobile */
  #hero {
    min-height: 80vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-content {
    margin-bottom: 2rem;
    padding-top: 150px;
}
  
  .hero-image {
    margin-top: 1rem;
  }
  
  /* Services Mobile */
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
  }
  
  .service-card img {
    height: 150px;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  /* Features Mobile */
  .feature-item {
    margin-bottom: 1.5rem;
    padding: 1rem 0.5rem;
  }
  
  .feature-item i {
    font-size: 2rem;
  }
  
  /* Pricing Mobile */
  .pricing-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .pricing-card .price {
    font-size: 2rem;
  }
  
  .pricing-card.featured {
    border-width: 2px;
    transform: none;
  }
  
  /* Team Mobile */
  .team-member {
    margin-bottom: 1.5rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  /* Reviews Mobile */
  .review-card {
    margin-bottom: 1rem;
    padding: 1.25rem;
  }
  
  /* Case Studies Mobile */
  .case-study-card {
    margin-bottom: 1rem;
    padding: 1.25rem;
  }
  
  /* Process Mobile */
  .process-step {
    margin-bottom: 1.5rem;
    padding: 1rem 0.25rem;
  }
  
  .process-step::before {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* FAQ Mobile */
  .faq-card {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .faq-question {
    font-size: 0.9rem;
  }
  
  .faq-answer {
    font-size: 0.85rem;
  }
  
  /* Gallery Mobile */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  /* Contact Mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-control {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Blog Mobile */
  .blog-card img {
    height: 150px;
  }
  
  .blog-card-body {
    padding: 1rem;
  }
  
  /* Footer Mobile */
  #footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  #footer .row > div {
    margin-bottom: 1.5rem;
  }
  
  #footer h5 {
    font-size: 1rem;
  }
  
  #footer p,
  #footer a {
    font-size: 0.875rem;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
  #hero {
    min-height: 60vh;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .hero-content {
    margin-bottom: 1rem;
    padding-top: 150px;
}
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-card img,
  .gallery-item img,
  .blog-card img,
  .team-member img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print styles */
@media print {
  #header,
  #footer {
    display: none;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .service-card,
  .pricing-card,
  .review-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  a {
    text-decoration: underline;
  }
} 