@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #2887ff;
  --danger-color: #ff4828;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
  --accent-color: #10bc69;
  --accent-color-dark: #097a43;
  --default-color: #444444;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.destination__card span {
  color: var(--primary-color-dark);
  margin-bottom: 20px;
}
.destination__card p {
  padding-top: 10px;
}
.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(12, 105, 244, 0.6);
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(12, 105, 244, 0.7);
  transition: transform 0.5s;
  z-index: -1;
}

#menu-btn i {
  color: #fff;
  font-size: 24px;
}

#home {
  padding-top: 150px;
}

.nav__logo {
  display: flex;
  /* background-color: rgba(132, 141, 148, 0.9); */
  padding: 5px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}

.nav__logo p {
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links li a {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--text-dark);
}

.nav__btns {
  display: none;
}

.sunday-calendar-view {
  margin: 2rem 0;
  padding: 1rem 0;
}

.sunday-calendar-view h2 {
  margin-bottom: 5px;
  padding-left: 20px;
  padding-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--danger-color);
  text-align: start;
}

.calendar-list {
  border-left: 3px solid var(--primary-color, #2a4d69);
  margin-left: 1.5rem;
  padding-left: 1.5rem;
}

.calendar-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  position: relative;
}

.calendar-time {
  min-width: 90px;
  font-weight: bold;
  color: var(--primary-color, #2a4d69);
  font-size: 1.05rem;
  margin-right: 1.2rem;
  text-align: left;
  position: relative;
}

.calendar-event {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 0rem 1.2rem 0.7rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 1rem;
  color: #222;
  flex: 1;
}

.calendar-note {
  display: block;
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.blog-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.blog-card-body {
  padding: 1.2rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-title {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: var(--primary-color, #2a4d69);
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  white-space: normal;
}

.blog-date {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.blog-text {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0.8rem;
}

.blog-link {
  color: var(--primary-color, #2a4d69);
  text-decoration: underline;
  font-weight: 500;
  margin-top: auto;
}

.blog-card-img {
  width: auto;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}


.pagination-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
}

.pagination-controls button {
  background: #eee;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.pagination-controls button.active {
  background: var(--primary-color, #2a4d69);
  color: #fff;
  font-weight: bold;
}

 

.header__content{
  padding: 2rem 1rem;
}


.header__content p{
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--extra-light);
  text-align: center;
}
.header__content h1{
  margin-bottom: 1rem;
  font-size: 2.0rem;
  font-weight: 600;
  color: var(--extra-light);
  text-align: center;
}

.header__image{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 98%;
}
.header__image img{
  top: 2rem;
  left: 0;
  border-radius: 50%;
  height: 150px;
  width: 150px;
}

.header__btns{
    display:flex ;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    gap: 1rem;
}

.btn-get-started {
  color: var(--extra-light);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--extra-light);
  font-weight: 600;
  border: 1px solid var(--extra-light);
  border-radius: 50px;
  padding: 10px 28px 12px 28px;
}

.btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.btn-watch-video:hover {
 color: var(--extra-light);
  background: color-mix(in srgb, var(--primary-color), transparent 15%);
}
.btn-watch-video:hover i {
  color: var(--extra-light);
}

.btn-get-started:hover {
  color: var(--extra-light);
  background: color-mix(in srgb, var(--primary-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.8);
}

iframe {
  max-width: 90%;
  width: 90%;
  height: 300px;
}

.landing {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;
  background: rgba(0,0,0, .9); 
}

.landing::before {
  content: "";
  position: absolute; /* changed from fixed */
  height: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("img/landing.jpeg") center center;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.destination__container :is(.section__header, .section__description){
  text-align: left;
  margin-inline-start: unset;
}

  .destination__grid{
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;

}

.destination__card img {

  height: 250px;
  border-radius: 1.5rem;
  object-fit: fill;
} 


.destination__card__details{
  padding:1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;


}

.journey__grid{
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card{
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

  .journey__card__content span{
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 100%;
  }

  .journey__card__content h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color:var(--white);
  }

  .journey__card__bg p{
   color: var(--extra-light);
  }

  .showcase__container{
    display: grid;
    gap: 2rem;
    overflow: hidden;
  }
  
  .showcase__image img{
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }

  .showcase__content h4{
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .showcase__content p{
    margin-bottom: 1rem;
    color: var(--text-light);
  }

  /*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.people {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center; 
}
.person {
  padding: 20px;
}
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}
.team .member .img-fluid {
  max-width: 200px;
  border-radius: 50%;
  height: 200px;
  display: block;
}

.continue-link {
  text-decoration: underline;
  color: var(--primary-color);
}
.address-direction-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.address-direction-box .btn {
  background: var(--primary-color, #2a4d69);
  color: #fff;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.team .member .member-info {
  background-color: var(--extra-light);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
}




  .discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 250px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.discover__card p {
  text-align: left;
}

.destination__card p {
  color: var(--text-light);
}

footer {
  background-color: var(--extra-light);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  background-color: var(--primary-color-dark);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}

@media(width > 768px) {
    nav {
      position: static;
      padding: 2rem 1rem;
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .nav__header{
      flex: 1;
      padding: 0;
      background-color: transparent;
    }
    #home {
      padding-top: 10px;
    }
    .nav__logo .logo{
      color: var(--text-dark);
    }

    .nav__logo p {
      text-align: left;
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
    }

    .nav__menu__btn{
      display: none;
    }
.nav__links{
  position: static;
  width: fit-content;
  padding: 0;
  flex-direction: row;
  background-color: transparent;
  transform: none !important;
}

.nav__links a{
  color: var(--text-dark);
}

.nav__links a:hover{
  color: var(--danger-color);
}

.nav__links li:last-child{
  display: none;
}

.nav__btns{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__btns .language-selector {
  position: relative;
  right: 20px; /* Adjust the distance from the right */
  display: flex;
  gap: 10px;
  align-items: end;
}

.nav__btns .language-selector a {
  text-decoration: none;
}

.lang-icon {
  width: 34px;
  height: 34px;
  transition: transform 0.2s ease;
}

.language-selector a:last-child .lang-icon {
  width: 30px;
  height: 30px;
}

.lang-icon:hover {
  transform: scale(1.1);
}

.landing {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background: rgba(0,0,0,1); 
}

.landing::before {
  content: "";
  position: absolute; /* changed from fixed */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("img/landing.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.header__container{
  /* display: grid; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-get-started {
  color: var(--extra-light);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--extra-light);
  font-weight: 600;
  border: 1px solid var(--extra-light);
  border-radius: 50px;
  padding: 10px 28px 12px 28px;
}

iframe {
  max-width: 90%;
  width: 90%;
  height: 70vh;
}


.btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.btn-watch-video:hover {
 color: var(--extra-light);
  background: color-mix(in srgb, var(--primary-color), transparent 15%);
}
.btn-watch-video:hover i {
  color: var(--extra-light);
}

.btn-get-started:hover {
  color: var(--extra-light);
  background: color-mix(in srgb, var(--primary-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.8);
}

.people {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
header{
  margin-top: 0;
}
.header__container{
  padding-top: 0;
  grid-template-columns:
  minmax(0 ,1fr)
repeat(5, minmax(0, calc(var(--max-width)/ 5)))
minmax(0, 1fr) ;
}
.header__content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header__content p{
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--extra-light);
  text-align: center;
}
.header__content h1{
  margin-bottom: 1rem;
  font-size: 3.0rem;
  font-weight: 600;
  color: var(--extra-light);
  line-height: 5.5rem;
  text-align: center;
}

.header__content :is(p, h1){
  text-align: center;
}
.header__btns{
  justify-content: flex-start;
}
.header__image{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 98%;
}
.header__image img{
  top: 2rem;
  left: 0;
  border-radius: 50%;
  height: 250px;
  width: 250px;
}
.destination__grid{
  grid-template-columns: repeat(3, 1fr);
}
.journey__grid{
  grid-template-columns: repeat(3, 1fr);
}
.showcase__container{
  grid-template-columns: repeat(3, 1fr);
}

.showcase__content{
  grid-column: 2/4;
} 

.banner__container{
  grid-template-columns: repeat(3, 1fr);
}
.discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }

}
  
  @media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}



