/* Responsive styles */

/* Large screens (laptops/desktops, 992px and up) */
@media only screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.3rem;
  }
}

/* Medium screens (tablets, 768px and up) */
@media only screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.2rem;
  }
  
  .hero-desc-1 {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  /* Navbar adjustments */
  .navbar-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--color-primary);
  }
  
  .navbar-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    background-color: white;
    width: 250px;
    height: 100vh;
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-menu.active {
    right: 0;
  }
  
  .navbar-menu li {
    margin: 1rem 0;
  }
  
  /* Grid adjustments */
  .team-grid, 
  .coreinfo-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Footer adjustments */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small screens (mobile phones, 576px and up) */
@media only screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  /* Grid adjustments */
  .services-grid,
  .priceplan-grid,
  #blog_grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid,
  .coreinfo-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer adjustments */
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  /* Form adjustments */
  .contact-form-container {
    padding: 1.5rem;
  }
}

/* Extra small screens */
@media only screen and (max-width: 576px) {
  .hero-title-1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .header-container {
    padding: 10px 0;
  }
  
  .sitename {
    font-size: 1.5rem;
  }
  
  /* Gallery adjustments */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* Space for reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    
    .swiper-container {
      --swiper-autoplay-delay: 0 !important;
    }
  }
} 