/* ======= GOOGLE FONTS ======= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

/* ======= GLOBAL STYLES ======= */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
}

/* ======= PRELOADER ======= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 120px; /* adjust as needed */
  animation: zoomIn 1.5s ease-in-out infinite alternate;
}

#preloader p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #003300;
  margin-top: 15px;
  animation: fadeInOut 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ======= SCROLLING BANNER ======= */
.snowfall-banner.modern {
  background-color: #003300;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.scroll-text {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll 15s linear infinite;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/*marquee*/
.scrolling-text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #003300;
  color: white;
  font-weight: bold;
  padding: 10px 0;
  position: relative;
}

.scrolling-text::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 30px;
  background: linear-gradient(to right, transparent, #003300);
  z-index: 1;
}

.scrolling-text span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-ticker 20s linear infinite;
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ======= TOPBAR ======= */
.topbar {
  background: linear-gradient(135deg, #003300 0%, #004d00 100%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  position: static; /* Not sticky - scrolls with content */
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-height: 36px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left span,
.topbar-right span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 2px 6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.topbar-left span:hover,
.topbar-right span:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.topbar-left span i,
.topbar-right span i {
  font-size: 0.8rem;
  opacity: 0.9;
}

.topbar-right a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.topbar-right a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ======= NAVBAR ======= */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  position: sticky; /* Sticky - freezes at top when scrolling */
  top: 0; /* Sticks to very top after topbar scrolls away */
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex-wrap: wrap;
  min-height: 50px;
  border-bottom: 1px solid rgba(0,51,0,0.1);
}

.navbar:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.98);
}

/* Enhanced sticky behavior - show shadow when scrolled */
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,51,0,0.15);
}

/* Logo styling - works for both direct anchor and .logo class */
.navbar > a,
.logo,
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar > a img,
.logo img,
.logo-link img {
  height: 40px;
  max-height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* Navigation toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-size: 1.8rem;
  color: #004b23;
  cursor: pointer;
  padding: 0.5rem;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  align-items: center;
}

/* Ensure nav is visible on desktop */
nav {
  display: block;
}

/* Hide mobile toggle elements on desktop */
.nav-toggle,
.nav-toggle-label {
  display: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.nav-links > li > a {
  position: relative;
  overflow: hidden;
}

.nav-links > li > a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,51,0,0.1), transparent);
  transition: left 0.5s ease;
}

.nav-links > li > a:hover::before {
  left: 100%;
}

.nav-links > li > a:hover {
  color: #003300;
  background: rgba(0,51,0,0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,51,0,0.15);
}

/* Dropdown */
.navbar li {
  position: relative;
}

.navbar li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 280px;
  border-radius: 12px;
  border: 1px solid rgba(0,51,0,0.1);
  padding: 8px 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,51,0,0.1);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  backdrop-filter: blur(20px);
}

.dropdown a {
  padding: 8px 16px;
  display: block;
  color: #444;
  text-align: left;
  border-bottom: none;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #003300;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown a:hover {
  background: rgba(0,51,0,0.05);
  color: #003300;
  padding-left: 24px;
  transform: none;
  box-shadow: none;
}

.dropdown a:hover::before {
  transform: scaleY(1);
}

.dropdown li:first-child a {
  border-radius: 12px 12px 0 0;
}

.dropdown li:last-child a {
  border-radius: 0 0 12px 12px;
}

/* ======= HERO SECTION ======= */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1rem;
}

.hero-slider::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* semi-dark overlay */
}

.hero-content h1 {
  font-size: 3rem;
  margin: 0;
}

.hero-content span {
  color: #ffc107;
}

.hero-content p {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.btn-primary {
  background: #ffc107;
  color: black;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #e0a800;
}

/* Hero explore section */
.hero-explore {
  background-image: url('images/sikkim-nature.jpg'); /* Place your landscape image here */
  background-size: cover;
  background-position: center;
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-explore .hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
}

.hero-explore h1 {
  font-size: 42px;
  font-weight: bold;
  margin: 0;
}

.hero-explore p {
  margin-top: 12px;
  font-size: 16px;
  color: #f0f0f0;
}

.hero-explore a {
  color: #ffd700;
  text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: white; }
}

/* ======= TOURS SECTION ======= */
.tours-section {
  padding: 3rem 1rem;
  background: #f8f8f8;
  text-align: center;
}

.tours-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tour-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.tour-card:hover img {
  transform: scale(1.05);
}

.view-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.view-btn:hover {
  background-color: #128C7E;
}

.see-all {
  display: inline-block;
  margin-top: 2rem;
  background: #fbc02d;
  color: black;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/*whatsapp-float*/

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;   /* Changed from right:20px to left:20px */
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}



/* ======= BACK TO TOP BUTTON ======= */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 25px;
  z-index: 999;
  font-size: 22px;
  border: none;
  outline: none;
  background-color: #ff9900;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: none;
  transition: background 0.3s ease;
}

#backToTop:hover {
  background-color: #e08500;
}

/* ======= POPUP ======= */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 25px 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.popup-box input,
.popup-box button {
  width: 100%;
  margin: 10px 0;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.popup-box button {
  background-color: #f4b400;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.popup-box button:hover {
  background-color: #e09e00;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

/* ======= FOOTER ======= */
.site-footer {
  background: linear-gradient(135deg, #2e3b3f 0%, #1a2428 100%);
  color: #fff;
  padding: 3rem 1rem;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
}

.footer-logo-contact h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-info li {
  margin: 0.3rem 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-links h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #ffc107;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #ccc;
}

/* ======= RESPONSIVE DESIGN ======= */

/* Hide desktop navigation toggle elements by default */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-size: 24px;
  color: #003300;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-toggle-label:hover {
  background: rgba(0, 51, 0, 0.1);
}

/* Mobile Navigation Styles - Modern UX Best Practices */
@media (max-width: 768px) {
  /* Hide ALL topbars completely on mobile */
  .topbar {
    display: none !important;
  }

  .mobile-topbar {
    display: none !important;
  }

  /* Modern Mobile Navbar - Clean & Professional */
  .navbar {
    top: 0; /* Sticky at very top on mobile */
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; /* Frozen at top - always visible */
    min-height: 64px;
    background: rgba(255, 255, 255, 0.98); /* More opaque on mobile */
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12); /* Stronger shadow on mobile */
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 51, 0, 0.1);
  }

  /* Logo styling - Optimized for mobile */
  .navbar > a:first-child {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .navbar > a:first-child img {
    height: 42px;
    max-height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
  }

  /* Fixed Hamburger Menu Button */
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    position: relative;
    background: rgba(0, 51, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1002;
    border: none;
    outline: none;
  }

  .nav-toggle-label:hover {
    background: rgba(0, 51, 0, 0.1);
  }

  /* Hamburger Icon - Simple Three Lines */
  .nav-toggle-label::before,
  .nav-toggle-label::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #003300;
    border-radius: 1px;
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-toggle-label::before {
    top: 16px;
    box-shadow: 0 6px 0 #003300, 0 12px 0 #003300;
  }

  .nav-toggle-label::after {
    display: none;
  }

  /* Hamburger to X animation */
  .nav-toggle:checked + .nav-toggle-label::before {
    top: 24px;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 0 0 #003300, 0 0 0 #003300;
  }

  .nav-toggle:checked + .nav-toggle-label::after {
    display: block;
    top: 24px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .nav-toggle:checked + .nav-toggle-label {
    background: rgba(0, 51, 0, 0.1);
  }

  /* Modern Mobile Navigation Menu */
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }

  /* Show navigation when toggle is checked */
  .nav-toggle:checked ~ nav {
    left: 0;
  }

  /* Overlay when menu is open */
  .nav-toggle:checked ~ nav::after {
    content: '';
    position: fixed;
    top: 0;
    left: 280px;
    width: calc(100vw - 280px);
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  /* Overlay background */
  .nav-toggle:checked ~ nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 85%;
    width: 15%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }

  /* Mobile Menu Header with Contact Info */
  .nav-links::before {
    content: '';
    display: block;
    padding: 25px 20px 20px;
    background: linear-gradient(135deg, #003300 0%, #004d00 100%);
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    min-height: 100vh;
  }

  /* Contact Info Section in Menu */
  .nav-links::after {
    content: '📞 +91-97321 81111\A📧 info@anugratravels.com\A\A🌐 Follow Us';
    white-space: pre;
    display: block;
    padding: 20px;
    background: linear-gradient(135deg, #003300 0%, #004d00 100%);
    color: white;
    font-size: 13px;
    line-height: 1.6;
    margin-top: auto;
    text-align: center;
  }

  /* Navigation Links */
  .nav-links > li {
    border-bottom: 1px solid rgba(0, 51, 0, 0.08);
  }

  .nav-links > li:last-child {
    border-bottom: none;
  }

  .nav-links > li > a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-links > li > a::before {
    content: '';
    width: 4px;
    height: 0;
    background: #003300;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: height 0.3s ease;
  }

  .nav-links > li > a:hover {
    background: rgba(0, 51, 0, 0.05);
    color: #003300;
    padding-left: 28px;
  }

  .nav-links > li > a:hover::before {
    height: 60%;
  }

  /* Mobile Dropdown Styles */
  .nav-links .dropdown {
    position: static;
    display: none;
    background: #f1f3f4;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .nav-links li:hover .dropdown {
    display: block;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 300px;
    }
  }

  .dropdown li {
    border-bottom: 1px solid rgba(0, 51, 0, 0.05);
  }

  .dropdown li:last-child {
    border-bottom: none;
  }

  .dropdown a {
    padding: 14px 20px 14px 40px !important;
    font-size: 14px !important;
    color: #5a6c7d !important;
    font-weight: 400 !important;
    background: transparent !important;
  }

  .dropdown a:hover {
    background: rgba(0, 51, 0, 0.08) !important;
    color: #003300 !important;
    padding-left: 48px !important;
  }

  /* Close button area */
  .nav-toggle:checked ~ nav {
    left: 0;
  }

  /* Footer adjustments */
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero content adjustments */
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .hero-explore h1 {
    font-size: 28px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 12px;
    min-height: 60px;
  }
  
  .navbar .logo-link,
  .navbar .logo-link img,
  .navbar > a img,
  .logo img {
    height: 36px;
    max-height: 36px;
    max-width: 120px;
  }
  
  .nav-toggle-label {
    font-size: 22px;
    height: 36px;
    width: 36px;
  }

  .nav-links {
    padding: 8px 15px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo-contact,
  .contact-info {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-explore h1 {
    font-size: 24px;
  }

  .tours-section h2 {
    font-size: 1.5rem;
  }
}

/* Ensure proper flexbox behavior */
.navbar > * {
  flex-shrink: 0; /* Prevent items from shrinking */
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* Print styles */
@media print {
  .topbar,
  .navbar,
  .popup-overlay,
  #backToTop {
    display: none !important;
  }
}