/* Responsive Breakpoints */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 0 10px;
  }

  /* Hamburger Menu Toggler Visibility */
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-smooth);
  }

  /* Active Menu Toggler (X) */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Mobile Links Menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .header-cta {
    display: none !important;
  }

  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btns .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .tickets-pricing-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .modal.active {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  .modal-content {
    border-radius: 30px 30px 0 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    max-height: 90vh !important;
    animation: slideUp 0.4s ease-out !important;
  }
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
