/* ===== RESPONSIVE STYLES - EV CHARGING STATION TEMPLATE ===== */

/* Mobile First Approach */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    padding-top: 275px;
}
  
  .hero-section p {
    font-size: 14px;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .services-card {
    padding: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* No animations on mobile for better performance */
  .card:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    padding-top: 275px;
}
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-section h1 {
    font-size: 2.25rem;
    padding-top: 275px;
}
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section h1 {
    font-size: 2.75rem;
    padding-top: 275px;
}
  
  .section-padding {
    padding: 6rem 0;
  }
}

/* Utility Classes for Responsive Design */
.mobile-center {
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-center {
    text-align: left;
  }
}

/* Hide elements on mobile */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

/* Show only on mobile */
.show-mobile {
  display: block;
}

@media (min-width: 768px) {
  .show-mobile {
    display: none;
  }
}

/* Responsive spacing */
.mb-mobile {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mb-mobile {
    margin-bottom: 0;
  }
}

/* Responsive text sizes */
.text-responsive {
  font-size: 14px;
}

@media (min-width: 576px) {
  .text-responsive {
    font-size: 16px;
  }
}

/* Contact form responsive */
@media (max-width: 767.98px) {
  .contact-form {
    padding: 1.5rem;
  }
}

/* Gallery responsive grid */
@media (max-width: 575.98px) {
  .gallery-item img {
    height: 200px;
  }
}

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

@media (min-width: 768px) {
  .gallery-item img {
    height: 250px;
  }
}

/* Services cards responsive */
@media (max-width: 767.98px) {
  .services-card .card-img-top {
    height: 150px;
  }
  
  .price-tag {
    font-size: 1.5rem;
  }
}

/* Footer responsive */
@media (max-width: 767.98px) {
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Navigation responsive */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }
}

/* Breadcrumb responsive */
@media (max-width: 575.98px) {
  .breadcrumb {
    font-size: 14px;
    padding: 0.5rem 0;
  }
}

/* Button responsive */
@media (max-width: 575.98px) {
  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 14px;
  }
}

/* Decorative blobs responsive */
@media (max-width: 767.98px) {
  .decorative-blob {
    display: none;
  }
}

/* Container responsive margins */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
} 
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
