/* Jazz Lounge Theme */
:root {
    --bg-color: #fefefe; /* Cream */
    --text-color: #2C1810; /* Dark brown */
    --primary-color: #722F37; /* Burgundy */
    --secondary-color: #D4AF37; /* Gold */
    --dark-bg: #1a1a1a; /* Deep charcoal */
    --accent-bg: #f8f5f0; /* Warm beige */
}

body {
    font-family: 'Georgia', serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.band-name {
    font-size: 3.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5em;
    margin: 10px 0 30px;
    opacity: 0.9;
    font-style: italic;
}

nav {
    margin-top: 20px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
}

nav a:hover {
    background: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Band Members */
.band-members {
    padding: 80px 0;
    background: var(--accent-bg);
}

.band-members h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.member-card {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.member-card p {
    color: var(--text-color);
    font-style: italic;
}

/* Music Style Section */
.music-style {
    padding: 80px 0;
    background: var(--secondary-color);
    text-align: center;
    color: var(--text-color);
}

.music-style h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.music-style p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.influences {
    margin-top: 40px;
}

.influences h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.influences ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.influences li {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .band-name {
        font-size: 2.5em;
    }

    .hero h1 {
        font-size: 2em;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 5px 10px;
    }
}

/* Videos Section */
.videos {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    color: white;
}

.videos h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-card h3 {
    color: white;
    margin-top: 15px;
    font-size: 1.3em;
}

video {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: var(--bg-color);
    text-align: center;
    padding: 20px;
    margin-top: 0;
    border-top: 1px solid var(--primary-color);
}

footer p {
    margin: 0;
    font-size: 1.1em;
    color: var(--text-color);
    font-weight: 500;
}