.hero {
  background-color: var(--blue-color);
  width: 100vw;
  height:100vh;
  z-index: 9999;
  position: relative;
}

.hero-arrow {
  position: absolute;
  bottom: 30px;
  left: 50vw;
  font-size: 3rem;
  color: #fff;
  animation: arrow 1s ease-in-out infinite;
}

.hero-wrapper {
  display: grid;
  grid-template-rows: 10% 70% 19%;
  gap:30px;
  padding: 2% 4vw;
  width: 100vw;
}

.hero-nav {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-menu {
  list-style: none;
  justify-content: center;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
}

.nav-menu li {
  position: relative;
  border:1px solid;
  padding: 5px 10px;
  border-color: transparent;
  transition: border 0.7s ease-in-out;
}

.nav-menu li:hover {
  border-bottom:1px solid #fff;
}

.nav-menu li a {
  color:#fff;
}

.nav-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--white-color);
  color:var(--black-color);
  font-weight: 600;
  font-size: 0.8rem;
  transition: background 0.6s ease-in-out;
}

.nav-button:hover {
  background: var(--brown-color);
  color:#fff;
}

.hero-intro {
  margin-top: 5vh;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 20px;
}

.slogan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white-color);
  gap: 20px;
}

.slogan h2 {
  font-size: 4rem;
  font-weight: 800;
}

.slogan p {
  font-size: 1.5rem;
  width: 80%;
  text-align: justify;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-button {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(5px);
  color: var(--white-color);
  border-radius: 10px;
  padding: 15px 50px;
  transition: background 0.5s ease-in-out;
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-button:hover {
  background: var(--brown-color);
  color:var(--white-color)
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 20px;
}

.swiper {
  width: 590px;
  height: 300px;
  border-radius: 10px;
}

.swiper img {
  border-radius: 20px;
  width: 600px;
}

.swiper-slide {
  object-fit: cover;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  width: 66%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  margin: 0 auto;
  gap: 10px;
}

.stat {
  display: flex;
  flex-direction: column-reverse;
  gap:5px;
  align-items: center;
  background: var(--white-color);
  border-radius: 15px;
  padding:10px 0 10px 0;
}

.stat span {
  color: rgba(0,0,0,0.4);
}

.stat h3 {
  font-weight: 700;
  margin: 0;
  color: var(--blue-color);
}

.light-blue {
  background:var(--light-blue-color);
}

.landing-wrapper {
    width: 90%;
    margin: 10vw auto;
}

/* Booking Section */
.inf-section {
  display: grid;
  align-items: center;
  gap: 40px;
  margin: 10% auto;
}

.inf-section.bookings {
  grid-template-columns: 40% 60%;
}

.inf-section.blog {
  grid-template-columns: 60% 40%;
}

.inf-image {
  border-radius: 10px;
  opacity: 0.8;
  transition: opacity 1s ease;
}

.inf-image:hover {
  opacity: 1;
}

.inf-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: justify;
}

.inf-text a {
  width: fit-content;
  text-align: center;
}
/* Posts Section */
.posts-section {
  width: 118vw;
  margin: 50px 0;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  margin-right: -18vw;
  padding-right: 18vw;
}

.posts-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 10px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding-left: 30vw;
}

.post-box {
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.6s;
  padding:0 0 20px 0;
  color: var(--blue-color);
  height: 250px;
}

.post-box h3 {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.post-box:hover {
  transform: translateY(-5px);
  color:var(--black-color);
}

.post-box:hover img {
  object-position: center;
}

.post-box img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top;
  transition: all 0.6s;
  border-radius: 10px 10px 0px 0px;
}

.post-box h3 {
  font-size: 16px;
}

.popular-posts {
  background: var(--light-blue-color);
}

.recent-posts {
  background-color: var(--brown-color);
}

/* FAQ Section */
.faq-section {
  width: 70%;
  margin: 10vw auto;
}

.faq-section h2 {
  text-align: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap:10px;
}
.accordion-btn {
  width: 100%;
  text-align: right;
  padding: 15px;
  font-size: 16px;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  outline: none;
  border-radius: 10px;
  background: var(--blue-color);
  transition: background 0.5s ease;
}
.accordion-btn:hover {
  background: var(--light-blue-color);
}
.accordion-content {
  transition: all 0.5s ease;
  display: none;
  opacity: 0;
  padding: 15px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.accordion-item.active .accordion-content {
  display: block;
  opacity: 1;
}

.accordion-item.active .accordion-btn {
  background-color: var(--black-color);
}

@keyframes arrow {
  0%   { bottom: 30px; }
  50%  { bottom: 40px; }
  100% { bottom: 30px; }
}

@media (max-width: 768px) {
  .hero-intro {
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  .swiper {
    width: 300px;
    height: 200px;
  }

  .hero-nav {
    display: none;
  }

  .hero-stats {
    width: 100%;
  }

  .hero-wrapper {
    margin: 0 auto;
    width: 92vw;
  }

  .hero {
    height: 170vh;
  }

  .inf-section {
    display: flex;
    flex-direction: column;
    padding: 4vw;
  }

  .inf-section.blog {
    flex-direction: column-reverse;
  }

  .posts-grid {
    overflow-x: auto;
    padding-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-button {
    width: 100%;
  }

  .hero-arrow {
    left: 42vw;
  }
}