/* ============================================
   VIBES ON THE ROCK — FAQ Stylesheet
   ============================================ */

/* HERO */
.faq-hero {
  position: relative;
  background: #071D3A;
  background-image: url('https://vibesontherock.com/images/votr-faq-hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 60px 80px;
  overflow: hidden;
}
.faq-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7,29,58,0.75);
}
.faq-hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.faq-hero-content .hero-sub a { color: #D5B56F; }
.hero-coords {
  position: absolute; bottom: 36px; right: 48px; z-index: 2;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px; color: rgba(244,240,232,0.35); letter-spacing: 3px;
}

/* FAQ SECTION */
.faq-section {
  background: #F6F3EC;
  padding: 80px 60px;
}
.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

/* GROUP LABEL */
.faq-group {
  margin-bottom: 48px;
}
.faq-group-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #D5B56F;
  border-bottom: 1px solid rgba(213,181,111,0.3);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

/* FAQ ITEMS — pill card style */
.faq-item {
  background: #fff;
  border-radius: 50px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(7,29,58,0.06);
  transition: box-shadow 0.2s;
}
.faq-item.open {
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(7,29,58,0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 18px 20px 18px 20px;
  cursor: pointer;
  text-align: left;
  gap: 14px;
}
.faq-question:hover .faq-q-text { color: #E98970; }

.faq-q-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(213,181,111,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #D5B56F;
}
.faq-q-icon svg { display: block; }

.faq-q-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #071D3A;
  line-height: 1.4;
  flex: 1;
  transition: color 0.2s;
}
.faq-item.open .faq-q-text { color: #E98970; }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #D5B56F;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: background 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon {
  background: #E98970;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(7,29,58,0.68);
  padding: 4px 24px 24px 70px;
}
.faq-answer p strong { color: #071D3A; }
.faq-answer p a { color: #E98970; text-decoration: none; }
.faq-answer p a:hover { text-decoration: underline; }

/* CTA BLOCK */
.faq-cta {
  background: #071D3A;
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 56px;
}
.faq-cta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #D5B56F;
  margin-bottom: 12px;
}
.faq-cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: #F6F3EC;
  margin-bottom: 10px;
}
.faq-cta-body {
  font-size: 14px;
  color: rgba(244,240,232,0.5);
  margin-bottom: 28px;
}

/* COORDS */
.tickets-coords-block {
  background: #071D3A; text-align: center; padding: 52px 60px;
}
.coords-main-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: 6px; color: #F6F3EC; margin-bottom: 8px;
}
.coords-date-text {
  font-size: 11px; font-weight: 500; letter-spacing: 3px; color: #D5B56F;
  text-transform: uppercase; margin-bottom: 4px;
}
.coords-place-text {
  font-size: 9px; font-weight: 600; letter-spacing: 3px;
  color: rgba(244,240,232,0.35); text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-hero { padding: 60px 24px; }
  .faq-section { padding: 60px 24px; }
  .faq-cta { padding: 36px 24px; border-radius: 16px; }
  .tickets-coords-block { padding: 40px 24px; }
  .faq-answer p { padding-left: 24px; }
}
