/* Responsive Styles */

/* Large Screens (1200px and down) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

/* Medium Screens (992px and down) */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .service-item, .price-plan-item, .blog-item {
    max-width: 540px;
    margin: 0 auto;
  }
}

/* Small Screens (768px and down) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  /* Enable hamburger menu */
  .hamburger {
    display: block;
    font-size: 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 70%;
    height: calc(100vh - 70px);
    flex-direction: column;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 1000;
    padding: 2rem;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1.5rem 0;
  }
  
  /* Adjust section spacing */
  section {
    padding: 2rem 0;
  }
  
  /* Stack grid items */
  .about-features, 
  .services-grid, 
  .features-grid, 
  .price-plan-grid, 
  .team-grid, 
  .core-info-grid, 
  .blog-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .hero {
    text-align: center;
    padding-top: 6rem;
  }
  
  .hero-description {
    margin: 0 auto var(--space-lg);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Adjust font sizes */
  :root {
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
    --font-size-xl: 1.25rem;
  }
  
  /* Simplify animations */
  .about-feature-item:hover,
  .service-item:hover,
  .price-plan-item:hover,
  .blog-item:hover {
    transform: none;
  }
  
  @media (prefers-reduced-motion: reduce) {
    * {
      transition: none !important;
      animation: none !important;
    }
    
    .swiper-container {
      --swiper-autoplay-delay: 0 !important;
    }
  }
}

/* Extra Small Screens (576px and down) */
@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  /* Simplify form layout */
  .contact-form {
    padding: var(--space-md);
  }
  
  /* Further reduce spacing */
  :root {
    --space-xl: 2rem;
    --space-lg: 1.5rem;
    --space-md: 1rem;
  }
} 