/* Responsive Styles for Heirloom Seeds Template */

/* Tablet Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .decorative-shape {
    display: none;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  /* Conservative navbar brand size */
  .navbar-brand {
    font-size: 1.2rem !important;
  }
  
  /* Section spacing */
  .section-padding {
    padding: 40px 0;
  }
  
  .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Hero adjustments */
  .hero-section {
    min-height: 70vh;
    padding: 20px 0;
  }
  
  /* Card adjustments */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .career-card {
    margin-bottom: 1.5rem;
  }
  
  /* Remove animations on mobile as per requirements */
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover,
  .team-card:hover,
  .blog-card:hover,
  .career-card:hover {
    transform: none;
    box-shadow: inherit;
  }
  
  .gallery-image:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  /* Team photos smaller on mobile */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Form adjustments */
  .form-control {
    padding: 10px 12px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Footer adjustments */
  .footer {
    padding: 30px 0 15px;
    text-align: center;
  }
  
  /* Process steps mobile layout */
  .process-step {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .step-number {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 1rem;
  }
  
  /* Timeline mobile layout */
  .timeline-item {
    border-left: none;
    border-top: 4px solid var(--seed-green);
    border-radius: 10px;
  }
  
  /* Gallery grid adjustments */
  .gallery-image {
    height: 200px;
    margin-bottom: 0.5rem;
  }
  
  /* Price value smaller on mobile */
  .price-value {
    font-size: 2rem;
  }
  
  /* FAQ spacing */
  .faq-card {
    margin-bottom: 0.8rem;
  }
  
  /* Remove decorative shapes on mobile */
  .decorative-shape {
    display: none;
  }
  
  /* Contact info stacking */
  .contact-info {
    text-align: center;
    margin-bottom: 1rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
  /* Further reduce typography */
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  /* Tighter spacing */
  .section-padding {
    padding: 30px 0;
  }
  
  /* Cards with less padding */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .career-card,
  .faq-card {
    padding: 1.5rem;
  }
  
  /* Hero even smaller */
  .hero-section {
    min-height: 60vh;
  }
  
  /* Price values more compact */
  .price-value {
    font-size: 1.8rem;
  }
  
  /* Footer more compact */
  .footer {
    padding: 20px 0 10px;
  }
  
  /* Team photos smallest */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  /* Gallery images smaller */
  .gallery-image {
    height: 150px;
  }
  
  /* Buttons full width on very small screens */
  .btn-primary {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-padding {
    padding: 50px 0;
  }
}

/* Print styles */
@media print {
  .hero-section {
    min-height: auto;
    background: none !important;
  }
  
  .decorative-shape {
    display: none;
  }
  
  .navbar,
  .footer {
    display: none;
  }
  
  /* Ensure good contrast for printing */
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a, a:visited {
    text-decoration: underline;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .career-card {
    border: 2px solid currentColor;
  }
  
  .btn-primary {
    border: 2px solid currentColor;
  }
}

/* Reduced data mode - simpler styles */
@media (prefers-reduced-data: reduce) {
  .hero-section {
    background: var(--leaf-blue-light);
  }
  
  .features-section {
    background: var(--harvest-gold-light);
  }
  
  /* Remove any expensive gradients */
  * {
    background-image: none !important;
  }
} 

.hero-content {
    padding-top: 200px;
}