@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Playfair+Display:wght@500;700&display=swap');


/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
  overflow-y: scroll !important;
}

/* --- Base --- */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  background-color: #faf9f7;
}


/* --- ROOT VARIABLES --- */
:root {
  --primary: #B22E2E;
  --secondary: #FFFEED;
  --accent: #8C5C45;
  --neutral: #FFFEED;
  --font-primary: 'Belleza', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

.footer-center .yearStamp {
  width: 30%;
  height: auto;

}

/* --- HEADER BASE --- */
.site-header {
  background: var(--neutral);
  color: var(--accent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--font-primary);
  width: 100%;
  z-index: 999;
  position: fixed;
  height: fit-content;
  top: 0;
  left: 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  
}

/* --- LEFT SIDE --- */
.header-left {
  display: flex;
  align-items: left;
  gap: 1rem;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.call-btn:hover {
  color: #911f1f;
}

/* --- CENTER LOGO --- */
.header-logo {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  text-align: center;

}

.header-logo img {
  height: auto;
  max-height: 70px; /* keeps it balanced */
  width: auto;
}

/* --- RIGHT SIDE --- */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.top-nav ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: var(--font-primary);
}

.top-nav a:hover {
  color: var(--primary);
}

.header-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 6px;
}

.header-socials a {
  color: var(--primary);
  margin-left: 12px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.header-socials a:hover {
  
  color: #000000;
}

/* --- BOTTOM KEYWORDS --- */
.header-bottom {
  /* background: var(--secondary); */
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.keyword-list {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  list-style: none;
  margin: 0 5%;
  padding: 0;
  flex-wrap: wrap;
  font-family: 'Peckham', sans-serif;
  text-transform: uppercase;
}

.keyword-list li {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.keyword-list li a {
  text-decoration: none;
  color: var(--primary);
}

/* Hide the social-toggle on desktop */
.social-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 15px;
}

/* Mobile Styles */
@media (max-width: 700px) {

  /* Hide individual icons on mobile */
  .header-socials {
    display: none;
    flex-direction: column;
    background: #f2e8df;
    padding: 6px;
    border-radius: 8px;
    position: absolute;
    right: 20px;
    top: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.25s ease;
  }

  /* Show social-toggle on mobile */
  .social-toggle {
    display: block;
  }

  /* When active (JS applies .active) */
  .header-socials.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Make icons bigger for thumb tap */
  .header-socials a {
    font-size: 1.4rem;
    margin: 8px 0;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 750px) {
  .top-nav ul {
    display: none;
  }
  .header-logo img {
    height: 55px;
  }
  .header-right {
    align-items: center;
  }
  .keyword-list {
    gap: 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 650px) {
  .header-bottom ul {
    display: none;
  }

  .header-top {
  padding: 1rem 0.5rem;
}

.header-left {
  gap: 0.01rem;
}
}


/* --- MENU TOGGLE (Hamburger Button) --- */
.menu-toggle {
  background: none;
  color: var(--primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001; /* above menu */
}

.menu-toggle:hover {
  color: #911f1f;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 4px;
  border-radius: 1px;
  margin: 4px 0;
  background-color: var(--primary);
  transition: all 0.3s ease;
}


/* Optional animation for "X" when active */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background-color: #fff;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: #fff;
}

/* --- Menu panel (slides from right) --- */
.main-nav {
  position: fixed;
  top: 0;
  left: -280px; /* hidden off screen */
  width: 300px;
  height: 100%;
  background-color: #911f1f;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  opacity: 0;
  transition: right 0.4s ease, opacity 0.4s ease;
  z-index: 999;
}

.main-nav.active {
  left: 0; /* slide in */
  opacity: 1;
}

/* --- Menu Items --- */
.menu {
  list-style: none;
  padding: 0;
  margin: 80px 0 0;
}

.menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.menu li a {
  display: flex;
  justify-content: space-between; /* pushes text left, icon right */
  align-items: center; /* vertically center both */
  padding: 20px 30px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 1.1rem;
}

.menu li a:hover {
  background-color: #00000040;
}

/* Active page highlight */
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.15);
  border-left: 4px solid #fff;
  color: #ffeb3b; /* optional: yellow highlight */
  font-weight: 600;
}

/* --- Submenu --- */
.submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  background-color: #8b5454;
  transition: max-height 0.4s ease;
}

.menu li.open > .submenu {
  max-height: 400px; /* adjust as needed */
}

.submenu li a {
  padding-left: 40px;
  font-size: 1rem;
}

/* Optional scrollbar styling */
.main-nav::-webkit-scrollbar {
  width: 6px;
}

.main-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

/* --- Menu overlay --- */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 9999;
}

/* Base style for both buttons */
.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B22E2E; /* deep red */
  color: #fff;
  font-family: 'Belleza', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Hover effects */
.floating-btn:hover {
  background-color: #7c8764;/* warm brown accent */
  transform: translateY(-3px);
  box-shadow: 0 8px 14px rgba(0,0,0,0.3);
}

/* Text button variant */
.text-btn {
  background: #F5E6DA; /* beige */
  color: #8C5C45;
  border: 2px solid #8C5C45;
}

.text-btn:hover {
  background: #8C5C45;
  color: #fff;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 600px) {
  .floating-buttons {
    flex-direction: column;
    right: 15px;
    bottom: 15px;
  }
  .floating-btn {
    padding: 10px 16px;
  }
}


/* Footer Base */
.site-footer {
  background: var(--secondary);
  color: #333;
  /* padding: 3rem 1rem 1.5rem; */
  font-family: var(--font-sans);
  border-top: 4px solid var(--primary);
}
.footer-substack-bar {
  background: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
}

.footer-substack-bar a {
  font-family: var(--font-heading);
  color: var(--secondary);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  transition: color 0.3s ease, text-shadow 0.1s ease, text-decoration-color 0.3s ease;
}

.footer-substack-bar a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-shadow: 0 0 6px rgb(255, 255, 255);
}


.footer-container {
  max-width: 95%;
  margin: 0 auto;
}

/* === TOP ROW === */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.footer-left .join-link {
  font-family: var(--font-bold);
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

.footer-left .join-link:hover {
  text-decoration: underline;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B22E2E; /* deep red */
  color: #fff;
  font-family: 'Belleza', sans-serif;
  font-weight: 600;
  /* text-transform: uppercase; */
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.download-btn:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}


.footer-center {
  text-align: center;
}

.footer-center h2 {
  font-family: var(--font-belleza);
  font-size: 2rem;
  color: var(--primary);
  margin: 0;
}

.footer-center p {
  font-style: italic;
  margin-top: 4px;
}

.footer-right a {
  color: var(--primary);
  margin-left: 12px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #000;
}

/* === MIDDLE ROW === */
.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Map & Contact */
.footer-map-contact {
  flex: 1.2;
  min-width: 300px;
}

footer .map-container iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 6px 0;
  line-height: 1.4;
  color: #333;
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Links Columns */
.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.footer-column h4 {
  font-family: var(--font-belleza);
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin: 6px 0;
}

.footer-column a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--primary);
}

/* === AWARDS ROW === */
.footer-awards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-awards img {
  height: 75px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-awards img:hover {
  opacity: 1;
}

/* === BOTTOM ROW === */
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 900px) {
  .footer-top, .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------- */

.contact-section {
  padding: 0 20px 80px 20px;
  
}

.contact-title {
  font-family: 'Belleza', sans-serif;
  font-size: 2.7rem;
  color: #8C5C45; /* warm brown */
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Wrapper Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: #f0eae5;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

/* Form Styles */
.contact-form h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1 1 48%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 15px;
  font-size: 1rem;
  resize: vertical;
}

.contact-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: var(--accent);
}

/* Info Section */
.contact-info {
  display: flex;
  gap: 20px;
}

.info-left {
  flex: 1;
}

.info-item h4 {
  margin: 10px 0 4px;
  color: var(--accent);
  font-family: var(--font-heading);
}

.info-item p, .info-item a {
  font-size: 1rem;
  color: #444;
}

.info-item a {
  text-decoration: none;
}

.info-item a:hover {
  color: var(--primary);
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent);
}

/* Map Styling */
.map-right .map-container {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-right .map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
  }

  .map-right .map-container iframe {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 2rem;
  }

  .form-row input {
    flex: 1 1 100%;
  }

  .contact-btn {
    width: 100%;
  }
}

.contact-faq .container {
  max-width: 900px;
  margin: 0 auto 5rem auto;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background: #f0eae5;
  border-radius: 10px;
  box-shadow: 0px 4px 18px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-family: var(--font-primary);
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-weight: bold;
  font-size: 1.4rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  margin: 1rem 0 1.5rem;
  color: #555;
  line-height: 1.6;
}

/* When opened */
.faq-item.active .faq-answer {
  max-height: 400px;
  padding-top: 0.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}




/* Retreats & Workshops Page */

/* .hero-retreats {
  color: #B22E2E;
  text-align: center;
  padding: 100px 20px;
}

.hero-retreats p {
  color: #000;
  margin-bottom: 50px;
}

.hero-retreats .btn {
  background-color: #B22E2E;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.hero-retreats .btn:hover {
  background-color: #e0e0e0;
}

.why-retreats {
  background-color: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}

.why-retreats .reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.reason {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.retreat-cards {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  background-color: #fafafa;
  text-align: left;
}

.card h3 {
  color: #B22E2E;
}

.btn-outline {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  border: 2px solid #B22E2E;
  color: #B22E2E;
  text-decoration: none;
  border-radius: 4px;
}

.btn-outline:hover {
  background-color: #B22E2E;
  color: #fff;
}

.cta-retreats {
  text-align: center;
  background-color: #B22E2E;
  color: #fff;
  padding: 80px 20px;
}

.cta-retreats .btn {
  background-color: #fff;
  color: #B22E2E;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.cta-retreats .btn:hover {
  background-color: #f0f0f0;
} */

/* =============================
   PAGE OVERVIEW HEADER
============================= */
.service-section.overview {
  padding: 70px 20px;
  background-color: #fffff8;
  text-align: center;
}

.service-section.overview h1 {
  font-family: 'Belleza', sans-serif;
  font-size: 2.7rem;
  color: #8C5C45;
  margin-bottom: 1rem;
}

.service-section.overview .intro {
  max-width: 750px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.featured-retreat {
  padding: 5rem 0;
  background: #fffff8;
}

.retreat-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.pill {
  display: inline-block;
  background: #e8e2da;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.retreat-meta {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.retreat-meta li {
  margin-bottom: 0.5rem;
}

.retreat-visual img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.retreat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B22E2E; /* deep red */
  color: #fff;
  font-family: 'Belleza', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none; 
  outline: none;
}

.retreat-button:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}




/* ------------------------------
   WORKSHOPS
------------------------------ */
.workshops {
  background: #fffff8;
  font-family: 'Argentum Sans', sans-serif;
  text-align: center;
}

.workshops .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.workshops h2 {
  font-family: 'Playfair Display', serif;
  color: #B22E2E;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.workshops p {
  max-width: 750px;
  margin: 0 auto 2rem auto;
  color: #5a5a5a;
  line-height: 1.7;
}

.workshops .workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.workshops .workshop-card {
  background: #F5E6DA;
  border-radius: 14px;
  padding: 1.8rem;
  border: 2px solid #E0CDBE;
  transition: .3s ease;
  text-align: left;
}

.workshops .workshop-card:hover {
  /* background: #b22e2e7a; */
  /* color: #fff; */
  transform: translateY(-4px);
}

.workshops .date {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #8C5C45;
}

.workshops .workshop-card:hover .date {
  text-decoration: underline;
}



/* ------------------------------
   PAST RETREAT
------------------------------ */
.past-retreat-showcase {
  padding: 4rem 0;
  background: #fffff8;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.showcase-gallery img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}


@media (max-width: 768px) {

  /* ---------- FEATURED RETREAT ---------- */
  .featured-retreat {
    padding: 3rem 0;
  }

  .retreat-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .retreat-content h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .retreat-meta {
    margin: 1.5rem 0;
  }

  .retreat-meta li {
    font-size: 0.95rem;
  }

  .retreat-visual img {
    border-radius: 16px;
    max-height: 320px;
  }

  .retreat-actions {
    text-align: center;
  }

  .retreat-button {
    width: 100%;
    max-width: 320px;
  }


  /* ---------- WORKSHOPS ---------- */
  .workshops .container {
    padding: 3rem 1.5rem;
  }

  .workshops h2 {
    font-size: 1.9rem;
  }

  .workshops .workshop-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .workshops .workshop-card {
    padding: 1.5rem;
  }


  /* ---------- PAST RETREAT ---------- */
  .past-retreat-showcase {
    padding: 3rem 0;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .showcase-text h3 {
    font-size: 1.5rem;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
  }

  .showcase-gallery img {
    max-height: 260px;
  }

}



/* Specials Page */

/* Page Intro */
.page-intro {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 700px;
  margin: auto;
}

.page-intro h1 {
  font-size: 2.4rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #333;
}

.page-intro p {
  color: #666;
  line-height: 1.6;
}

/* Packages Section */
.packages-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.package-card {
  background: #faf8f6;
  border: 1px solid #e7e2dc;
  border-radius: 14px;
  padding: 25px 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: 0.3s ease;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}

.package-card h2 {
  margin-bottom: 8px;
  color: #2f2f2f;
  font-size: 1.35rem;
}

.package-meta {
  color: #a09382;
  font-weight: 600;
  margin-bottom: 12px;
}

.package-card p {
  color: #555;
  line-height: 1.55;
  margin-bottom: 15px;
}

/* Download Section */
.download-section {
  text-align: center;
  padding: 70px 20px 50px;
}

.download-section h2 {
  margin-bottom: 10px;
}

.download-section p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 70px 20px 80px;
  background: #f6f4f2;
  border-top: 1px solid #ded8d2;
}

.cta-section h2 {
  margin-bottom: 10px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: #555;
}



/* ABOUT PAGE */

/* About Section */
.about-section {
  padding: 6rem 0;
  background: #FDF9F5; /* warm neutral */
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 55%;
  font-family: 'Argentum Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a3f35;
}

.about-title {
  font-family: 'Belleza', sans-serif;
  font-size: 2.7rem;
  color: #8C5C45; /* warm brown */
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  line-height: 1.8;
}

.about-list li {
  margin-bottom: 0.4rem;
  color: #6b5a50;
}

.about-ending {
  font-style: italic;
  margin-top: 1.5rem;
  color: #8C5C45;
}

/* Image section */
.about-image {
  margin-top: 10rem;
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}


.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.about-section:nth-of-type(even) {
  background-color: #fff;
}

.about-section h2 {
  color: #B22E2E;
  text-align: center;
  margin-bottom: 40px;
}

.container {
  max-width: 99%;
  margin: 0 1rem;
}

/* TEAM SECTION */
.team-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.team-title {
  text-align: center;
  font-family: 'Belleza', sans-serif;
  font-size: 3rem;
  color: #8C5C45;
  margin-bottom: 3rem;
}

/* Founder Layout */
.team-founder {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.founder-image {
  flex: 1 1 35%;
}

.founder-image img {
  margin-top: 10rem;
  width: 80%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.founder-text {
  flex: 1 1 60%;
  font-family: 'Argentum Sans', sans-serif;
  color: #4a3f35;
  font-size: 1.05rem;
  line-height: 1.85;
}

.founder-name {
  font-family: 'Belleza', sans-serif;
  font-size: 2.2rem;
  color: #B22E2E;
  margin-bottom: 1rem;
}

/* TEAM GRID */
.team-grid {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.team-card {
  text-align: center;
  width: 260px;
}

.team-card img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-card h4 {
  margin-top: 1rem;
  font-family: 'Belleza', sans-serif;
  font-size: 1.4rem;
  color: #8C5C45;
}

.team-card p {
  font-family: 'Argentum Sans', sans-serif;
  color: #6b5a50;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.join-team {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.join-team h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #4a4a4a;
}

.join-team p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: #555;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B22E2E; /* deep red */
  color: #fff;
  font-family: 'Belleza', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.join-btn:hover {
  background-color: #7c8764;
}

.about-faq {
  padding: 5rem 2rem;
  background: #ffffff;
}



/* --- Treatments Page --- */
.treatments-section {
  padding: 80px 20px;
  text-align: center;
}

.treatments-section h1 {
  font-family: 'Belleza', sans-serif;
  font-size: 2.7rem;
  color: #8C5C45; /* warm brown */
  margin-bottom: 1.5rem;
  text-align: center;
}

.treatments-section .intro {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #444;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.treatment-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Info icon inside treatment cards */
.treatment-card {
  position: relative;
  overflow: hidden;
}

.treatment-card i.fa-circle-info {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 1.2rem;
  color: #666;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  padding: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.treatment-card i.fa-circle-info:hover {
  color: var(--primary-color);
}

/* --- Modal Styling --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

.treatment-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  max-width: 80vw;
  width: 600px;
  padding: 30px;
  border-radius: 12px;
  z-index: 1001;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.treatment-modal.active {
  display: flex;
}

/* @media (max-width: 700px) {
  .treatment-modal {
    width: 80vw;
  }
} */

.modal-content {
  max-height: 80vh;
  overflow-y: auto;
}
.modal-content h2 {
  color: #B22E2E;
  margin-bottom: 15px;
}

.modal-content p {
  color: #333;
  line-height: 1.6;
}

.close-modal {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 1.8rem;
  color: #666;
  cursor: pointer;
}

.close-modal:hover {
  color: #B22E2E;
}

.book-now {
  position: absolute;
  top: 15px;
  right: 70px; /* space before close button */
}

.book-now a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B22E2E; /* deep red */
  color: #fff;
  font-family: 'Belleza', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.book-now a:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* multiple book now */

.book-now-multiple {
  position: absolute;
  top: 15px;
  right: 70px; /* space before close button */
}

.book-now-multiple .book-toggle:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.book-now-multiple .book-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B22E2E; /* deep red */
  color: #fff;
  font-family: 'Belleza', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none; 
  outline: none;
}

.book-now-multiple .book-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
  overflow: hidden;
  z-index: 9999;
}

.book-now-multiple .book-dropdown a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.book-now-multiple .book-dropdown a:hover {
  background: var(--primary);
  color: white;
}

.services-overview {
  padding: 70px 20px;
  background-color: #f7f8fa;
  text-align: center;
  color: #222;
}

.services-overview h1 {
  font-family: 'Belleza', sans-serif;
  font-size: 2.7rem;
  color: #8C5C45; /* warm brown */
  margin-bottom: 1.5rem;
  text-align: center;
}

.services-overview .intro {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.service-category-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-category-card a {
  text-decoration: none;
}

.service-category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-category-card h2 {
  color: #B22E2E;
  font-size: 1.4rem;
  margin: 20px 20px 10px;
}

.service-category-card p {
  margin: 0 20px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-category-card .btn {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 10px 20px;
  background-color: #B22E2E;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.service-category-card .btn:hover {
  background-color: #1f4f80;
}

.service-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.service-section {
  padding: 0 20px 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.service-section h1 {
  font-family: 'Belleza', sans-serif;
  font-size: 2.7rem;
  color: #8C5C45; /* warm brown */
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-section .intro {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.treatment-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.treatment-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.treatment-card h2 {
  color: #B22E2E;
  font-size: 1.3rem;
  margin: 20px 20px 10px;
}

.treatment-card p {
  margin: 0 20px 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Scope everything under .homepage to prevent leaks */
.homepage {
  font-family: "Poppins", sans-serif;
  color: #222;
  overflow-x: hidden;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  width: 100%;
  min-height: 75vh; /* Match your new video height */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

/* Background video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75vh; /* Keep consistent with hero height */
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75vh; /* match video height */
  background: rgba(20, 12, 10, 0.45);
  z-index: -1;
}

/* Content container */
.hero-content {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding-top: 2rem; /* pull content slightly down from top */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* --- Logo + Years --- */
.hero-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo-block .yearStamp {
  width: 35%;
  height: auto;

}

.hero-tagline {
  font-family: 'Argentum Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--secondary);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Split Row --- */
.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
}

.hero-left {
  flex: 1 1 50%;
  text-align: left;
  min-width: 280px;
}

.hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-left p {
  font-family: 'Argentum Sans', sans-serif;
  color: #F5E6DA;
  font-size: 1rem;
}

.hero-right {
  flex: 1 1 40%;
  text-align: right;
}

.hero-right img {
  width: 180px;
  max-width: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* --- CTA Button --- */
/* Ensure the hero section creates the top stacking layer */
.hero {
  position: relative;
  z-index: 10; /* higher than next sections */
  overflow: visible; /* important: allow button to overflow down */
}

/* Next section (team, services, etc.) should not hide it */
section + section {
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* Keep the CTA button design as before */
.hero-cta {
  position: relative;
  margin-top: 10vh;
  z-index: 20; /* ensure above hero background */
}

/* Tablet */
@media (max-width: 991px) {
  .hero-cta {
    margin-top: 6vh;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-cta {
    margin-top: 1rem;
  }
}

.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Belleza', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(178, 46, 46, 0.85);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 30;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #B22E2E;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateX(-50%) translateY(48%);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-row {
    flex-direction: column;
    text-align: center;
  }

  .hero-left, .hero-right {
    text-align: center;
  }

  .btn-cta {
    top: 20px;
  }

  .hero-logo {
    width: 90px;
  }

  .hero-left h1 {
    font-size: 2rem;
  }
}


/* --- TEAM SECTION --- */
.team-section {
  background: #fffff8; /* creamy beige */
  padding: 6rem 2rem;
  font-family: 'Argentum Sans', sans-serif;
  color: #8C5C45;
}

.team-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* LEFT SIDE (Our Team) */
.team-left {
  flex: 1 1 45%;
}

.team-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #B22E2E;
  margin-bottom: 2rem;
  text-align: center;
}

.team-members {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.member {
  text-align: center;
  flex: 1 1 45%;
}

.member img {
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}

.member h4 {
  font-family: 'Belleza', sans-serif;
  font-size: 1.2rem;
  color: #8C5C45;
  margin: 0.3rem 0;
}

.member h4 a{
  text-decoration: none;
  color: #8C5C45;
}

.member h4 a:hover{
  text-decoration: underline;
}

.member p {
  font-size: 0.95rem;
  color: #6d4a3b;
}

/* RIGHT SIDE (Text + Awards) */
.team-right {
  flex: 1 1 50%;
  margin-top: 2rem;
}

.team-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #B22E2E;
  margin-bottom: 3rem;
}

.team-right p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Awards Section */
.awards-section {
  margin-top: 2rem;
  text-align: center;
}

.awards-section h4 {
  font-family: 'Belleza', sans-serif;
  color: #8C5C45;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.awards-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.awards-logos img {
  max-height: 70px;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}

.awards-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Button */
.btn-outline {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid #B22E2E;
  color: #B22E2E;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Belleza', sans-serif;
}

.btn-outline:hover {
  background-color: #B22E2E;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .team-inner {
    flex-direction: column;
    text-align: center;
  }

  .team-left, .team-right {
    flex: 1 1 100%;
  }

  .team-members {
    justify-content: center;
  }
}


/* --- OUR SERVICES SECTION --- */
.services-section {
  background: #fffff8;
  padding: 6rem 2rem;
  text-align: center;
  font-family: 'Argentum Sans', sans-serif;
}

.services-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #B22E2E;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Style */
.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5E6DA;
  border: 2px solid #E0CDBE;
  border-radius: 16px;
  padding: 1rem 1rem;
  text-decoration: none;
  color: #8C5C45;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: 'Belleza', sans-serif;
}

.service-card {
  flex-direction: column;
  gap: 1.2rem;
}

.service-card img {
  width: 250px;
  height: 175px;
  /* object-fit: contain; */
  border-radius: 25px;
}

/* Hover Effects */
.service-card:hover {
  background: #b22e2e;
  color: #FFFFFF;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(178, 46, 46, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2.5rem 1rem;
  }
}

/* --- CONDITIONS WE TREAT SECTION --- */
.conditions-section {
  background: #fffff8;
  padding: 6rem 2rem;
  text-align: center;
  font-family: 'Argentum Sans', sans-serif;
}

.conditions-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #B22E2E;
  margin-bottom: 1rem;
}

.conditions-intro {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #7B5E4E;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Grid Layout */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Style */
.condition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #E7D7C8;
  border-radius: 16px;
  padding: 2.5rem 1rem;
  text-decoration: none;
  color: #6A4A3A;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.condition-card i {
  font-size: 2rem;
  color: #B22E2E;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.condition-card span {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover Effects */
.condition-card:hover {
  background: #B22E2E;
  color: #FFFFFF;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(178, 46, 46, 0.25);
}

.condition-card:hover i {
  color: #FFFFFF;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }

  .condition-card {
    padding: 2rem 1rem;
  }
}

/* --- CTA BANNER SECTION --- */
.cta-banners {
  background: #fffff8;
  padding: 5rem 2rem;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Banner Item */
.banner-item {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #B22E2E 0%, #8C5C45 100%);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Text Styling */
.banner-content {
  position: relative;
  z-index: 2;
  color: #FFF;
  padding: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.banner-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Hover Effect */
.banner-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(178, 46, 46, 0.3);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .banner-grid {
    grid-template-columns: 1fr;
  }

  .banner-item {
    height: 180px;
  }

  .banner-content h3 {
    font-size: 1.1rem;
  }
}






/* --- Holistic Spa Page --- */

.spa-hero {
  background: url('/assets/images/spa-banner.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.spa-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.spa-hero-overlay {
  position: relative;
  z-index: 1;
}

.spa-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.spa-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.spa-intro {
  background: #fafafa;
  padding: 50px 20px;
  text-align: center;
  color: #222;
  font-size: 1.1rem;
  line-height: 1.7;
}

.spa-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}

.spa-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.spa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.spa-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.spa-card h3 {
  color: #B22E2E;
  margin: 20px 0 10px;
}

.spa-card p {
  padding: 0 20px;
  font-size: 1rem;
  color: #444;
}

.spa-cta {
  background: #B22E2E;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.spa-cta h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.btn-primary {
  background: #fff;
  color: #B22E2E;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ffeb3b;
  color: #000;
}

.skincare-products {
  padding: 70px 0;
  background: #fffff8;
}

.skincare-products .section-title {
  text-align: center;
  font-family: 'Belleza', sans-serif;
  font-size: 2.7rem;
  color: #8C5C45;
  margin-bottom: 1rem;
}

.skincare-products .section-subtitle {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
}

/* Cards */
.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.product-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.product-card .tagline {
  font-style: italic;
  color: #666;
  margin-bottom: 10px;
}

.product-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

.product-card .benefit {
  margin-top: 10px;
  color: #333;
}

.product-card .result,
.product-card .perfect {
  font-weight: 600;
  color: #444;
}

/* Why Choose */
.why-luminous {
  margin-top: 50px;
  text-align: center;
}

.why-luminous h3 {
  margin-bottom: 15px;
}

.why-luminous ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #444;
}


/* --- Wellness & Fitness Page --- */

.wellness-hero {
  background: url('/assets/images/wellness-banner.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.wellness-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.wellness-hero-overlay {
  position: relative;
  z-index: 1;
}

.wellness-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.wellness-hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
}

.wellness-intro {
  background: #fafafa;
  padding: 50px 20px;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

.wellness-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}

.wellness-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wellness-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.wellness-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wellness-card h3 {
  color: #B22E2E;
  margin: 20px 0 10px;
}

.wellness-card p {
  padding: 0 20px;
  font-size: 1rem;
  color: #444;
}

.wellness-cta {
  background: #B22E2E;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.wellness-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.wellness-cta .btn-primary {
  background: #fff;
  color: #B22E2E;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wellness-cta .btn-primary:hover {
  background: #ffeb3b;
  color: #000;
}


/* ===========================
   NEWSLETTER POPUP
   (Scoped + Safe)
=========================== */
.newsletter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 999;
}

.newsletter-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 420px;
  background: #FFF9F5;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #E0CDBE;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: all .4s ease;
  font-family: 'Argentum Sans', sans-serif;
}

.newsletter-popup.show {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.newsletter-popup h2 {
  font-family: 'Playfair Display', serif;
  color: #B22E2E;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}

.newsletter-popup p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.popup-btn {
  display: inline-block;
  background: #B22E2E;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.popup-btn:hover {
  background: #8f2323;
}

.popup-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  position: absolute;
  right: 14px;
  top: 10px;
  cursor: pointer;
  color: #777;
}

.popup-close:hover {
  color: #000;
}

/* Mobile */
@media(max-width: 500px){
  .newsletter-popup{
    width: 90%;
  }
}

#join-team, #luminous-skincare {
  scroll-margin-top: 120px;
}