/* Solar Panel Template - Responsive CSS */

/* Large screens (desktops) */
@media (min-width: 1200px) {
  .container-fluid {
    max-width: 1400px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.64rem;
  }
}

/* Medium screens (tablets) */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.89rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1.20rem !important;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Small screens (mobile) */
@media (max-width: 767.98px) {
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 1.83rem;
  }
  
  .hero-subtitle {
    font-size: 1.23rem;
  }
  
  .section-title {
    font-size: 1.53rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .service-card {
    margin-bottom: 1.56rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .simple-faq-card {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .simple-faq-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .simple-faq-card p {
    font-size: 0.93rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.57rem;
  }
  
  .section-title {
    font-size: 1.38rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.99rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
} 