@import url("https://fonts.googleapis.com/css2?family=Belanosima&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&family=Roboto+Slab:wght@100;200;300;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.App {
  text-align: center;
}



/* General Navbar Styles */
.NavbarItems {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    width: 95%;
    height: 80px;
    border-radius: 13px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translate(-50%);
    z-index: 999;
  }
  
  .navbar-logo {
    color: #222;
    font-size: 2rem;
    cursor: pointer;

  }

  .NavbarItems a{
    text-decoration: none;
  }
  
  /* Navigation Menu */
  .nav-menu {
    display: grid;
    grid-template-columns: repeat(6, auto);
    grid-gap: 10px;
    list-style: none;
    align-items: center;
  }
  
  .nav-links {
    text-decoration: none;
    color: #222;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    white-space: nowrap;
  }
  
  /* Fix: Remove any unwanted focus/active states */
  .nav-links:focus,
  .nav-links:active {
    outline: none;
    background-color: transparent;
    color: inherit;
  }
  
  .nav-links:hover {
    background-color: #00FFFF;
    color: #000;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
  }
  
  .nav-links i {
    padding-right: 10px;
  }
  
  .nav-links-mobile {
    display: none;
  }
  
  /* Buttons */
  button {
    padding: 0.5rem 1rem;
    white-space: nowrap;
    border-radius: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
  }
  
  button:hover {
    background-color: #00FFFF;
    color: #000;
  }
  
  /* Menu Icons for Mobile */
  .menu-icons {
    display: none;
  }
  
  @media screen and (max-width: 850px) {
    .nav-menu {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      background-color: #fff;
      width: 100%;
      height: auto;
      position: absolute;
      text-align: center;
      top: 0;
      left: -100%;
      opacity: 0;
      align-items: stretch;
      padding: 80px 0 30px 0;
      margin: 0;
      transition: 0.3s ease-in-out;
      border-radius: 13px;
    }
  
    /* Active Menu State */
    .nav-menu.active {
      left: 0;
      opacity: 1;
      z-index: -1;
      transition: 0.3s ease-in-out;
    }
  
    /* Mobile Nav Links */
    .nav-links {
      display: block;
      width: 100%;
      font-size: 1.2rem;
      padding: 2rem 0;
    }
  
    .nav-links:hover {
      background-color: #00FFFF;
    color: #000;
      transition: none;
    }
  
    .menu-icons {
      display: block;
      cursor: pointer;
    }
  
    .menu-icons i {
      font-size: 1.2rem;
      color: #222;
    }
  
    .menu-icons button {
      display: none;
    }
  
    .nav-links-mobile {
      display: block;
      text-align: center;
      padding: 1.5rem;
      margin: auto;
      border-radius: 4px;
      width: 80%;
      background-color: #00FFFF;
      color: #000;
      text-decoration: none;
   
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 2px;
    }
  
    .NavbarItems {
      z-index: 99;
    }
  }

  /*Hero */
  .hero {
    width: 100%;
    height: 100vh;
    position: relative;
  }

  .hero-image img{
    width: 100%;
    height: 80vh;
    position: relative;
  }
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

  }
  .hero-text p {
    font-size: 1.3rem;
    padding: 0.5rem 0 2rem 0;
    color: #fff;
  }
  .hero-text .show {
    text-decoration: none;
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #222;
  }
  .hero-text .show:hover{
    background: #01959a;
    color: #fff;
  }
  
  .hero-mid {
    width: 100%;
    height: 70vh;
    position: relative;
  }
  
  .hero-mid h1 {
    padding-top: 4rem !important;
  }
  .hero-text h1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-text .hide {
    display: none;
  }
  
  @media screen and (max-width: 555px) {
    .hero-text h1 {
      padding: 10px 20px;
      font-size: 1.5rem;
    }
    .hero-text p {
      font-size: 1.1rem;
      padding: 0 0 2rem 0;
    }
    .hero-text .show {
      padding: 0.6rem 1.1rem;
      border-radius: 6px;
      font-size: 1rem;
    }
  }
  

    /*Hero */


/*Destination */
.destination {
    margin: 4rem 6rem;
  }
  
  .destination h1 {
    font-size: 3rem;
    text-align: center;
  }
  
  .first-des {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4.5rem;
  }
  
  .first-des-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin-top: 4.5rem;
  }
  
  .des-text {
    width: 45%;
    text-align: start;
    font-size: 1.1rem;
  }
  
  .des-text h2 {
    padding-bottom: 1rem;
  }
  .image {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: space-between;
    z-index: -99;
  }
  
  .image img {
    width: 49%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: -1px 1px 62px -18px rgba(0, 0, 0, 0.19);
  }
  
  .image img:nth-child(2) {
    position: absolute;
    top: -10%;
    right: 0;
  }
  
  @media screen and (max-width: 850px) {
    .destination {
      margin: 4rem 2rem;
    }
    .destination h1{
      font-size: 1.5rem;
    }
  
    .first-des {
      display: flex;
      flex-direction: column-reverse;
      margin-top: 2.5rem;
    }
    .first-des-reverse {
      display: flex;
      flex-direction: column-reverse;
      margin-top: 4.5rem;
    }
  
    .des-text {
      width: 100%;
    }
    .image {
      width: 100%;
      margin: 1.8rem 0;
    }
    .image img {
      height: 250px;
    }
  }
  
/*Destination */


/*footer*/
.footer {
    padding: 4rem 6rem;
    background: 	#0096FF;
    color: #fff;
  }
  
  .top {
    display: flex;
    align-items: center;
    text-align: start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .top i {
    color: #fff;
    font-size: 2rem;
    margin-left: 1rem;
  }
  .alright-tag {
    display: inline;
  }
  .alright-tag p {
    align-items: center;
    margin-top: 10px;
  }
  .top i:hover {
    color: #00FFFF;
  }
  
  .bottom {
    padding-top: 2rem;
    text-align: start;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .bottom div {
    display: flex;
    flex-direction: column;
  }
  
  .bottom h4 {
    font-size: 1.3rem;
    padding: 1rem 0 0.8rem 0;
  }
  
  .bottom a {
    text-decoration: none;
    color: #fafafa;
    padding-bottom: 0.4rem;
    font-size: 1.1rem;
  }
  .bottom a:hover {
    color:#00FFFF;
  }
  .alright-tag p {
    padding-top: 20px;
    text-align: center;
  }
  
  @media screen and (max-width: 850px) {
    .footer {
      padding: 4rem 2rem;
    }
    .footer i {
      margin: 1rem 1rem 0 0;
    }
    .bottom div {
      width: 50%;
    }
     .alright-tag p {
      padding-top: 20px;
    }
  }
/*footer*/  



/*about-text*/
.about-text-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background-color: #f9f9f9;
  }
  
  .about-text {
    flex: 1;
    text-align: left;
    color: #2c3e50;
  }
  
  .about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .about-button {
    background-color: #0d5c63;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .about-button:hover {
    background-color: #01959a;
    transform: scale(1.05);
  }
  
  .about-images {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    flex: 1;
  }
  
  .about-images .small-image img,
  .about-images .large-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
  }
  
  .about-images .small-image {
    width: 40%;
  }
  
  .about-images .large-image {
    width: 60%;
  }
  
  .about-images .small-image img:hover,
  .about-images .large-image img:hover {
    transform: scale(1.1);
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .about-text-container {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }
  
    .about-text {
      text-align: center;
    }
  
    .about-images {
      flex-direction: column-reverse;
      align-items: center;
      gap: 1rem;
      margin-top: 2rem;
    }
  
    .about-images .small-image,
    .about-images .large-image {
      width: 100%; /* Full width for medium screens */
    }
  }
  
  @media (max-width: 768px) {
    .about-text-container {
      padding: 1.5rem;
    }
  
    .about-text h2 {
      font-size: 1.8rem;
    }
  
    .about-text p {
      font-size: 0.95rem;
    }
  
    .about-images .small-image,
    .about-images .large-image {
      width: 100%; /* Full width for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .about-text-container {
      padding: 1rem;
    }
  
    .about-text h2 {
      font-size: 1.5rem;
    }
  
    .about-text p {
      font-size: 0.9rem;
    }
  
    .about-button {
      font-size: 0.85rem;
      padding: 0.5rem 1rem;
    }
  
    .about-images .small-image,
    .about-images .large-image {
      width: 100%; /* Full width for small screens */
    }
  }

  /*about-text*/


  /*Discover */

  .discover-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
  }
  
  /* Text Section */
  .discover-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .discover-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
  
  .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
  }
  
  .stat-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0.5rem 0 0;
  }
  
  /* Images Section */
  .discover-images {
    position: relative;
    margin-top: 2rem;
  }
  
  .first-image {
    width: 500px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .second-image {
    width: 250px;
    position: absolute;
    right: 0;
    bottom: -30px;
    border-radius: 8px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .discover-stats {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .second-image {
      width: 40%;
      position: static;
      margin-top: -2rem;
    }
  }
  
  @media (max-width: 480px) {
    .discover-text h2 {
      font-size: 1.5rem;
    }
  
    .stat-item h3 {
      font-size: 1.8rem;
    }
  
    .stat-item p {
      font-size: 0.8rem;
    }
  
    .first-image {
      width: 100%;
    }
  
    .second-image {
      width: 60%;
      margin: 1rem auto 0;
      position: static;
    }
  }
  /*discover*/


  /*trip*/

  .trip-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
  }
  
  /* Trip Card */
  .trip-card {
    width: 30%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .trip-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Video styling */
  .trip-video {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  /* Title styling */
  .trip-title {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 15px;
    color: #333;
    margin: 0;
  }
  
  /* Description styling */
  .trip-description {
    font-size: 1rem;
    color: #555;
    padding: 0 15px 15px;
    line-height: 1.5;
  }
  
  /* Media Queries for responsiveness */
  
  /* For large screens (Desktop) */
  @media (min-width: 1024px) {
    .trip-card {
      width: 30%; /* 3 cards per row */
    }
  }
  
  /* For medium screens (Tablets) */
  @media (max-width: 1023px) and (min-width: 768px) {
    .trip-card {
      width: 45%; /* 2 cards per row */
    }
  
    .trip-title {
      font-size: 1.3rem;
    }
  
    .trip-description {
      font-size: 0.95rem;
    }
  }
  
  /* For small screens (Mobile Portrait) */
  @media (max-width: 767px) {
    .trip-container {
      padding: 10px;
      justify-content: center;
    }
  
    .trip-card {
      width: 100%; /* 1 card per row */
    }
  
    .trip-video {
      height: 150px; /* Adjust video height for mobile */
    }
  
    .trip-title {
      font-size: 1.2rem;
    }
  
    .trip-description {
      font-size: 0.9rem;
    }
  }
  
  /* For very small screens (Extra small devices like small phones) */
  @media (max-width: 480px) {
    .trip-title {
      font-size: 1.1rem;
    }
  
    .trip-description {
      font-size: 0.85rem;
    }
  
    .trip-video {
      height: 120px; /* Further reduce video height on smaller screens */
    }
  }

  /*trip*/


  /*form*/

  .from-container {
    margin: 4rem 6rem;
    color: #2a2a2a;
  }
  
  .from-container form {
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
  }
  .from-container input {
    height: 3rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
    border-radius: 0.3rem;
    border: 1px solid #2a2a2a;
  }
  
  .from-container textarea {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 0.3rem;
    border: 1px solid #2a2a2a;
  }
  
  .from-container button {
    display: inline;
  }
  
  @media screen and (max-width: 850px) {
    .from-container {
      margin: 4rem 2rem;
    }
    .from-container form {
      padding-top: 2rem;
      width: 90%;
    }
  }
/*form*/  