/* Responsive CSS - Mobile Optimization */
/* NO animations when scrolling in mobile resolution */

/* Mobile First - Base styles */
@media (max-width: 767.98px) {
  /* Disable scroll animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Conservative mobile typography */
  .navbar-brand {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 1.125rem;
  }
  
  h2 {
    font-size: 1rem;
  }
  
  /* Mobile hero section */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  /* Mobile service cards */
  .service-card {
    margin-bottom: 1rem;
    transform: none !important;
  }
  
  .service-card:hover {
    transform: none !important;
  }
  
  /* Mobile team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Mobile gallery */
  .gallery-item img {
    height: 200px;
    transform: none !important;
  }
  
  .gallery-item:hover img {
    transform: none !important;
  }
  
  /* Mobile contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Mobile section spacing */
  .section-spacing {
    padding: 2rem 0;
  }
  
  /* Mobile decorative elements - hidden */
  .decorative-blob {
    display: none;
  }
  
  /* Mobile process steps */
  .process-number {
    width: 35px;
    height: 35px;
  }
  
  /* Mobile price cards */
  .price-value {
    font-size: 1.5rem;
  }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .section-spacing {
    padding: 3rem 0;
  }
}

/* Desktop styles */
@media (min-width: 992px) {
  /* Full desktop experience with animations */
  .decorative-blob {
    display: block;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .section-spacing {
    padding: 5rem 0;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .decorative-blob {
    display: none !important;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
} 

.hero-section h1 {
    padding-top: 200px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
