/* Responsive Styles - Sustainable Office Supplies Template */

/* Mobile First Approach */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-blob-1,
  .hero-blob-2 {
    display: none;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  /* No animations on mobile to respect reduced motion */
  .service-card:hover,
  .blog-card:hover,
  .career-card:hover {
    transform: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    text-align: center;
  }
  
  .hero-blob-1 {
    width: 200px;
    height: 200px;
  }
  
  .hero-blob-2 {
    width: 150px;
    height: 150px;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    text-align: left;
  }
  
  .section-padding {
    padding: 3.5rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    text-align: left;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    text-align: left;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-decorative {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
    page-break-after: avoid;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #000000;
    --primary-blue: #000000;
    --light-green: #ffffff;
    --light-blue: #ffffff;
    --light-gray: #ffffff;
  }
  
  .service-card,
  .blog-card,
  .case-study-card {
    border: 2px solid black;
  }
}

/* Dark Mode Support */

.hero-section h1 {
    padding-top: 175px;
}