/* ******************** */
/* HEADER */
/* ******************** */
.header {
  height: 9rem;
  background-color: #fff;
  padding: 0 4.8rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.Chitwan-Jungle-Tours-Logo {
  display: block;
  height: 4.8rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  gap: 3.2rem;
  justify-content: center;
  align-items: center;
}

.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #474b2f;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #6c6f59;
}

/* MOBILE */
.btn-mobile-nav {
  background: none;
  border: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  width: 4.8rem;
  height: 4.8rem;
  color: #595d44;
}

/* MENU ONLY */
.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  /* background-color: rgba(239, 241, 228, 0.97); */
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
}

/* FIX MARGIN PROBLEM / COMMING OUT OF THE FLOW */
.sticky .section-hero,
.sticky .section-gallery-heading {
  margin-top: 8rem;
}

/* ******************** */
/* SECTION HERO */
/* ******************** */
.section-hero {
  padding: 12.8rem 0 15.2rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("../img/backgroundImage.webp");
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
}

.hero-container {
  width: 130rem;
  padding: 0 4.8rem;

  text-align: center;
}

.hero-heading {
  font-size: 5.2rem;
  color: #eff1e4;
  line-height: 1.05;
  letter-spacing: -0.5px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6.4rem;
}

.hero-description {
  font-size: 2.4rem;
  color: #e8ebd6;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 4.8rem;
}

.company-name {
  font-size: 3.6rem;
  color: #c8cf9f;
}

/* ******************** */
/* SECTION ABOUT */
/* ******************** */
.section-about {
  padding: 9.6rem 0;
}

.personal-img {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 11px;
}

.description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.description:not(:last-child) {
  margin-bottom: 6.4rem;
}

/* ******************** */
/* SECTION STORIES */
/* ******************** */
.section-stories {
  padding: 9.6rem 0;
  background-color: #e8ebd6;
}

.heading-story:link,
.heading-story:visited {
  height: 19.2rem;
  background-color: #474b2f;
  text-decoration: none;
  font-size: 3.6rem;
  color: #eff1e4;
  font-weight: 700;
  border-radius: 11px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s;
}

.heading-story:hover,
.heading-story:active {
  box-shadow: inset 0 0 0 0.4rem #474b2f;
  background-color: #e8ebd6;
  color: #474b2f;
}

/* ******************** */
/* SECTION UNLOCK */
/* ******************** */
.section-unlock {
  padding: 9.6rem 0;
}

.unlock-experience {
  grid-column: span 2;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.07);
}

.second-row--1 {
  grid-column: -6 / 4;
}

.experience-img {
  width: 100%;
  display: block;
}

.experience-text-box {
  padding: 1.6rem 4.8rem;
  text-align: center;
}

.experience-title {
  font-size: 2.4rem;
  font-weight: 700;
}

/* ******************** */
/* SECTION TESTIMONIALS */
/* ******************** */

.section-testimonial {
  background-color: #e8ebd6;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.testamonial-container {
  padding: 9.6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 55fr 45fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  padding: 1.6rem;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: rotate(2.5deg) scale(1.1);
}

/* ******************** */
/* SECTION MAP */
/* ******************** */
iframe {
  border-width: 0;
}

.hotel-map {
  display: block;
  width: 100%;
  height: 40rem;
}

/* ******************** */
/* SECTION FOOTER */
/* ******************** */
.footer {
  padding: 12.8rem 0;
  background-color: #232518;
}

.container-footer {
  padding: 0 3.2rem;
  max-width: 120rem;
  margin: 0 auto;
}

.grid-footer {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 6.4rem;
}

.grid--3-col-footer {
  grid-template-columns: repeat(3, 1fr);
}

.footer-heading {
  font-size: 1.8rem;
  color: #eff1e4;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.footer-description {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #e8ebd6;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-link:link,
.footer-link:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.6rem;
  color: #e8ebd6;
}
