@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&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");


:root {
  --primary-color: #0376c1;
  --primary-color-dark: #002954;
  --text-dark: #12110f;
  --text-light: #6b7280;
  --extra-light: #fbf7f6;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Merriweather", serif;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  columns: var(--text-dark);
  text-align: center;
}

.section__description {
  font-weight: 500;
  font-family: var(--header-font);
  color: var(--text-light);
  text-align: center;
}

/* .btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
} */

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.logo span {
  color: white;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #d0d4dd;
}


/* Nav links – pure white, no background ever */
.nav-link,
.navbar-nav .nav-link {
  color: #ffffff ;
  background: transparent ;
  padding: 0.5rem 1rem ;
  border-radius: 0 ;
  font-weight: 500;
  transition: all 0.25s ease;
}

/* Hover & active state – only color change, no pill/background */
.glass-navbar .nav-link:hover,
.glass-navbar .nav-link.active {
  color: #ffffff ;
  background: transparent ;
  opacity: 0.75; /* subtle feedback instead of a background */
}


/* Keep hamburger icon white and visible */
.glass-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Kill any conflicting styles from .nav__links */
.nav__links a,
.nav__links a:hover {
  background: transparent ;
  color: #ffffff ;
}

.header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slider wrapper */
.slider {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

/* Single Slide */
.slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;

  /* Background fix */
  background-image:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    var(--bg);

  background-size: cover;      /* FIX: Proper scaling */
  background-position: center; /* FIX: Proper focus */
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  padding-left: 5rem; /* DESKTOP only */
}

/* Text styles */
.content h1 {
  color: white;
  font-size: 4rem;
  line-height: 4.5rem;
}

.content h1 span {
  font-size: 5rem;
}

.content p {
  color: white;
  font-size: 1.8rem;
  margin-top: 1rem;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

/* Position arrows */
.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header {
    height: 70vh; /* reduce height on mobile */
  }

  .slide {
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: left;
  }

  .content h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .content h1 span {
    font-size: 3rem;
  }

  .content p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .header {
    height: 60vh; /* smaller screens */
  }

  .content h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .content h1 span {
    font-size: 2.5rem;
  }

  .content p {
    font-size: 1.2rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .prev-arrow { left: 15px; }
  .next-arrow { right: 15px; }
}


.feature__container {
  display: grid;
  gap: 1rem;
}

.feature__card {
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--white);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.feature__card img {
  max-width: 70px;
}

.feature__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature__card p {
  color: var(--text-light);
  line-height: 1.5rem;
}

/*----------------- Destination CSS ------------------  */
.destination {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.destination__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.destination__card {
  position: relative;
  isolation: isolate;
}

  .destination__card img{
    border-radius: 10px;
  }

.destination__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
  border-radius: 10px;
}

.destination__card:hover .destination__content {
  opacity: 1;
}

@media (min-width: 540px)  {
  .destination__card img{
    border-radius: 10px;
    margin-bottom: 2rem;
  }

  .destination__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
  border-radius: 10px;
  }
}
/*----------------- end Destination CSS ------------------  */
.discount {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.discount__container {
  text-align: center;
}

.discount__container h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 500;
  font-family: var(--header-font);
  color: var(--white);
}

.discount__container h2 span {
  font-size: 2rem;
}


/* --------------- Package CSS ------------------------ */
.package__grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.package__card {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  background-color: white;
}
.package__card img{
  border-radius: 10px 10px 0 0;
}

.package__card__details {
  padding: 1rem;
}

.package__card__details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.package__card__details p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.5rem;
}

.package__card__details > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.package__card__details h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--header-font);
}
/* --------------- End Package CSS ------------------------ */
.swiper {
  width: 100%;
  padding-block: 4rem;
}

.swiper-slide {
  max-width: calc((var(--max-width) / 3) - 1.5rem);
}

.client__card {
  padding: 2rem 1rem;
  text-align: center;
  background-color: var(--white);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.05);
}

.client__card img {
  max-width: 80px;
  margin-inline: auto;
  margin-bottom: 1rem;
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.client__card span {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.client__card p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.5rem;
}

.client__card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.client__card h5 {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--header-font);
  color: var(--text-light);
}

.subscribe {
  padding-block: 5rem;
  background-color: var(--primary-color-dark);
}

.subscribe__container {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.subscribe__container h2 {
  font-size: 2.75rem;
  font-weight: 200;
  font-family: var(--header-font);
  color: var(--white);
}

.subscribe__container p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 200;
  font-family: var(--header-font);
  line-height: 1.75rem;
  color: var(--white);
}

.subscribe__container form {
  width: 100%;
  max-width: 450px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  background-color: var(--white);
}

.subscribe__container input {
  width: 100%;
  padding-inline: 1rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--text-dark);
}

footer{
  background-color: #12110f;
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  margin-block: 1rem;
  font-family: var(--header-font);
  color: white;
  line-height: 1.5rem;
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  font-size: 1.25rem;
  color: white;
}

.footer__socials a:hover {
  color: white;
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-family: var(--header-font);
  color: white;
}

.footer__links a:hover {
  color: white;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: white;
  text-align: center;
}

@media (min-width: 540px)  {
    
  .feature__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination__card {
    width: 100%;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
.navbar-glass {
    background: rgba(0, 0, 0, 0.25) ;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) ;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 576px) {
  .package__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package__card {
    width: 100%;
  }
  .package-see-all-btn {
    grid-column: 1 / -1;  
    display: flex;        
    justify-content: center; 
    margin-left: 2rem;      
    margin-right: 2rem;     
  }
.navbar-glass {
    background: rgba(0, 0, 0, 0.25) ;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) ;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

}

@media (min-width: 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  /* Completely invisible navbar – only text & hamburger remain */
.glass-navbar {
  background: transparent ;
  backdrop-filter: none ;
  -webkit-backdrop-filter: none ;
  border: none ;
  border-bottom: none ;
  box-shadow: none ;
  padding: 1rem 0; /* keep some vertical spacing if you want */
}

/* Nav links – pure white, no background ever */
.glass-navbar .nav-link,
.navbar-nav .nav-link {
  color: #ffffff ;
  background: transparent ;
  padding: 0.5rem 1rem ;
  border-radius: 0 ;
  font-weight: 500;
  transition: all 0.25s ease;
}

  .nav__header {
    padding: 0;
    background-color: transparent;
    border: none;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    gap: 3rem;
    background-color: transparent;
    transform: none;
    border: none;
  }

  .feature__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .package__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .subscribe__container {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .subscribe__container form {
    margin-inline-start: unset;
  }

  .subscribe__container p {
    max-width: 400px;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
   .glass-navbar {
  background: transparent ;
  backdrop-filter: none ;
  -webkit-backdrop-filter: none ;
  border: none ;
  border-bottom: none ;
  box-shadow: none ;
  padding: 1rem 0; 
}
    .package__grid {
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
  }

  .package_section_description{
    text-align: left;
  }

  .destination__grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .destination__content{
    height: 350px;
  }

  .destination__card{
    border-radius: 10px;
  }

  .destination__card img{
    border-radius: 10px;
    height: 350px;
    width: auto;
  }
}
