/* ==========================================================================
   Tumo Travels - Responsive Media Queries
   Mobile-First & Breakpoint Refinements
   ========================================================================== */

/* Large Desktop & Laptops */
@media (max-width: 1200px) {
  .dest-card-lg { grid-column: span 6; }
  .dest-card-md { grid-column: span 6; }
  .dest-card-sm { grid-column: span 6; }
  
  .slide-title {
    font-size: 3.2rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .nav-menu {
    gap: 0.85rem;
  }

  .nav-link {
    font-size: 0.88rem;
  }
}

/* Tablets & Medium Screens */
@media (max-width: 992px) {
  :root {
    --header-height: 80px;
  }

  .top-bar {
    display: none; /* Hide topbar on mobile/tablet for clean space */
  }

  /* Hamburger & Mobile Nav Drawer */
  .hamburger-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    overflow-y: auto;
    z-index: 999;
  }

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

  .nav-link {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.6rem 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: var(--bg-cream);
  }

  .nav-item-dropdown.active .dropdown-menu {
    display: block;
  }

  /* Hero Adjustments */
  .hero-slider-section {
    height: 520px;
  }

  .slide-title {
    font-size: 2.4rem;
  }

  .slide-description {
    font-size: 1rem;
  }

  .tour-search-wrapper {
    margin-top: -30px;
  }

  .search-form {
    grid-template-columns: 1fr 1fr;
  }

  .search-btn-col {
    grid-column: span 2;
  }

  /* Form & Content Layouts */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: span 1;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .dest-card-lg, .dest-card-md, .dest-card-sm {
    grid-column: span 1;
    height: 260px;
  }

  .packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {
  .section-padding {
    padding: 3.5rem 0;
  }

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

  .hero-slider-section {
    height: 480px;
  }

  .slide-title {
    font-size: 1.9rem;
  }

  .slide-subtitle {
    font-size: 0.85rem;
  }

  .slide-description {
    display: none; /* Hide long desc on small mobile screens */
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .slider-arrow.prev { left: 0.8rem; }
  .slider-arrow.next { right: 0.8rem; }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-btn-col {
    grid-column: span 1;
  }

  .search-box-card {
    padding: 1.2rem;
  }

  .btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-box {
    flex-direction: column;
  }

  .newsletter-box input, .newsletter-box button {
    width: 100%;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-logo img {
    width: 46px;
    height: 46px;
  }
}
