/* home.css - Homepage Specific Styles */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero .btn {
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
}

.songs-section {
    padding: 3rem 0;
    background: #f8f9fa;
    min-height: 400px;
}

.songs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.songs-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #212529;
    text-align: center;
}

.songs-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.song-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.song-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.song-link {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.song-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.song-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.song-meta {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .songs-list {
        grid-template-columns: 1fr;
    }
    
    .songs-section {
        padding: 2rem 0;
    }
}