/* ============================================
   PRUNE TSIMI — faq.css
   prunetsimi.com/faq
   ============================================ */

:root {
  --yellow:    #f4e600;
  --navy:      #191732;
  --offwhite:  #f5f0e7;
  --magenta:   #dc087e;
  --white:     #ffffff;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--navy);
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  background: var(--yellow);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--navy);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  background: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--magenta); }

/* ── HERO ── */
.hero {
  padding: 140px 48px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--magenta);
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 560px;
}

/* ── FAQ SECTION ── */
.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--magenta);
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--navy);
  margin-bottom: 0;
  display: block;
}

/* ── ACCORDION ── */
.faq-item {
  border-bottom: 1px solid #d8d0c4;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.faq-question-text {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
}

.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--yellow);
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
}

.faq-answer-inner p {
  margin-bottom: 14px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner strong {
  color: var(--navy);
  font-weight: 700;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--yellow);
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 48px;
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}

.cta-block h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.cta-block p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
  background: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.cta-btn:hover { background: var(--magenta); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 32px 48px;
  text-align: center;
}

footer p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

footer a {
  color: var(--yellow);
  text-decoration: none;
}


