/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
  }
  .scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
  }
  
  .scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .top-destinations {
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
  }
  
  .top-destinations h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #b28fff;
  }
  
  .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .destination-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(178, 143, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(20px);
    animation: floatUp 4s ease-in-out infinite alternate;
  }
  
  .destination-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
  }
  
  .destination-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #fff;
  }
  
  .destination-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(178, 143, 255, 0.4);
    border: 1px solid #b28fff;
  }
  
  @keyframes floatUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }
  .modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .modal-content {
    background: #1e1b2e;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(178, 143, 255, 0.4);
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .modal-content img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
  }
  
  .modal-content h2 {
    color: #b28fff;
    margin-bottom: 0.5rem;
  }
  
  .close {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
  }
    
  .btn-book-now {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #b28fff, #9c6bff);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(178, 143, 255, 0.6);
    transition: all 0.3s ease;
  }
  
  .btn-book-now:hover {
    box-shadow: 0 0 20px rgba(178, 143, 255, 1);
    transform: scale(1.05);
  }

  .adventure-packages {
    padding: 5rem 2rem;
    background: linear-gradient(145deg, #0e0c17, #1b1830);
    text-align: center;
    color: #fff;
  }
  
  .adventure-packages h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #b28fff;
  }
  
  .packages-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1000px;
    margin: auto;
  }
  
  .package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #b28fff30;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(178, 143, 255, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
  }
  
  .package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(178, 143, 255, 0.3);
  }
  
  .package-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
  }
  
  .package-card .price {
    display: block;
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #ffcc70;
  }
  
  .btn-book {
    padding: 0.6rem 1.4rem;
    background: #b28fff;
    border: none;
    border-radius: 8px;
    color: #0e0c17;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn-book:hover {
    background: #d7c6ff;
  }
  
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: -1;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    color: #b28fff;
    text-shadow: 0 0 10px #b28fff;
    animation: fadeUp 1s ease-in-out;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0;
    animation: fadeUp 1.5s ease-in-out;
  }
  
  .btn-glow {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #b28fff;
    color: #0a0a0a;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 15px #b28fff;
    transition: all 0.3s ease;
    animation: fadeUp 2s ease-in-out;
  }
  
  .btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #b28fff;
  }
  
  /* Text Animation */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Particle canvas */
  #particles {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal-content {
    background: #1e1b2e;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(178, 143, 255, 0.4);
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .modal-content img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
  }
  
  .modal-content h2 {
    color: #b28fff;
    margin-bottom: 0.5rem;
  }
  
  .close {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
  }

  .gallery-section {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .gallery-section h2 {
    font-size: 2.5rem;
    color: #b28fff;
    margin-bottom: 2.5rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(178, 143, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    animation: floatIn 1s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .gallery-item p {
    padding: 1rem;
    font-style: italic;
    color: #ddd;
  }
  
  .gallery-item:hover {
    transform: scale(1.03) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(178, 143, 255, 0.3);
  }
  
  @keyframes floatIn {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Navbar Base */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(15, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 0 10px #b28fff66;
  }
  
  .logo {
    font-size: 1.5rem;
    color: #b28fff;
    font-weight: bold;
    text-shadow: 0 0 8px #b28fff;
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }
  
  /* Nav Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
  }
  
  .nav-links li a:hover {
    color: #b28fff;
    text-shadow: 0 0 8px #b28fff;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      background: rgba(15, 14, 23, 0.95);
      flex-direction: column;
      gap: 1.5rem;
      width: 100%;
      padding: 1.5rem 2rem;
      display: none;
    }
  
    .nav-links.show {
      display: flex;
    }
  }
  
  /* Add top padding for sticky navbar */
  body {
    padding-top: 70px;
  }
  
  
  .about-section {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, #1e1a2a, #0f0e17);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .about-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #b28fff;
    text-shadow: 0 0 10px rgba(178, 143, 255, 0.5);
  }
  
  .about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(178, 143, 255, 0.2);
    animation: floatGlow 4s ease-in-out infinite alternate;
    transform-style: preserve-3d;
  }
  
  @keyframes floatGlow {
    0% {
      transform: translateY(0px);
      box-shadow: 0 0 20px rgba(178, 143, 255, 0.2);
    }
    100% {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(178, 143, 255, 0.4);
    }
  }
  
  /* Scroll animation reveal */
  .scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }
  .scroll-animate.reveal {
    opacity: 1;
    transform: translateY(0);
  }
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 14, 23, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    display: none;
  }
  
  .lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(178, 143, 255, 0.3);
  }
  
  .close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    z-index: 1000;
  }
  
  
  .footer {
    background: linear-gradient(145deg, #0f0e17, #1a1825);
    color: #fff;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 -2px 20px rgba(178, 143, 255, 0.1);
  }
  
  .footer h3 {
    font-size: 1.8rem;
    color: #b28fff;
    margin-bottom: 0.5rem;
  }
  
  .footer p {
    font-size: 1rem;
    color: #ccc;
  }
  
  .footer-links {
    margin: 1.2rem 0;
  }
  
  .footer-links a {
    color: #b28fff;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  
  .social-icons {
    margin-top: 1rem;
  }
  
  .social-icons a {
    margin: 0 10px;
    color: #b28fff;
    font-size: 1.3rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
    color: #fff;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
  }
  