/* ==========================================================================
   DIN S.A.S. - RESPONSIVE STYLES & BREAKPOINTS
   ========================================================================== */

/* Tablets & Mobile Screens */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: var(--din-header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--din-header-height));
    background-color: var(--din-bg-main);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: left var(--din-transition-normal);
    box-shadow: var(--din-shadow-lg);
  }

  .nav-menu.open {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .chat-widget-wrapper {
    height: 480px;
  }
}
