/* Container for the entire album section */
.album-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    font-family: sans-serif;
}

.album-header h2 {
    margin: 0 0 4px 0;
    color: #1e293b;
}

.release-date {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin: 0 0 20px 0;
}

.album-footer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    line-height: 1.4;
}

.album-container {
    max-width: 450px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    font-family: system-ui, -apple-system, sans-serif;
    text-align: center;
}

.album-header h2 {
    margin: 0 0 4px 0;
    color: #0f172a;
    font-size: 1.6rem;
}

.release-date {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    margin: 0 0 24px 0;
}

.album-art-fallback img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.streaming-links h3 {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 16px;
}

/* Beautiful Interactive Buttons */
.music-btn {
    display: block;
    padding: 12px 24px;
    margin: 10px auto;
    max-width: 280px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.2s, background-color 0.2s;
}

.music-btn:hover {
    transform: translateY(-2px);
}

.youtube-btn {
    background-color: #ff0000;
    color: #ffffff;
}

.youtube-btn:hover {
    background-color: #cc0000;
}

.spotify-btn {
    background-color: #1ed760;
    color: #ffffff;
}

.spotify-btn:hover {
    background-color: #1aa34a;
}

/* Styling for the status badges on the piano cards */
.status-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.status-badge.upcoming {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.status-badge.project {
    background-color: #fffbeb;
    color: #d97706;
    border: 1px solid #fef3c7;
}

/* Make the upcoming album piano pop out slightly more */
.photo-card.spotlight {
    border: 1px solid #cbd5e1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

