/* FAQ page — supplements styles.css */

.logo { text-decoration: none; }
.nav-active { color: var(--pink) !important; font-weight: 500; }

/* Header */
.page-hero {
    padding: 4rem 2rem 2rem;
    display: flex;
    justify-content: center;
}

.faq-header-card {
    background: var(--cream);
    border-radius: 4px;
    padding: 3rem 5rem;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
    max-width: 500px;
    width: 100%;
}

.faq-header-card h1 {
    font-size: 4.5rem;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.faq-header-card p {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.65;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0 4rem;
}

.faq-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-category {
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
}

.faq-category h2 {
    font-size: 1.8rem;
    color: var(--pink);
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1.5px solid rgba(0,0,0,0.06);
}

/* FAQ Item / Accordion */
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: background 0.2s;
}

.faq-question:hover { background: rgba(0,0,0,0.02); }

.faq-question span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

.faq-icon {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: var(--pink);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}

.faq-item.open .faq-icon { color: var(--dark-green); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    font-size: 0.88rem;
    line-height: 1.85;
    color: var(--text-dark);
    opacity: 0.75;
    font-family: 'Montserrat', sans-serif;
}

.faq-answer a {
    color: var(--pink);
    text-decoration: none;
}
.faq-answer a:hover { text-decoration: underline; }

/* CTA */
.faq-cta {
    padding: 3rem 2rem 5rem;
    display: flex;
    justify-content: center;
}

.faq-cta-card {
    background: var(--cream);
    border-radius: 4px;
    padding: 3rem 5rem;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
    max-width: 460px;
    width: 100%;
}

.faq-cta-card h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-cta-card p {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.6;
    margin-bottom: 1.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header-card { padding: 2.5rem 1.5rem; }
    .faq-header-card h1 { font-size: 3.5rem; }
    .faq-category h2 { padding: 1.2rem 1.5rem 0.8rem; }
    .faq-question { padding: 1.1rem 1.5rem; }
    .faq-answer p { padding: 0 1.5rem 1.2rem; }
    .faq-cta-card { padding: 2.5rem 1.5rem; }
}
