/* ==========================================================================
   Responsive Styles for Neostekloplast Website
   ========================================================================== */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero__title {
    font-size: 3rem;
  }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
  .section {
    padding: 60px 0;
  }
  
  .about__grid {
    grid-template-columns: 1fr;
  }
  
  .about__image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small Devices (Landscape Phones, less than 768px) */
@media (max-width: 767.98px) {
  /* Header & Navigation */
  .mobile-toggle {
    display: block;
  }
  
  .header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .header__actions .lang-switch-container {
    margin-left: 0;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-surface);
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-normal);
    padding: 80px 30px;
    z-index: -1;
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  /* Hero */
  .hero__title {
    font-size: 2.25rem;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  .hero__actions {
    flex-direction: column;
    padding: 0 20px;
  }
  
  /* Sections */
  .section-title {
    font-size: 2rem;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero__title {
    font-size: 1.8rem;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
