/* ═══════════════════════════════════════════════
   FAQ PAGE — faq.css
   Vesora Films
   ═══════════════════════════════════════════════ */

/* ---- HERO ---- */
.faq-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1612 0%, #2c2420 35%, #0e0e0e 70%, #1c1c1c 100%);
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}

.faq-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.faq-hero-subtitle {
  font-size: 0.7rem;
  letter-spacing: 6px;
  font-weight: 300;
  color: var(--champagne);
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- INTRO ---- */
.faq-intro {
  background: var(--cream);
  padding: 60px 5% 40px;
  text-align: center;
}

.faq-intro-inner {
  max-width: 600px;
  margin: 0 auto;
}

.faq-intro-body {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: #555;
}

.faq-intro-link {
  color: #8a6d3b;
  border-bottom: 1px solid rgba(138,109,59,0.4);
  transition: opacity 0.2s;
}
.faq-intro-link:hover { opacity: 0.6; }

/* ---- FAQ SECTION ---- */
.faq-section {
  background: var(--cream);
  padding: 20px 5% 100px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ---- FAQ ITEM ---- */
.faq-item {
  border-bottom: 1px solid rgba(44,44,44,0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(44,44,44,0.12);
}

/* ---- QUESTION BUTTON ---- */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--dark);
  transition: color 0.2s ease;
}

.faq-question:hover { color: #8a6d3b; }

.faq-question[aria-expanded="true"] { color: #8a6d3b; }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--champagne);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

/* ---- ANSWER ---- */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
}

.faq-answer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: #555;
  padding-bottom: 28px;
  overflow: hidden;
}

.faq-answer p strong {
  color: var(--dark);
  font-weight: 400;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 600px) {
  .faq-hero { height: 50vh; min-height: 300px; }
  .faq-question { font-size: 1rem; padding: 22px 0; }
  .faq-section { padding: 20px 5% 72px; }
}
