@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --blue: #2563eb;
    --sky-blue: #0ea5e9;
    --orange: #f97316;
    --gray: #334155;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --radius: 0.75rem;
  }
  
  html {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
  }
  
  body {
    line-height: 1.6;
    color: var(--gray);
    background-color: var(--white);
    font-family: "popins";
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .co{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: transparent; */
    background-color: rgb(183, 248, 248);
    padding: 2% 10%;
    position: relative;
    z-index: 6;
   
  }
  .nav {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
 
}

div.l {
    list-style: none;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 3em;
}
.vid {
  position: absolute;
  top: 0;
  object-fit: cover;
  left: 0;
  width: 100vw;
  height: 100vh;
}


  /* Featured Destinations */
  .destinations {
    padding: 5rem 1rem;
  }
  
  .destination-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .destination-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
   .destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  } 
   
  .destination-img {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .destination-card:hover img {
    transform: scale(1.05);
  }
  
  .destination-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-top-left-radius: var(--radius);
  }
  
  .destination-price {
    color: var(--white);
    font-weight: 600;
  }
  
  .destination-content {
    padding: 1.5rem;
  }
  
  .destination-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray);
  }
  
  .destination-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .destination-meta span {
    display: flex;
    align-items: center;
    margin-right: 1rem;
  }
  
  .destination-meta i {
    margin-right: 0.25rem;
    width: 1rem;
    height: 1rem;
  }
  
  .destination-content p {
    margin-bottom: 1rem;
    color: #4b5563;
  }
  
  .destination-link {
    display: inline-block;
    color: var(--blue);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .destination-link:hover {
    color: #1e40af;
  }
  
  

  
 
  /* Media Queries */
  @media (min-width: 640px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .destination-grid, .package-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
      flex-direction: row;
      text-align: left;
    }
    
    .testimonial-img {
      margin-right: 1.5rem;
      margin-bottom: 0;
    }
    
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .search-grid {
      grid-template-columns: 2fr 1fr 1fr;
    }
    
    .hero-title {
      font-size: 3rem;
    }
    
    .newsletter-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .nav-links {
      display: flex;
      align-items: center;
    }
    
    .mobile-menu-btn {
      display: none;
    }
    
    .hero-title {
      font-size: 3.5rem;
    }
    
    .search-btn {
      width: auto;
    }
    
    .destination-grid, .package-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-slider {
      overflow-x: visible;
    }
    
    .testimonial-card {
      padding: 2rem;
    }
  }
