@media (max-width: 991px) {
  .navbar .container-fluid {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    flex-direction: column;
    background: var(--bg-white);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu li {
    margin: 0.8rem 0;
  }

  .nav-menu.active {
    top: 70px;
    padding: 1rem 0;
  }

  .burger {
    display: flex;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  section {
    padding: 3.5rem 0;
  }

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

  .about-image {
    height: 300px;
  }

  .about-emoji {
    font-size: 6rem;
  }

  /* Menu Page*/
  .filter-buttons {
    justify-content: center;
  }

  .filter-selects {
    flex-direction: column;
  }

  /* Feedback */
  .feedback-sidebar {
    position: static;
    margin-top: 2rem;
  }
}

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .btn-hero {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .food-image {
    height: 200px;
  }

  .food-emoji {
    font-size: 4rem;
  }

  .about-content h3 {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 3rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  /* Menu Page */
  .page-header {
    padding: 6rem 0 1rem;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .filter-controls {
    padding: 0 1.5rem 0.5rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-card-image {
    height: 200px;
  }

  /* Feedback */
  .feedback-form-container {
    padding: 1.5rem;
  }

  .form-intro h2 {
    font-size: 1.5rem;
  }

  .star {
    font-size: 1.8rem;
  }

  .sidebar-card {
    padding: 1.5rem;
  }

  .stats-grid {
    gap: 0.8rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* Cookie */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.3rem;
  }

  .brand-icon {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .btn-primary {
    padding: 0.7rem 1.8rem;
  }

  /* Menu Page */
  .page-title {
    font-size: 1.8rem;
  }

  .filter-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .menu-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cuisine-tag {
    align-self: flex-start;
  }

  /* Feedback */
  .feedback-section {
    padding: 2.5rem 0;
  }

  .feedback-form-container {
    padding: 1.2rem;
  }

  .form-intro h2 {
    font-size: 1.3rem;
  }

  .btn-submit {
    font-size: 1rem;
  }

  .success-message i {
    font-size: 3rem;
  }

  .success-message h3 {
    font-size: 1.5rem;
  }

  /* Cookie */
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-text h4 {
    font-size: 1.1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

  .cookie-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-accept,
  .btn-decline {
    width: 100%;
    padding: 0.7rem 1.5rem;
  }

  .autofill-notification {
    flex-direction: column;
    text-align: center;
  }

  .autofill-notification .clear-data {
    width: 100%;
  }
}
