/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    padding: 8rem 6rem;
    background: var(--paper);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--cream-dark) 20%, var(--cream-dark) 80%, transparent 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 300;
}

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

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid var(--cream-dark);
}

.faq-item:first-child {
    border-top: 1px solid var(--cream-dark);
}

/* Question Button */
.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: left;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--terracotta);
}

.faq-question span {
    flex: 1;
}

/* Icon */
.faq-icon {
    flex-shrink: 0;
    color: var(--terracotta);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-light);
    margin-bottom: 1rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .faq-section {
        padding: 6rem 2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
        gap: 1rem;
    }
}
