/* Base Styles */
body,
html {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  padding: 0;
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

/* Wellness Section */
.wellness-section {
  margin-top: -70px !important;
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.wellness-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/wellness/pexels-anntarazevich-4839732-scaled.webp')
      center 55% / cover no-repeat;
  z-index: 0;
}

.wellness-content {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

.wellness-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 500px;
}

.wellness-title {
  font-family: "Marcellus", serif !important;
  font-size: 4.8rem !important;
  color: white !important;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  font-weight: 300;
  max-width: 800px;
  text-align: center;
}

.wellness-description {
  font-family: "Montserrat", sans-serif;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

/* About Section */
.about-wellness {
  padding: 100px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  min-height: 600px;
}

.content-column {
  flex: 1;
}

.image-column {
  flex: 1;
  position: relative;
  height: 500px;
}

.about-subtitle {
  color: #4E9B82;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.about-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
  font-family: "Marcellus", serif;
}

.about-text {
  color: #555;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 30px;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-image-1 {
  position: absolute;
  top: 0;
  left: 10%;
  width: 60%;
  height: 90%;
  object-fit: cover;
  z-index: 1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image-2 {
  position: absolute;
  top: 15%;
  right: -15%;
  width: 60%;
  height: 90%;
  object-fit: cover;
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Offerings Section */
.offerings-section {
  padding: 100px 0;
  background: #f1ebe3;
  text-align: center;
}

.offerings-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.offerings-subtitle {
  color: #4E9B82;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.offerings-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 60px;
  font-family: "Marcellus", serif;
  color: #333;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  align-items: flex-start;
}

.offering-card {
  position: relative;
}

.offering-card.lowered {
  margin-top: 40px;
}

.offering-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 4px;
}

.offering-overlay {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.offering-icon {
  font-size: 28px;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.offering-name {
  font-family: "Marcellus", serif;
  color: white !important;
  margin: 0;
  font-size: 1.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Reservations Section */
.reservations-section {
  padding: 0;
  background: #ffffff;
}

.reservations-cover {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.reservations-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservations-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.reservations-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-family: "Marcellus", serif;
  color: #333;
}

.reservations-text {
  color: #555;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.contact-method {
  text-align: center;
}

.contact-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-icon {
  font-size: 20px;
  color: #4E9B82;
}

.contact-label-text {
  font-family: "Montserrat", sans-serif;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-info {
  font-family: "Marcellus", serif;
  color: #555;
  font-size: 1.1rem;
  font-weight: 600;
}

.divider {
  width: 1px;
  height: 50px;
  background: #d9d9d5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet styles */
  .wellness-title {
    font-size: 4rem !important;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
    padding: 60px 20px;
    overflow: hidden;
  }

  .image-column {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }

  .about-image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    height: auto;
  }

  .about-image-1,
  .about-image-2 {
    position: relative;
    width: 48%;
    height: 350px;
    left: auto;
    right: auto;
    top: auto;
    margin-bottom: 0;
  }

  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .offering-card.lowered {
    margin-top: 0;
  }

  .offering-image {
    height: 400px;
  }

  .contact-methods {
    flex-direction: column;
    gap: 30px;
  }

  .divider {
    width: 100px;
    height: 1px;
  }
}

@media (max-width: 768px) {
  /* Tablet portrait - keep images side by side */
  .wellness-tagline {
    font-size: 0.8rem;
    letter-spacing: 3px;
    max-width: 90%;
  }

  .wellness-title {
    font-size: 2.8rem !important;
    max-width: 90%;
  }

  .wellness-description {
    font-size: 1rem;
    max-width: 90%;
  }

  .about-title,
  .offerings-title,
  .reservations-title {
    font-size: 2rem;
  }

  .about-image-1,
  .about-image-2 {
    height: 300px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .offering-image {
    height: 450px;
  }

  .reservations-cover {
    height: 300px;
  }
}

@media (max-width: 600px) {
  /* Mobile - stack images vertically */
  .about-image-container {
    flex-direction: column;
    align-items: center;
  }

  .about-image-1,
  .about-image-2 {
    width: 100%;
    margin-bottom: 20px;
  }

  .wellness-title {
    font-size: 2.2rem !important;
  }

  .offering-image {
    height: 350px;
  }

  .reservations-content {
    padding: 40px 20px;
  }

  .reservations-title {
    font-size: 1.8rem;
  }
} 

/* Round WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 18px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
  color: white;
}


@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    padding: 12px;
  }
}