/* Responsive Styles */

/* Large Desktops (1200px and up) */
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
}

/* Medium Devices (992px and up) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title h2 {
    font-size: 2.25rem;
  }
}

/* Small Devices (768px and up) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-item {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Extra Small Devices (576px and up) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .service-item,
  .price-item,
  .team-member,
  .blog-item {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .price-item.featured {
    transform: scale(1);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-info li,
  .contact-method {
    justify-content: center;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-links li {
    margin: 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: all 0.4s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 1rem 0;
  }
  
  .nav-link {
    color: var(--neutral-light);
  }
  
  .nav-toggle {
    display: block;
  }
}

/* Mobile Devices (575px and below) */
@media screen and (max-width: 575px) {
  .container {
    width: 100%;
    padding: 0 1.25rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  .services-grid,
  .features-grid,
  .price-grid,
  .team-grid,
  .blog-grid,
  .core-info-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item,
  .price-item,
  .team-member,
  .blog-item,
  .core-info-item {
    max-width: 100%;
  }
  
  .price-item.featured {
    transform: scale(1);
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .contact-info li,
  .contact-method {
    justify-content: center;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-links li {
    margin: 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: all 0.4s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 1rem 0;
  }
  
  .nav-link {
    color: var(--neutral-light);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .review-item {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* Reduce animation for users with motion preferences */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    
    .service-item:hover,
    .about-feature:hover,
    .feature-item:hover,
    .team-member:hover,
    .blog-item:hover,
    .core-info-item:hover {
      transform: none;
    }
    
    .service-item:hover .service-image img,
    .blog-item:hover .blog-image img,
    .gallery-item:hover img {
      transform: none;
    }
  }
} 