/* Responsive CSS for Green Roof Service */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 3.53rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Large Devices (992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .service-card {
    height: auto;
    min-height: 400px;
  }
}

/* Medium Devices (768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 2.64rem;
  }
  
  .hero-subtitle {
    font-size: 1.34rem;
  }
  
  .section-title {
    font-size: 2.32rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .service-card,
  .priceplan-card,
  .team-card {
    margin-bottom: 2rem;
  }
}

/* Small Devices (576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.22rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.39rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .feature-card,
  .service-card,
  .priceplan-card,
  .team-card,
  .review-card,
  .casestudy-card {
    margin-bottom: 1.60rem;
  }
  
  .navbar-brand {
    font-size: 1.36rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .contact-info {
    margin-top: 2rem;
    padding: 2rem;
  }
}

/* Extra Small Devices (less than 576px) */
@media (max-width: 575px) {
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.87rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-desc {
    font-size: 0.92rem;
    margin-bottom: 1.74rem;
  }
  
  .section-title {
    font-size: 1.93rem;
  }
  
  .section-subtitle {
    font-size: 1.24rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.26rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    text-align: center;
  }
  
  .feature-card,
  .service-card,
  .priceplan-card,
  .team-card,
  .review-card,
  .casestudy-card,
  .process-card {
    margin-bottom: 1.74rem;
    padding: 1.5rem;
  }
  
  .service-name,
  .priceplan-name,
  .team-name,
  .casestudy-title,
  .process-title {
    font-size: 1.34rem;
  }
  
  .service-price,
  .priceplan-price {
    font-size: 1.93rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .contact-info h3 {
    font-size: 1.53rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .feature-icon {
    font-size: 2.58rem;
  }
  
  .process-number {
    font-size: 2.65rem;
  }
  
  .faq-question,
  .faq-answer {
    padding: 1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer .container {
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
}

/* Portrait Tablet Adjustments */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}

/* Landscape Phone Adjustments */
@media (max-width: 667px) and (orientation: landscape) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-image,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-shape,
  .footer {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: none;
    color: black;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .service-card,
  .priceplan-card,
  .team-card,
  .review-card,
  .casestudy-card {
    box-shadow: none;
    border: 1px solid #c4c4c4;
  }
} 