/* Homepage Styles - SuperBowl */

/* Homepage FAQ Section */
.nycsb-faq-section {
    padding: 60px 80px;
    background: #e5e7eb;
}

.nycsb-faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.nycsb-faq-section h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
    color: black;
}

.nycsb-faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.nycsb-faq-item {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.3s ease;
}

.nycsb-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nycsb-faq-question {
    padding: 1.25rem 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
    user-select: none;
}

.nycsb-faq-question:hover {
    background: #4783c4;
    color: white;
}

.nycsb-faq-question.active {
    background: #f5f5f5;
    color: #333;
}

.nycsb-faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: inherit;
    flex: 1;
    line-height: 1.4;
}

.nycsb-faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.nycsb-faq-toggle::before,
.nycsb-faq-toggle::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nycsb-faq-toggle::before {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.nycsb-faq-toggle::after {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.nycsb-faq-question.active .nycsb-faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.nycsb-faq-answer {
    display: none;
    padding: 0;
    background: white;
}

.nycsb-faq-answer-content {
    padding: 1.25rem 1.5rem;
    color: #374151;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.nycsb-faq-answer-content p {
    margin: 0 0 1rem 0;
}

.nycsb-faq-answer-content p:last-child {
    margin-bottom: 0;
}

.nycsb-faq-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Styles for FAQ */
@media screen and (max-width: 1024px) {
    .nycsb-faq-section {
        padding: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .nycsb-faq-section {
        padding: 2rem 1rem;
    }

    .nycsb-faq-section .container {
        padding: 0;
    }

    .nycsb-faq-section h2 {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .nycsb-faq-question {
        padding: 1rem 1.25rem;
    }

    .nycsb-faq-question h3 {
        font-size: 1rem;
    }

    .nycsb-faq-answer-content {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

    .nycsb-faq-toggle {
        width: 20px;
        height: 20px;
    }

    .nycsb-faq-toggle::before {
        width: 14px;
        top: 9px;
        left: 3px;
    }

    .nycsb-faq-toggle::after {
        height: 14px;
        top: 3px;
        left: 9px;
    }
}
