/* FAQ Section Styles */
.lyrics-faq-section {
    margin: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-title {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    margin: 0;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 3px solid #3498db;
}

.faq-title .section-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.faq-container {
    padding: 2rem;
    background: white;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
    transform: translateY(-2px);
}

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

.faq-question {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    color: #2c3e50;
    margin: 0;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #bdc3c7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.question-icon {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 2rem;
    text-align: center;
}

.faq-answer {
    padding: 1.5rem;
    background: #ffffff;
}

.answer-text {
    margin: 0;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.answer-icon {
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lyrics-faq-section {
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    .faq-title {
        padding: 1rem 1.5rem;
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .faq-container {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .faq-answer {
        padding: 1rem;
    }
    
    .answer-text {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .answer-icon {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .faq-title {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }
    
    .faq-container {
        padding: 1rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0.75rem;
    }
    
    .answer-text {
        font-size: 0.9rem;
    }
}

/* Accessibility */
.faq-item:focus-within {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.faq-question:hover {
    background: linear-gradient(135deg, #d5dbdb 0%, #a6acaf 100%);
}

/* Print Styles */
@media print {
    .lyrics-faq-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .faq-title {
        background: #f8f9fa !important;
        color: #000 !important;
    }
    
    .question-icon,
    .answer-icon {
        background: #6c757d !important;
        color: white !important;
    }
}
