@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400;500&family=Cinzel:wght@400;600&family=Lora:ital,wght@0,400;1,400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

:root {
  --bg: #f6f0f2;
  --bg-soft: #fbf8f9;
  --rose: #d8bcc3;
  --rose-deep: #b98796;
  --mauve: #9b6c79;
  --wine: #6c3240;
  --heading: #4a2331;
  /* Deep Burgundy / Plum for Headings */
  --text: #4d3a40;
  --text-soft: #7c6870;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(83, 47, 57, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --transition: all 0.35s ease;
  --max: 1280px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  width: 100%;
  display: block;
}

/* FAQ Hero */
.faq-hero {
  padding: 48px 0 24px;
  text-align: center;
}

.faq-hero h1 {
  margin: 0 auto 16px;
}

.faq-hero p {
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Accordion */
.faq-section {
  padding: 24px 0 80px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(155, 108, 121, 0.08);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 18px;
  margin: 0;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-body-inner {
  padding: 0 24px 24px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* FAQ Active State */
.faq-item.active {
  background: var(--bg-soft);
  border-color: rgba(185, 135, 150, 0.3);
}

.faq-item.active .faq-header h3 {
  color: var(--wine);
  font-weight: 600;
}

.faq-item.active .faq-icon {
  background: var(--wine);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-item.active .faq-body {
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
}

/* Responsive */
@media (max-width: 1100px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {


  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-header h3 {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300 !important;
}