@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.btn {
    background-color: #F98866; 
    color:white; 
    padding: 0.75rem 1.5rem;
    outline: none;
    border: 2px solid #F98866;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(249, 136, 102, 0.2);

}
.btn:hover {
    background-color: white;
    color: #F98866;
    border: 2px solid #F98866;
    box-shadow: 0 4px 12px rgba(249, 136, 102, 0.3);
  }
a {
    text-decoration: none;
    transition: 0.3s;
}
body{
    font-family: "Noto Sans", sans-serif;
    background-color: #FFF2D7;
}
.container{
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    max-width: var(--max-width);
    margin-inline: auto;
    overflow: hidden;
}
nav {
    padding: 2rem 0 ;
    padding-inline: 1rem ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav__links{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__links a{
    font-weight: 500;
}
.nav__links .logo{
    font-family: 'Noto Sans' , sans-serif;
    font-size: 24px;
    font-weight:bold;
    letter-spacing: 1px;
}
.logo .wander{
    color: #F98866;
}
.logo .go{
    color: #F98866;
}
.nav__right a {
    color : #F98866;
}
.nav__links a:hover{
    color: var(--primary-color);
}
.hero{
    background-image: url('yourimage.webp');
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero::after{
    content: "";
    position: absolute;
    inset:0;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}
.hero-content{
    position: relative;
    z-index:2;
    max-width:700px;
    padding: 0.75rem 1.5rem;
}
.hero h1{
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.hero p {
    font-size: 1.2rem;
    line-height:1.6;
    white-space: pre-line;
    margin-bottom: 2rem;
}
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero-content h1,
  .hero-content p {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
  }
  .hero-content h1 {
    animation-delay: 0.5s;
  }
  .hero-content p {
    animation-delay: 1s;
  }
.destinations{
    padding: 4rem 1rem;
    background-color: #FFF2D7;
    text-align: center;
}
.destinations h2{
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #F98866;
}
.destination-grid{
    display:flex;
    justify-content: flex-start;
    align-items: stretch;
    gap:2rem;
    max-width: 100%;
    overflow-x: auto;
    margin: 0 auto;
    padding-bottom: 1rem;
    padding-left: 1rem; 
    scroll-behavior: smooth;
  
}
.destination-card{
    width:300px;
    flex-shrink: 0;
    margin-right: 2rem;
    background-color: #fff8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgb(34, 13, 13);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: inline-block;
    white-space: normal;
    
}
.destination-card img{
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: transform 0.3s ease;
}
.destination-card:hover img{
    transform: scale(1.05);
}
.destination-card h3{
    font-size: 1.5rem;
    margin:1rem 0 0.5rem;
    color: #885207
}
.destination-card p{
    padding: 0 1rem 1.5rem;
    color: #444;
    font-size:0.95rem;
}
.destination-card1 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
  }
  .destination-card2 {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s ease;
  }
  .destination-card3 {
    opacity: 0;
    transform: translateY(70px);
    transition: all 2s ease;
  }
  .destination-card4 {
    opacity: 0;
    transform: translateY(90px);
    transition: all 2.5s ease;
  }
  
  .card-show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .newsletter {
    background-color: #fff2d7;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .newsletter h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #F98866;
  }
  
  .newsletter p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #444;
  }
  
  .newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .newsletter-form input[type="email"] {
    padding: 0.75rem 1rem;
    border: 2px solid #f98866;
    border-radius: 8px;
    width: 250px;
  }
  
  .newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: #f98866;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #d46c50;
  }
  
  .footer {
    background-color: #F98866;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .footer h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .footer p {
    margin: 0.5rem 0;
    font-size: 1rem;
  }
  
  .footer-socials {
    margin: 1rem 0;
  }
  
  .footer-socials a {
    margin: 0 0.75rem;
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    transition: color 0.3s ease;
  }
  
  .footer-socials a:hover {
    color: #fff2d7;
  }
  
  .footer-copy {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
  }
  
