.policy,
.success {
  padding-block: 100px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  color: #353535;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #353535;
}

.policy__text h2 {
  text-align: left;
  font-size: 21px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 22px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-inline: 20px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Floating Animation */
@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-animation {
  animation: floating 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.floating-animation:nth-child(2n) {
  animation-delay: 1s;
}

.floating-animation:nth-child(3n) {
  animation-delay: 1.5s;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav__logo h2 {
  font-weight: 600;
  font-size: 1.5rem;
  color: #2c5530;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #2c5530;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: #2c5530;
  transition: 0.3s;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  background:
    url("../img/hero-bg.png") center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero__description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* Sections */
.section__title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #2c5530;
}

.section__subtitle {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #666;
  line-height: 1.8;
}

.section__description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: #666;
  line-height: 1.8;
}

/* Rooms Section */
.rooms {
  padding: 6rem 0;
  background: #f8faf8;
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.room__card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.room__card:hover {
  transform: translateY(-5px);
}

.room__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room__content {
  padding: 2rem;
}

.room__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c5530;
}

.room__description {
  color: #666;
  line-height: 1.6;
}

/* Experiences Section */
.experiences {
  padding: 6rem 0;
}

.experiences__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.experience__item {
  text-align: center;
}

.experience__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #e8f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience__icon img {
  width: 40px;
  height: 40px;
}

.experience__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c5530;
}

.experience__description {
  color: #666;
  line-height: 1.6;
}

/* Nature Beauty Section */
.nature-beauty {
  padding: 6rem 0;
  background: #f8faf8;
}

.beauty__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.beauty__card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.beauty__card:hover {
  transform: translateY(-5px);
}

.beauty__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.beauty__content {
  padding: 2rem;
}

.beauty__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c5530;
}

.beauty__description {
  color: #666;
  line-height: 1.6;
}

/* Food Section */
.food {
  padding: 6rem 0;
  background: #2c3e50;
  color: white;
}

.food .section__title {
  color: white;
}

.food .section__subtitle {
  color: #bdc3c7;
}

.food__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.food__card {
  text-align: center;
}

.food__image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.food__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.food__description {
  color: #bdc3c7;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: #f8faf8;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial__card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial__author {
  font-weight: 600;
  color: #2c5530;
}

/* Perfect Escape Section */
.perfect-escape {
  padding: 6rem 0;
  background: #34495e;
  color: white;
}

.perfect-escape .section__title {
  color: white;
}

.perfect-escape .section__description {
  color: #bdc3c7;
}

.escape__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature__item {
  text-align: center;
}

.feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.feature__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature__description {
  color: #bdc3c7;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
}

.contact__form {
  max-width: 600px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 2rem;
}

.form__input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form__input:focus {
  outline: none;
  border-color: #2c5530;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__button {
  width: 100%;
  padding: 1rem 2rem;
  background: #2c5530;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__button:hover {
  background: #1e3a22;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
}

.footer__contact .contact__item {
  margin-bottom: 1rem;
}

.footer__contact a {
  color: #bdc3c7;
  text-decoration: none;
}

.footer__contact a:hover {
  color: white;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #888;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}

.cookie-popup.active {
  display: block;
}

.cookie-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.cookie-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.cookie-popup__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-popup__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.cookie-popup__text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cookie-popup__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-popup__button {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.cookie-popup__button--accept {
  background: #2c5530;
  color: white;
}

.cookie-popup__button--accept:hover {
  background: #1e3a22;
}

.cookie-popup__button--reject {
  background: #e0e0e0;
  color: #666;
}

.cookie-popup__button--reject:hover {
  background: #d0d0d0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .rooms__grid,
  .beauty__grid {
    grid-template-columns: 1fr;
  }

  .experiences__grid,
  .escape__features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .food__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .cookie-popup__buttons {
    flex-direction: column;
  }

  .cookie-popup__button {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav__container {
    padding: 0 15px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .room__content,
  .beauty__content {
    padding: 1.5rem;
  }

  .testimonial__card {
    padding: 2rem;
  }

  .cookie-popup__content {
    padding: 2rem;
    width: 95%;
  }
}
