@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    margin: 0;
    font-family: Poppins, sans-serif;
}

.header {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.header.scrolled {
    backdrop-filter: blur(5px);
    background-color: #ffffff;
}

.header h1 {
    margin: 0;
    font-size: xx-large;
}

.header a {
    text-decoration: none;
    color: inherit;
}

.header a:visited {
    color: inherit;
}

.header a:hover {
    color: #ccc;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    background-color: #ffffff(0, 0%, 100%);
    padding-right: 30px;
}

.navbar a {
    color: rgb(0, 0, 0);
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.navbar a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: rgb(255, 255, 255);
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    right: 0;
}

.navbar a:hover {
    color: #7c7c7c;
}

.navbar a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #7c7c7c;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.navbar a:hover::after {
    transform: scaleX(0);
    transform-origin: bottom left;
}

.trip-options {
    text-align: center;
    padding: 20px;
    margin-top: 100px;
}

.trip-options .title {
    font-size: 2.5em;
    font-weight: bold;
    margin-top: 20px;
    color: #000000;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 20px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item p {
    margin-top: 10px;
    font-size: 1em;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #555;
}

a:visited {
    color: inherit;
}



@media (max-width: 768px) {
  /* Header */
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
  }
  .header h1 {
    font-size: 1.3em;
    margin: 0 0 10px 0;
    padding: 0;
  }
  .header a {
    font-size: 1em;
    padding: 0;
  }

  /* Navbar (hamburger logic assumed elsewhere) */
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 15px;
    gap: 10px;
    z-index: 1200;
  }
  .navbar.show {
    display: flex;
  }
  .navbar a {
    color: #fff !important;
    padding: 10px 0;
    font-size: 1em;
    text-align: left;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2000;
    position: fixed;
    top: 15px;
    right: 15px;
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #111;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.black span {
    background: #fff !important;
  }

  /* Trip Options Section */
  .trip-options {
    padding: 10px;
    margin-top: 110px;
    margin-bottom: 410px;
  }
  .trip-options .title {
    font-size: 1.5em;
    margin-top: 10px;
    margin-bottom: 50px;
    padding: 0 5px;
  }

  /* Gallery */
  .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding-bottom: 10px;
  }
  .gallery-item {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }
  .gallery-item img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto 10px auto;
  }
  .gallery-item h2 {
    font-size: 0.9em;
    margin: 8px 0 4px 0;
  }
  .gallery-item h3 {
    font-size: 0.7em;
    margin: 0 0 8px 0;
  }

}
