/* Responsive CSS for Recycled-Plastic Outdoor Furniture Brand */

/* Tablet Styles */
@media (max-width: 991.98px) {
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Section padding */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Hero section */
  .hero-section {
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Team photos */
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2rem;
  }
  
  /* Price cards featured scaling */
  .price-card.featured {
    transform: none;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* NO ANIMATIONS ON MOBILE SCROLL - Critical Rule */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  /* Section padding */
  .section-padding {
    padding: 2rem 0;
  }
  
  /* Hero section */
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  /* Cards and components */
  .service-card,
  .price-card,
  .feature-card,
  .review-card,
  .case-card,
  .job-card,
  .info-card {
    margin-bottom: 1.5rem;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  /* Team section */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Footer */
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Gallery images */
  .gallery-image {
    height: 200px;
  }
  
  /* Process numbers */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Timeline items */
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  /* Blog cards */
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  /* FAQ cards */
  .faq-card {
    padding: 1.5rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  /* Further reduce typography */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  /* Tighter section padding */
  .section-padding {
    padding: 1.5rem 0;
  }
  
  /* Reduce card padding */
  .service-card,
  .price-card,
  .feature-card,
  .review-card,
  .case-card,
  .job-card,
  .info-card,
  .faq-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  /* Smaller team photos */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Process numbers */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Gallery images */
  .gallery-image {
    height: 150px;
  }
}

/* Landscape Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 1.5rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  footer,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  body {
    color: black !important;
    background: white !important;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .hero-decorative {
    display: none;
  }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Ensure crisp rendering on high DPI displays */
  .navbar-brand,
  h1, h2, h3 {
    font-weight: 600;
  }
}

/* Accessibility - Enhanced for mobile */
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .service-card:hover,
  .price-card.featured {
    transform: none !important;
  }
} 

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