/* ===============================
   SENDRY LUXURY THEME
================================ */

:root {
  --lavender-bg: #f4effb;
  --purple-main: #5b2db8;
  --purple-soft: #7a4de0;
  --gold-accent: #e6c45e;
  --gold-hover: #d4b24c;
  --text-main: #1f1f1f;
  --text-soft: #4a4a4a;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--lavender-bg);
  color: var(--text-main);
  line-height: 1.7;
  padding: 24px;
}

/* NAV */
.top-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.nav-button {
  background: var(--gold-accent);
  color: #3b1e6d;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.nav-button:hover {
  background: var(--gold-hover);
}

/* HERO */
.hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  color: var(--purple-main);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 30px;
}

/* BUTTONS */
.primary-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-main), var(--purple-soft));
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(91,45,184,0.35);
}

.primary-button:hover {
  transform: translateY(-2px);
}

/* SECONDARY BUTTONS */
.section-buttons {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.secondary-button {
  background: var(--gold-accent);
  color: #3b1e6d;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

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

/* SECTIONS */
section {
  max-width: 760px;
  margin: 0 auto 80px;
}

h2 {
  font-family: "Playfair Display", serif;
  color: var(--purple-main);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 30px;
}

/* TESTIMONIALS */
.testimonial {
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(91,45,184,0.08);
  margin-bottom: 18px;
}

.testimonial span {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* FAQ */
.faq-item {
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 12px 26px rgba(91,45,184,0.08);
}

.faq-item h3 {
  color: var(--purple-main);
  margin-bottom: 8px;
}

/* TRUST NOTE */
.trust-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 60px;
}

/* MOBILE */
@media (max-width: 600px) {
  body {
    padding: 16px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }
}
