@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

   

* {
  scroll-behavior: smooth;
  transition: all 0.2s ease-in-out;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
}

/* Responsive Styles for AroundWorld */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
  /* Navbar */
  #navbar-dropdown ul {
    gap: 1.5rem;
  }
  
  /* Hero Section */
  #home .px-4 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  /* Content Sections */
  section.flex:nth-child(even) {
    flex-direction: column-reverse;
    text-align: center;
  }

  section.flex:nth-child(odd) {
    flex-direction: column;
    text-align: center;
  }
  
  section.flex > div {
    width: 100%;
    margin: 0;
    padding: 1rem;
  }
  
  /* section.flex img {
    margin: 1rem auto;
    max-width: 90%;
  } */
  
  /* Travel Grid */
  .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Partners Section */
  .flex.justify-center.items-center {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* .flex.justify-center.items-center img {
    margin: 0.5rem;
    max-height: 40px;
  } */

  div.line {
    margin: 1rem auto;
  }
}

/* Mobile Devices (480px - 768px) */
@media (max-width: 768px) {
  /* Navbar */
  #title-nav {
    font-size: 2rem;
  }
  
  #navbar-dropdown ul {
    gap: 1rem;
  }
  
  /* Hero Section */
  #title-tron {
    font-size: 2.5rem;
  }
  
  #home .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Sponsor Marquee */
  #sponsor-list marquee ul {
    gap: 2rem;
  }
  
  #sponsor-list marquee ul li img {
    max-height: 30px;
  }
  
  #title-nav {
    font-size: 2rem;
  }
  
  /* section.flex {
  } */
  
  /* section.flex img {
    max-width: 100%;
    margin: 1rem 0;
  } */
  
  .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .flex.flex-col.justify-center.items-center .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* .flex.justify-center.items-center img {
    max-height: 35px;
    margin: 0.25rem;
  } */
  
  .grid.grid-cols-2.sm\:grid-cols-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .md\:flex.md\:justify-between {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #title-nav {
    font-size: 1.5rem;
  }
  #title-tron {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  #home .px-4 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  #sponsor-list {
    padding: 1rem 0;
  }
  
  #sponsor-list marquee ul {
    gap: 1.5rem;
  }
  
  #sponsor-list marquee ul li img {
    max-height: 25px;
  }

  #title-nav {
    font-size: 1.75rem;
  }
  
  section.flex {
    padding: 0.5rem;
    margin-top: 2rem !important;
  }
  
  p.text-center {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
    gap: 1.5rem;
  }
  
  .flex.justify-center.items-center {
    flex-direction: column;
  }
  
  /* .flex.justify-center.items-center img {
    max-height: 30px;
    margin: 0.5rem;
  } */
  

  .sm\:flex.sm\:items-center.sm\:justify-between {
    flex-direction: column;
    gap: 1rem;
  }
  
  .flex.mt-4.sm\:justify-center.sm\:mt-0 {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (min-width: 1440px) {
  .max-w-screen-xl {
    max-width: 1400px;
  }
  
  .max-w-7xl {
    max-width: 1320px;
  }
}


.text-sm-2{
  font-size: 10px;
}

@media (max-height: 500px) and (orientation: landscape) {
  #home {
    min-height: 100vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  #bg-video {
    min-height: 100vh;
  }
}

@media (max-width: 768px) {
  #dropdownNavbar {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .relative .absolute {
    position: static;
    transform: none;
  }
}



nav a {
  transition: 0.25s ease;
}

ul#zalando li a,
ul#zalando li button {
  position: relative;
  text-decoration: none;
}

ul#zalando li a::after,
ul#zalando li button::after {
  transition: all 0.25s ease;
  content: '';
  position: absolute;
  width: 100%;
  bottom: 0;
  border-bottom: 2px solid orange;
  transform: scaleX(0);
  transform-origin: center;
}

ul#zalando li a:hover::after,
ul#zalando li button:hover::after {
  transform: scaleX(1);
  transform-origin: center;
}

#dropdownNavbar a {
  position: relative;
  overflow: hidden;
}

#dropdownNavbar a .hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: orange;
  transition: width 0.25s ease;
}

#dropdownNavbar a:hover .hover-line {
  width: 100%;
}

#transition {
  transition: 0.25s ease;
}

.a-white {
  color: white;
}

.playfair {
  font-family: "Playfair Display", serif;

}

.transition {
  transition: 0.25s ease;
}

#title-nav {
  font-family: "Playfair Display", serif;
}

#zalando {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
}

#title-tron {
  font-family: "Cormorant", sans-serif;
}

#bg-video {
  position: absolute;
  z-index: -1;
}

#bg-color-vid {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.250);
  height: 100vh;
  top: 0;
  width: 100%;
}

#sponsor-list {
  /* margin-top: 10px; */
}

.line {
  background-color: orange;
  width: 200px;
  height: 2px;
  margin-bottom: 10px;
  color: transparent;
}


    .language-switcher {
      position: relative;
      z-index: 1000;
    }

    .lang-btn {
      color: white;
      border-radius: 25px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .lang-dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      margin-top: 8px;
      min-width: 140px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1001;
    }

    .lang-dropdown.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-option {
      padding: 12px 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.2s ease;
      border-bottom: 1px solid #f1f1f1;
      color: #8d8d8d;
    }

    .lang-option:last-child {
      border-bottom: none;
    }


    .lang-option.active {
      color: white;
    }


    .faq-question.active svg {
  transform: rotate(180deg);
}

.faq-answer.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}