/* ========================================
   FAQ Page Styles
   ======================================== */

/* Override navbar position for FAQ page */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.faq-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(96px + 2rem) 1rem 2rem;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 247, 228, 0.1);
}

.faq-title {
    font-family: 'JaneAust', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 247, 228, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 247, 228, 0.2);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: #FFF7E4;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.faq-answer + .faq-answer {
    margin-top: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 2rem 1.5rem;
    }

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

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1.125rem;
    }

    .faq-answer {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 1.5rem 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-list {
        gap: 1.5rem;
    }
}
