/* Solar Carport Installation Company - Responsive CSS */

/* Mobile First Approach */

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  /* No animations on mobile as per requirements */
  .services-card,
  .team-card,
  .gallery-item img,
  .process-step {
    transition: none;
  }
  
  .services-card:hover,
  .team-card:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  .navbar-brand {
    font-size: var(--font-size-lg);
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  /* Services cards mobile */
  .services-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* Team cards mobile */
  .team-photo {
    height: 200px;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Process steps mobile */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-lg);
  }
  
  /* Section padding mobile */
  .section-padding {
    padding: 2rem 0;
  }
  
  .section-padding-large {
    padding: 3rem 0;
  }
}

/* Small Devices (Landscape Phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Hero section */
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-decorative {
    width: 150px;
    height: 150px;
  }
  
  /* Services grid */
  .services-card {
    margin-bottom: 1.5rem;
  }
  
  /* Team grid */
  .team-photo {
    height: 220px;
  }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Hero section */
  .hero-decorative {
    width: 180px;
    height: 180px;
  }
  
  /* Services grid - 2 columns */
  .services-row .col-md-6 {
    margin-bottom: 2rem;
  }
  
  /* Team grid - 2 columns */
  .team-photo {
    height: 240px;
  }
  
  /* Features grid */
  .features-item {
    margin-bottom: 2rem;
  }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Hero section full decoratives */
  .hero-decorative {
    width: 200px;
    height: 200px;
  }
  
  /* Services grid - 3 columns */
  .services-row .col-lg-4 {
    margin-bottom: 2rem;
  }
  
  /* Team grid - 3 columns on large screens */
  .team-photo {
    height: 250px;
  }
}

/* Extra Large Devices (Large Desktops) */
@media (min-width: 1200px) {
  /* Full desktop experience */
  .container {
    max-width: 1200px;
  }
  
  /* Hero section enhanced */
  .hero-decorative {
    width: 250px;
    height: 250px;
  }
  
  /* Larger spacing for desktop */
  .section-padding-large {
    padding: 8rem 0;
  }
}

/* Navbar Responsive Enhancements */
@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav {
    flex-direction: column;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    margin: 0.25rem 0;
  }
}

/* Gallery Responsive */
@media (max-width: 767.98px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .gallery-item img {
    height: 220px;
  }
}

/* FAQ Responsive */
@media (max-width: 575.98px) {
  .faq-card {
    padding: 1rem;
  }
}

/* Process Steps Responsive */
@media (max-width: 767.98px) {
  .process-step {
    margin-bottom: 2rem;
  }
}

/* Form Responsive */
@media (max-width: 575.98px) {
  .form-control {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .footer .row > div {
    margin-bottom: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-decorative {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .container {
    width: 100%;
    max-width: none;
  }
} 

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