/* Loving Luna Wellness – Polished Layout & Styling */

/* Palette */
:root {
  --lavender: #c9a9f5;
  --lavender-deep: #7b5f9c;
  --sage: #b6cdac;
  --dark-purple: #30163f;
  --pale-lavender: #f6efff;
  --moon-grey: #e4e7f2;
  --ink: #3a3449;
  --bg-soft: #f8f7fb;
  --card-bg: #ffffff;
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 169, 245, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(182, 205, 172, 0.25), transparent 55%),
    var(--bg-soft);
  min-height: 100vh;
}

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

/* Top strip / header */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background: var(--dark-purple); /* dark purple strip */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

header h1 {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pale-lavender); /* pale purple text */
  margin: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

nav a {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #f3e8ff; /* light nav text */
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

nav a:hover {
  background: rgba(246, 239, 255, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Hero / landing */

.hero {
  padding: 3.5rem 1.5rem 4rem;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Logo & tagline block */

.hero-logo-block {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-logo {
  width: 260px;
  max-width: 70vw;
  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
}

.tagline {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--lavender-deep);
  margin: 0;
}

/* Purple ombré text box */

.hero-text-box {
  margin: 0 auto;
  margin-top: 1.8rem;
  padding: 1.8rem 1.6rem;
  max-width: 800px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(123, 95, 156, 0.98),
    rgba(201, 169, 245, 0.95)
  ); /* purple ombré */
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.hero-text-box p {
  margin: 0 0 1rem;
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text-box p:last-child {
  margin-bottom: 0;
}

/* Buttons under text */

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-button {
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
}

.hero-button.primary {
  background: #ffffff;
  color: var(--lavender-deep);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.hero-button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.hero-button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

.hero-button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
/* Mission text inside purple hero box */
.mission-heading {
  margin-top: 1.3rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fdfbff;
  opacity: 0.9;
}

.mission-text {
  margin-top: 0.4rem;
}

/* Sage-colored highlight box under hero text */
.sage-highlight {
  margin: 1.8rem auto 0;
  padding: 1.4rem 1.4rem;
  max-width: 800px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(182, 205, 172, 0.15),
    rgba(182, 205, 172, 0.45)
  );
  border: 1px solid rgba(182, 205, 172, 0.7);
  color: #394238;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.sage-highlight p {
  margin: 0;
  line-height: 1.6;
}

/* Slight tweak for spacing on smaller screens */
@media (max-width: 768px) {
  .sage-highlight {
    padding: 1.2rem 1.1rem;
    margin-top: 1.5rem;
  }
}

/* Generic sections (About, Mission, etc.) */

.section {
  padding: 3.5rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.section p {
  max-width: 640px;
  margin: 0.5rem auto;
  line-height: 1.7;
  color: #545066;
}

/* Cards – services, testimonials, FAQ */

.service-card,
.testimonial-card,
.faq-item {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 169, 245, 0.2);
}

.service-card h3,
.testimonial-card h3,
.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.client-name {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #7b7693;
}

.faq-item p {
  margin: 0;
}

/* Contact layout */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(182, 205, 172, 0.6);
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(132, 129, 158, 0.5);
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(201, 169, 245, 0.7);
  border-color: transparent;
}

.contact-form button {
  margin-top: 0.3rem;
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  background: linear-gradient(135deg, var(--lavender), var(--sage));
  color: white;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.contact-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  filter: brightness(1.03);
}

.contact-info h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.contact-info p {
  margin-top: 0;
  margin-bottom: 1.1rem;
}

.embed-note {
  background: #272634;
  color: #f3ecff;
  padding: 0.9rem;
  border-radius: 10px;
  font-size: 0.8rem;
  overflow-x: auto;
}

/* Footer */

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: #6b6780;
}

/* Responsive tweaks */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 1rem 0.9rem;
  }

  nav {
    margin-top: 0.4rem;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-text-box {
    padding: 1.5rem 1.2rem;
  }

  .section {
    padding: 3rem 1.2rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* Services layout and cards */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2.2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 169, 245, 0.2);
  text-align: left;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.service-icon {
  font-size: 1.4rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--lavender-deep);
}

.service-intro {
  margin-top: 0.5rem;
  margin-bottom: 0.9rem;
  color: #555070;
  line-height: 1.6;
}

.service-how {
  margin: 0 0 1.1rem;
  color: #59556f;
  line-height: 1.6;
}

.session-options h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--ink);
}

.session-options ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.session-options li {
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #59556f;
}

.session-pill {
  display: inline-block;
  margin-right: 0.4rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(201, 169, 245, 0.16);
  color: var(--lavender-deep);
  font-size: 0.85rem;
  font-weight: 600;
}

.service-footer {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(201, 169, 245, 0.35);
  padding-top: 0.9rem;
}

.service-footer p {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  color: #56516b;
}

/* Booking buttons inside cards */

.book-button {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: none;
  background: linear-gradient(135deg, var(--lavender), var(--sage));
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.book-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  filter: brightness(1.03);
}

/* Comparison table */

.compare-table-wrapper {
  margin-top: 2.2rem;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

.compare-table thead {
  background: linear-gradient(
    135deg,
    rgba(123, 95, 156, 0.95),
    rgba(201, 169, 245, 0.95)
  );
  color: #ffffff;
}

.compare-table tbody tr:nth-child(even) {
  background-color: #f7f4ff;
}

.compare-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.compare-table th:first-child,
.compare-table td:first-child {
  min-width: 140px;
}

.compare-table td {
  color: #504b68;
}

/* Responsive tweaks for services */

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* FAQ accordion styles */

.faq-intro {
  max-width: 640px;
  margin: 0.5rem auto 1.8rem;
  line-height: 1.6;
  color: #545066;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(201, 169, 245, 0.25);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Remove default marker */
.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Summary (question) styling */
.faq-item summary {
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Arrow indicator */
.faq-item summary::after {
  content: "▾";
  font-size: 0.9rem;
  color: var(--lavender-deep);
  margin-left: 0.7rem;
  transition: transform 0.2s ease;
}

/* Rotate arrow when open */
.faq-item[open] summary::after {
  transform: rotate(-180deg);
}

/* Content area */
.faq-content {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #57526f;
  line-height: 1.6;
}
/* Subtle glow on open FAQ item */
.faq-item[open] {
  border-color: rgba(201, 169, 245, 0.7);
  box-shadow: 0 10px 26px rgba(123, 95, 156, 0.18);
}
/* Make emoji + text sit nicely on one line */
.faq-item summary {
  line-height: 1.4;
  gap: 0.4rem;
}

/* Slightly larger emoji at the start of questions */
.faq-item summary::first-letter {
  font-size: 1.1em;
}
@media (max-width: 768px) {
  .faq-list {
    padding: 0 0.3rem;
  }

  .faq-item summary {
    padding: 0.85rem 0.85rem;
  }

  .faq-content {
    padding: 0 0.85rem 0.9rem;
  }
}


.faq-content p {
  margin: 0.3rem 0;
}
