/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --text-light: #f5f5f5;
    --text-gray: #9ca3af;
    --border: #262626;
    --gradient-start: #1e3a8a;
    --gradient-end: #3730a3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(55, 48, 163, 0.2) 100%),
                url('images/live-01.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
}

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

.hero h1 {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 300;
}

.location {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -1px;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 1rem auto 0;
}

/* About Section */
#about {
    background: var(--secondary-dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-gray);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: var(--text-light);
    font-weight: 600;
}

.band-logo {
    max-width: 400px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.band-logo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Gear Section */
.gear-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.gear-summary {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.gear-summary p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.gear-summary .influences {
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 0;
    background: none;
    border: none;
    margin-top: 1.5rem;
}

.gear-summary strong {
    color: var(--accent);
    font-weight: 600;
}

/* Gallery Section */
#gallery {
    background: var(--secondary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    background: var(--primary-dark);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.caption {
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.9);
    text-align: center;
    font-style: italic;
    color: var(--text-gray);
    backdrop-filter: blur(10px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(55, 48, 163, 0.1) 100%),
                var(--primary-dark);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.contact-info {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--text-light);
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--accent-hover);
}

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem;
    background: var(--primary-dark);
    color: var(--text-gray);
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .section {
        padding: 5rem 0;
    }

    .section h2 {
        font-size: 2.5rem;
    }

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

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

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}
