/* =========================
   PAGE: HOME / INDEX
========================= */

/* =========================
   HERO BANNER / CAROUSEL
========================= */

.hero-banner {
  width: 100%;
  margin-top: 90px;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  position: relative;
  opacity: 1;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 30px;
}

.button-more {
  position: absolute;
  bottom: 120px;
  left: 200px;
}

.btn-more {
  padding: 18px 40px;

  background: #79B4A9;
  color: #ffffff;

  font-size: 40px;
}

.btn-more:hover {
  background: #676F54;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  max-width: 1200px;
  min-height: 100vh;

  margin: 0 auto;
  padding: 30px 10px 200px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero-text h1 {
  margin-bottom: 25px;

  font-size: 72px;
  line-height: 1.1;
}

.hero-text p {
  margin-bottom: 35px;

  color: #555555;

  font-size: 20px;
  line-height: 1.7;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 800px;

  border-radius: 24px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  animation: floating 4s ease-in-out infinite;
}

/* =========================
   CARDS SECTION
========================= */

.cards-section {
  max-width: 1200px;

  margin: 80px auto;
  padding: 40px;

  text-align: center;
}

.cards-section h2 {
  position: relative;
  top: -200px;

  margin-bottom: 40px;

  color: #676F54;

  font-size: 65px;
}

.cards-container,
.cards-container2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.cards-container2 {
  padding: 25px;
}

.card {
  position: relative;
  top: -150px;

  width: 300px;
  padding: 30px;

  background: #ffffff;

  border-radius: 25px;

  text-align: left;

  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.card:hover {
  background: #D7F2BA;
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.10);
}

.card h3 {
  margin-bottom: 15px;
  color: #676F54;
}

.card p {
  line-height: 1.5;
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 10px 40px;

  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 80px;
}

.faq-image {
  width: 350px;
}

.faq-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  border-radius: 30px;
}

.faq-container {
  width: 550px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-container h2 {
  margin-bottom: 10px;

  color: #2b2b2b;

  font-size: 32px;
}

.faq-item {
  padding: 25px;

  background: #D7F2BA;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #676F54;
}

.faq-item p {
  color: #2b2b2b;
  line-height: 1.5;
}

/* =========================
   ABOUT SECTION
========================= */

.about {
  padding: 80px 40px;

  background: #D7F2BA;

  text-align: center;
}

.about h2 {
  margin-bottom: 20px;

  color: #676F54;

  font-size: 36px;
}

.about p {
  max-width: 700px;

  margin: auto;

  font-size: 20px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .hero-banner {
    margin-top: 80px;
  }

  .button-more {
    left: 60px;
    bottom: 55px;
  }

  .btn-more {
    padding: 12px 24px;
    font-size: 22px;
  }

  .hero {
    gap: 45px;
    padding: 50px 24px 100px;
  }

  .hero-text h1 {
    font-size: 52px;
  }

  .hero-image img {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    margin-top: 90px;
    padding: 0 14px;
  }

  .slide img {
    border-radius: 20px;
  }

  .button-more {
    position: absolute;
    left: 24px;
    bottom: 24px;
  }

  .btn-more {
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 999px;
  }

  .hero {
    min-height: auto;

    flex-direction: column;
    gap: 28px;

    padding: 45px 18px 70px;

    text-align: center;
  }

  .hero-image {
    order: 1;
  }

  .hero-text {
    order: 2;
  }

  .hero-text h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-image img {
    max-width: 320px;
  }

  .cards-section {
    margin: 40px auto;
    padding: 20px 16px;
  }

  .cards-section h2 {
    position: static;

    margin-bottom: 28px;

    font-size: 34px;
    line-height: 1.2;
  }

  .cards-container,
  .cards-container2 {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .cards-container2 {
    padding: 18px 0 0;
  }

  .card {
    position: static;

    width: 100%;
    max-width: 420px;

    padding: 24px;

    border-radius: 22px;
  }

  .faq-section {
    flex-direction: column;
    gap: 28px;

    padding: 40px 18px;
  }

  .faq-image {
    width: 100%;
    max-width: 340px;

    margin: 0 auto;
  }

  .faq-container {
    width: 100%;
  }

  .faq-container h2 {
    text-align: center;
    font-size: 30px;
  }

  .faq-item {
    padding: 22px;
  }

  .about {
    padding: 60px 20px;
  }

  .about h2 {
    font-size: 30px;
  }

  .about p {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    padding: 0 10px;
  }

  .button-more {
    left: 18px;
    bottom: 18px;
  }

  .btn-more {
    padding: 9px 16px;
    font-size: 14px;
  }

  .hero {
    padding: 36px 16px 55px;
  }

  .hero-text h1 {
    font-size: 31px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-image img {
    max-width: 260px;
  }

  .cards-section h2 {
    font-size: 28px;
  }

  .card {
    padding: 22px 18px;
  }

  .faq-container h2 {
    font-size: 26px;
  }

  .faq-item {
    padding: 20px;
  }

  .about h2 {
    font-size: 26px;
  }

  .about p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 50px 16px;
  }

  .newsletter-container {
    width: 100%;

    flex-direction: column;
    align-items: stretch;
    gap: 22px;

    padding: 32px 24px;

    border-radius: 28px;
    text-align: center;
  }

  .newsletter-text h3 {
    font-size: 30px;
    line-height: 1.15;
  }

  .newsletter-text p {
    font-size: 15px;
  }

  .newsletter-form {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input {
    width: 100%;
    min-width: 0;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter-container {
    padding: 28px 20px;
  }

  .newsletter-text h3 {
    font-size: 26px;
  }
}

.hamburger-btn {
  display: none;

  border: none;
  background: transparent;

  font-size: 30px;
  color: #676F54;

  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
  }

  .hamburger-btn {
    display: block;
  }

  .mobile-menu {
    display: none;

    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;

    padding: 18px;

    background: #ffffff;

    border: 1px solid rgba(103, 111, 84, 0.12);
    border-radius: 22px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

    z-index: 999;
  }

  .mobile-menu.show {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu .menu-buttons,
  .mobile-menu .nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-menu a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .menu-buttons,
  .nav-buttons {
    display: none;
  }

  .mobile-menu.show .menu-buttons,
  .mobile-menu.show .nav-buttons {
    display: flex;
  }

}