/* Responsive Styles for ZONIK Website */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  
  .slide-title {
    font-size: 2.2rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  
  .about-content,
  .contact-content,
  .product-details-content {
    grid-template-columns: 1fr;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-content {
    margin-left: 30px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .banner {
    height: 400px;
  }
  
  .slide-title {
    font-size: 1.8rem;
  }
  
  .slide-text {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .banner {
    height: 350px;
  }
  
  .slide-content {
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .slide-title {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .product-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
