/* Responsive Styles for DIY Organic Gardening Kits Template */

/* Mobile First Approach */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Disable all animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .hero-decorative {
    display: none;
  }
  
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .service-card,
  .feature-card,
  .price-card {
    margin-bottom: 1rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Reduced animations on small screens */
  .feature-card:hover,
  .service-card:hover {
    transform: translateY(-2px);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .container {
    max-width: 960px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .container {
    max-width: 1140px;
  }
  
  .hero-decorative {
    width: 300px;
    height: 300px;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  #hero {
    min-height: 90vh;
  }
  
  .hero-decorative {
    display: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-card,
  .service-card,
  .price-card,
  .review-card {
    border-width: 2px;
    border-color: #000;
  }
  
  .btn-primary {
    border-width: 2px;
  }
}

/* Dark mode support */

/* Print styles */
@media print {
  .navbar,
  #footer,
  .hero-decorative,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  .container {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .section-title {
    page-break-after: avoid;
  }
  
  .service-card,
  .feature-card,
  .price-card {
    page-break-inside: avoid;
    border: 1pt solid #000;
    margin-bottom: 10pt;
  }
} 