/* Custom styles for MusicHub */

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 1rem;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 0.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Song and album cards */
.song-card, .album-card {
    overflow: hidden;
}

.song-card img, .album-card img {
    height: 150px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.card-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.8rem;
}

/* Features section */
.features-section .card {
    height: 100%;
}

/* FAQ section */
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #495057;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

/* Footer */
footer {
    background-color: #212529;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

/* Load more button */
.load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    transition: transform 0.3s ease;
}

.load-more-btn:hover {
    transform: scale(1.05);
    color: white;
}

/* Search bar */
.input-group-lg .form-control {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    padding: 1rem 1.5rem;
}

.input-group-lg .btn {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    padding: 1rem 1.5rem;
}

/* Pagination */
.pagination .page-link {
    color: #667eea;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #667eea;
    border-color: #667eea;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
}