/* ------------------------
   GLOBAL STYLES
------------------------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f7f4ef;
  color: #2c2c2c;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Serif;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------
   HERO SECTION
------------------------- */

.hero {
  position: relative;
  height: 100vh;
  background: url('hero.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f7f4ef;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 0.08em;
}

.hero p {
  font-style: italic;
  margin: 1rem 0 2rem;
}

.hero .btn {
  padding: 0.9rem 2rem;
  border-radius: 30px;
  background-color: #2f6f73;
  color: #f7f4ef;
  font-weight: 500;
}

/* ------------------------
   ABOUT SECTION
------------------------- */

.about {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about h2 {
  margin-bottom: 1.5rem;
}
/* ================================
   ABOUT SECTION POLISH
================================ */

.about {
  max-width: 780px;
  padding: 4rem 2rem;
}
.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 1.2rem auto;
  background-color: #2f6f73;
  opacity: 0.4;
}
.about p {
  max-width: 680px;
  margin: 0.8rem auto;
}

/* ------------------------
   SERVICES SECTION
------------------------- */

.services {
  position: relative;
  padding: 6rem 2rem;
  background: url('water.jpg') center / cover no-repeat;
  min-height: 700px;          /* 👈 forces background to show on desktop */
}


.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;                 /* white */
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0,0,0,0.45);
  position: relative;
  z-index: 2;
}
.services h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 1rem auto 0;
  background: rgba(255,255,255,0.6);
}

}

/* soft overlay */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(247, 244, 239, 0.55),
    rgba(247, 244, 239, 0.35)
  );
  z-index: 1;
}


.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

/* service layout */
.service-columns {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.08);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #2f6f73;
  margin-bottom: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: none;
}


.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  margin-bottom: 0.5rem;
  color: #2f6f73;
  font-weight: 500;
}

/* ------------------------
   FOOTER
------------------------- */

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  color: #777;
}
/* ================================
   CLEAN BLACK CTA (RESTORED)
================================ */

.cta {
  background-color: #000;
  color: #f7f4ef;
  text-align: center;
  padding: 5rem 2rem;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  color: #f7f4ef;
}

/* Teal booking button */
.cta .btn {
  padding: 0.9rem 2rem;
  border-radius: 30px;
  background-color: #2f6f73;
  color: #f7f4ef;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
}

.cta .btn:hover {
  background-color: #265e61;
}

/* ================================
   FLOWY CTA TEXT
================================ */

.cta-flow {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  font-style: italic;
  text-align: center;
  color: #f7f4ef;
  margin-bottom: 2.2rem;
}

/* ------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .services {
    padding: 4rem 1.5rem;
  }
}
/* --- SERVICE ACCORDION FIX --- */

.service-details {
  display: none;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #444;
}

.service-toggle {
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #2f7f7a; /* teal heading */
  cursor: pointer;
  text-align: left;
}

.service-toggle:hover {
  color: #1f5f5b;
}
/* ================================
   SERVICES VISUAL POLISH + FIXES
================================ */

/* Teal accent panels for service details */
.service-details {
  background: rgba(47, 111, 115, 0.08);
  border-left: 4px solid #2f6f73;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

/* Ensure all service items stack vertically */
.service-card .service-toggle {
  display: block;
  width: 100%;
}

/* Fix facial services stacking */
.service-card:nth-child(3) .service-toggle {
  margin-top: 1rem;
}

.service-card:nth-child(3) .service-details {
  margin-bottom: 1rem;
}

}

/* Mobile: reduce water fade so image shows better */
@media (max-width: 768px) {
  .services::before {
    background: linear-gradient(
      to top,
      rgba(247, 244, 239, 0.75),
      rgba(247, 244, 239, 0.55)
    );
  }
}
.cta {
  background: linear-gradient(to bottom, #000, #0f0f0f);
}

/* ======================
   CONNECT FOOTER
====================== */

.footer {
  background: #0e1f22;
  color: #f4f1ec;
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #e6c88a;
}

.connect-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.connect-links a {
  color: #f4f1ec;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.connect-links {
  display: flex;
  align-items: center;   /* REQUIRED */
  justify-content: center;
  gap: 2rem;
}

.connect-links a:hover {
  color: #e6c88a;
  transform: translateY(-2px);
}

.footer .copyright {
  font-size: 0.85rem;
  color: #aaa;
}
.social-icons {
  display: flex;
  align-items: center;   /* ← THIS is the key */
  gap: 1.5rem;
}
.social-icons i {
  font-size: 1.25rem;
  line-height: 1;
  display: block;
}

/* CONNECT heading */
.connect-title {
  color: #2f6f73;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 1rem;
}

.connect-title:hover {
  color: #3e8a8f;
}
