@import url("variables.css");
@import url("fonts.css");

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--color-text);
}

i {
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Boska", serif;
}

h2 {
  font-size: 2.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: darkgoldenrod; /* Fallback color */
  overflow: hidden; /* Ensure image stays within bounds */
  justify-content: center;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mimics background-size: cover */
  object-position: center center; /* Mimics background-position: center center */
  z-index: 0; /* Behind overlay and content */
  pointer-events: none; /* Make it non-interactive */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-content {
  margin: 0 auto;
  transform: translateY(-50%);
  padding: 1rem;
  color: white;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
  position: absolute;
}

.hero h1 {
  font-family: "Boska", serif;
  font-size: 3.25rem;
  line-height: 62px;
  font-weight: 500;
  margin-bottom: 1.5rem;

  i {
    font-weight: 300;
  }
}

.hero p {
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  padding: 3rem 0 0 0;
  background-color: #fff;
}

.about-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.decorative-icon {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: "Boska", serif;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-heading .normal {
  font-weight: 400;
}

.section-heading .italic,
.feature-heading .italic {
  font-style: italic;
  font-weight: 300;
}

.section-description {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  margin: 0 auto;
}

.spa-features {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
  overflow: hidden;
}

.feature-heading {
  font-family: "Boska", serif;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 1rem;

  &.text-right {
    text-align: center;
    font-size: 2rem;
  }
}

.text-right {
  text-align: right;
}

.feature-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 300px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e0d5;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button i {
  color: var(--color-primary);
}

.small-image-wrapper {
  display: none;
  aspect-ratio: 1.4833333333333334 / 1;
  border-radius: 300px;
  overflow: hidden;
  margin-left: auto;
}

.small-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  max-width: 100%;
  margin-top: 1.5rem;
}

.feature-description {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.5rem;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s forwards;
}

.stat-number {
  font-family: "Boska", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.about {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: var(--container-padding);
  background: var(--color-background);
  padding-block: 80px;

  img {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 300px;
    aspect-ratio: 1.5/1;
    object-position: bottom;
    flex-shrink: 0;
    min-width: 300px;
  }
}

.about-container {
  max-width: 1200px;
  gap: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.about-decorator {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  background: var(--color-background);
  border-radius: 9999px;
  z-index: -1;
}

/* Scrolling Banner */
.scrolling-banner {
  background: var(--color-primary);
  color: white;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.scrolling-content {
  display: flex;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  width: fit-content;
}

.banner-item {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  flex-shrink: 0;
}

.banner-text {
  font-family: "Boska", serif;
  font-style: italic;
  font-size: 1rem;
  margin-right: 1rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Only move half way to create seamless loop */
  }
}

/* Experts Section */
.experts {
  background-color: var(--color-background);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.experts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--color-secondary) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 5C35 5 30 10 30 15C30 20 35 25 40 25C45 25 50 20 50 15C50 10 45 5 40 5zM15 30C10 30 5 35 5 40C5 45 10 50 15 50C20 50 25 45 25 40C25 35 20 30 15 30zM65 30C60 30 55 35 55 40C55 45 60 50 65 50C70 50 75 45 75 40C75 35 70 30 65 30zM40 55C35 55 30 60 30 65C30 70 35 75 40 75C45 75 50 70 50 65C50 60 45 55 40 55z' fill='%23c4ac9922'/%3E%3C/svg%3E");
  background-size: 30px 30px, 80px 80px;
  background-position: center center, 20px 20px;
  background-repeat: repeat, repeat;
  opacity: 0.1;
  z-index: 0;
}

.experts::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M150 30c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm-50 30c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm100 0c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm-125 30c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm75 0c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm75 0c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm-125 50c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm75 0c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm75 0c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm-100 30c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm50 0c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20z' fill='%23c4ac9920'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.4;
  animation: pulse 15s ease-in-out infinite;
}

.experts .container::before,
.experts .container::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 10C52 10 45 17 45 25C45 33 52 40 60 40C68 40 75 33 75 25C75 17 68 10 60 10zM25 45C17 45 10 52 10 60C10 68 17 75 25 75C33 75 40 68 40 60C40 52 33 45 25 45zM95 45C87 45 80 52 80 60C80 68 87 75 95 75C103 75 110 68 110 60C110 52 103 45 95 45zM60 80C52 80 45 87 45 95C45 103 52 110 60 110C68 110 75 103 75 95C75 87 68 80 60 80z' fill='%23c4ac9930'/%3E%3C/svg%3E");
  background-size: contain;
  z-index: 0;
  opacity: 0.7;
  animation: float 8s ease-in-out infinite;
}

.experts .container::before {
  top: 50px;
  left: 20px;
  transform: rotate(15deg);
  animation-delay: 0s;
}

.experts .container::after {
  bottom: 50px;
  right: 20px;
  transform: rotate(-15deg);
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(15deg);
  }

  50% {
    transform: translateY(-10px) rotate(15deg);
  }

  100% {
    transform: translateY(0) rotate(15deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1.05);
  }

  100% {
    opacity: 0.3;
    transform: translateY(-50%) scale(1);
  }
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.decorative-line {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-secondary),
    transparent
  );
  width: 80px;
  margin: 0 1.5rem;
}

.italic {
  font-style: italic;
  font-weight: 300;
}

.experts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.expert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  padding: 3rem 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(91, 66, 51, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.expert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--color-secondary),
    var(--color-primary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(91, 66, 51, 0.1);
}

.expert-card:hover::before {
  opacity: 1;
}

.expert-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: transform 0.7s ease;
  opacity: 0;
}

.expert-card:hover::after {
  transform: rotate(30deg) translate(0, 0);
  opacity: 1;
  animation: shine 1.5s forwards;
}

@keyframes shine {
  0% {
    transform: rotate(30deg) translate(-200%, -200%);
    opacity: 0.5;
  }

  100% {
    transform: rotate(30deg) translate(200%, 200%);
    opacity: 0;
  }
}

.expert-image-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.expert-image-container {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(91, 66, 51, 0.15);
  border: 5px solid white;
  transition: transform 0.3s ease;
}

.expert-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.expert-card:hover .expert-image {
  transform: scale(1.08);
}

.expert-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.expert-decorative-circle {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px dashed var(--color-secondary);
  border-radius: 50%;
  z-index: 1;
  animation: rotate 30s linear infinite;
}

.expert-decorative-circle::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dotted var(--color-primary);
  border-radius: 50%;
  opacity: 0.5;
  animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-reverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.expert-name {
  font-family: "Boska", serif;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.expert-name::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.expert-card:hover .expert-name::after {
  width: 70%;
}

.expert-role {
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.expert-separator {
  width: 50px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-secondary),
    transparent
  );
  margin: 0 auto 1.25rem;
}

.expert-description {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 95%;
  margin: 0 auto;
  text-align: center;
  font-weight: 300;
}

/* Testimonials Section */
.testimonials {
  background-color: white;
  position: relative;
  overflow: hidden;
  padding: 0 var(--container-padding);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-block: 80px;
}

.testimonials-title {
  h2 {
    font-family: "Boska", serif;
    font-weight: 500;
    text-align: center;

    i {
      font-weight: 300;
    }
  }
}

.fa-quote-left {
  font-size: 2.25rem;
  margin-bottom: 30px;
}

.banner-sign {
  margin-inline: 80px;
  font-size: 1.5rem;
}

.testimonial-slider {
  position: relative;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
}

.testimonial.active {
  display: flex;
  opacity: 1;
}

.testimonial-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  flex-grow: 1;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: "Lato", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.testimonial-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.testimonial-nav button {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--color-text);
}

.testimonial-nav button:hover {
  background: #f5f5f5;
}

.testimonial-nav i {
  font-size: 1.25rem;
}

.about-content h2 {
  text-align: center;
}

.main-description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Booking CTA Section */
.booking-cta {
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
}

.booking-background {
  position: absolute;
  inset: 0;
  background-image: url("../assets/lovable-uploads/55bcf3bd-90ab-4bcc-992b-2730e2901267.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
}

.booking-content {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.booking-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 3rem 2rem;
  border-radius: 0.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s forwards;
}

/* Services Section */
.services {
  padding-bottom: 6rem;
  background-color: white;
}

.services-subtitle {
  font-family: "Boska", serif;
  font-size: 2rem;
  color: var(--color-primary);
  margin: 3rem 0 2rem;
  text-align: center;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(91, 66, 51, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(91, 66, 51, 0.1);
}

.service-card h4 {
  font-family: "Boska", serif;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text-light);
  margin: 0;
}

.section-title {
  position: relative;
  font-family: "Boska", serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
  text-underline-offset: 0.5rem;
  line-height: 1.2;
}

.description {
  font-size: 1.125rem;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Elevate Section */
.elevate {
  padding-bottom: 6rem;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.elevate-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.elevate-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elevate h2 {
  font-family: "Boska", serif;
  margin-bottom: 1.5rem;
}

.elevate-description {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.elevate-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.elevate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(91, 66, 51, 0.1);
}

.elevate-icon {
  width: 4rem;
  height: 4rem;
  background: #f5f0e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.elevate-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.elevate-item h3 {
  font-family: "Boska", serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.elevate-item p {
  color: var(--color-text-light);
}

.elevate-button {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.elevate-button:hover {
  background: var(--color-secondary);
}

/* Spa Experiences Section */
.spa-experiences {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.95);

  h2 {
    font-weight: 500;
    text-align: center;
    font-size: 2.5rem;
    line-height: 48px;
    margin-bottom: 40px;
    font-family: "Boska", serif;

    i {
      font-weight: 300;
      font-style: italic;
    }
  }
}

.experiences-grid {
  display: grid;
  padding-inline: 10px;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-item {
  text-align: center;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  background-color: var(--color-background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.experience-icon {
  font-size: 3rem;
  color: var(--color-primary);
}

.experience-title {
  font-size: 2rem;
  line-height: 38.4px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.experience-description {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 90px 30px;
  background: url("../assets/bigCTAbackground.webp") center/cover no-repeat;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.cta-container {
  position: relative;
  margin: auto;
  padding: 60px 2rem;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  outline: 1px solid white;
  outline-offset: 10px;
  transition: transform var(--animation-duration-medium)
      var(--animation-timing-ease-out),
    box-shadow var(--animation-duration-medium) var(--animation-timing-ease-out);
}

.cta-title {
  font-family: "Boska", serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-primary);
  line-height: 48px;

  i {
    font-weight: 300;
  }
}

.cta-text {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  padding: 18px 24px;
  border: none;
  background: var(--color-primary);
  letter-spacing: 0.5px;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
}

.cta-button:hover {
  background: var(--color-secondary);
}

/* Desktop Styles */
@media (min-width: 992px) {
  .play-button {
    width: 60px;
    height: 60px;
  }

  .feature {
    width: calc(50% - 1rem);
    margin-bottom: 0;
  }

  .feature-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .feature-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
  }

  .about-section {
    padding: 4rem 0;
  }

  .spa-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }

  .about-section .container {
    padding: 0 2rem;
  }

  .section-heading {
    font-size: 3rem;
  }

  .feature-heading {
    font-size: 3rem;

    &.text-right {
      font-size: 2.25rem;
      text-align: end;
    }
  }

  .feature-image-wrapper {
    max-width: 400px;
  }

  .small-image-wrapper {
    display: block;
    height: 180px;
  }

  .feature-description {
    font-size: 1rem;
    text-align: end;
  }

  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .expert-description {
    max-width: 90%;
  }

  .main-container {
    max-width: 1200px;
    padding-inline: 2rem;
  }

  .oferta {
    padding: var(--container-padding-block-desktop) var(--container-padding);
  }

  .oferta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .cta-container {
    padding: 60px;
  }

  .footer-section {
    text-align: start;
  }

  .cta-text {
    margin-bottom: 50px;
  }

  .main-description {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 3rem;
  }

  .main-title {
    font-size: 3rem;
    line-height: 58px;
  }

  .testimonials-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .experiences-title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
  }

  .about-us-container {
    display: grid;
    gap: 3rem;
    justify-content: center;
  }

  .hero-content {
    transform: none;
    padding: 0 10rem;
    max-width: 1400px;
  }

  .about {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .spa-experiences h2 {
    font-size: 3rem;
    line-height: 58px;
    margin-bottom: 80px;
  }

  .about-us-image {
    width: 450px;
  }

  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .experiences-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-container {
    flex-direction: row;
    gap: 100px;
    margin-right: 0;
  }

  .testimonials-title {
    h2 {
      font-size: 3rem;
    }
  }

  .experience-title {
    font-size: 2.25rem;
    line-height: 43.2px;
  }

  .about-content {
    text-align: left;
    align-items: flex-start;
  }

  .about-content h2 {
    text-align: left;
  }

  .about-image-container {
    height: auto;
    margin-right: -2rem;
  }

  .cta-section {
    padding-block: 132px;
  }

  .cta-title {
    font-size: 3rem;
    line-height: 1.2;
  }
}

@media (min-width: 1300px) {
  .hero h1 {
    font-size: 5.625rem;
    line-height: 108px;
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-accent {
  background-color: var(--color-accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Oferta Section */
.oferta {
  background-color: var(--color-background);
  padding: var(--container-padding-block-mobile) var(--container-padding);
  position: relative;
  overflow: hidden;
}

.oferta-item {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oferta-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.oferta-title {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.oferta-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-secondary);
}

.oferta-description {
  color: var(--color-text-light);
  line-height: 1.6;
}

.main-container {
  width: 100%;
  margin: 110px auto 40px;
}

/* Oferta Page Styles */

.oferta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(91, 66, 51, 0.1);
}

.oferta-item {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oferta-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.oferta-title {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.oferta-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-secondary);
}

.oferta-description {
  color: var(--color-text-light);
  line-height: 1.6;
}

.nav-link.active {
  font-weight: bold;
  position: relative;
}
