/* Solstice Music Site - Minimalist Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #2d3748;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content h1 {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tagline {
    color: #718096;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Navigation */
nav {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    flex-wrap: wrap;
}

nav a {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Main Content */
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem 3rem;
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Update Cards */
.update-card {
    background: #f7fafc;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    border-left: 4px solid #667eea;
}

.update-card:last-child {
    margin-bottom: 0;
}

.update-date {
    color: #764ba2;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.update-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.update-card p {
    color: #4a5568;
}

/* Release Grid */
.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.release-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.release-artwork {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.release-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.release-year {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.listen-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.listen-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* About Section */
#about p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Contact Links */
.contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    padding: 2rem;
    border-radius: 30px 30px 0 0;
    margin-top: 2rem;
    color: #718096;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .release-grid {
        grid-template-columns: 1fr;
    }
}