* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Courier', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #8B0000;
    transition: padding 0.3s;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav a:hover {
    color: #8B0000;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    filter: brightness(0.3) contrast(1.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 20px;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0px #000, 0 0 40px rgba(139,0,0,0.6);
    font-weight: 400;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    text-transform: uppercase;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #8B0000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

.btn:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139,0,0,0.5);
}

.btn-primary {
    background: #8B0000;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Section Styling */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 8px;
    position: relative;
    text-transform: uppercase;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 400;
}

/* Section title with animated underline */
.section-title {
    position: relative;
    display: inline-block;
}

/* the red line itself */
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    width: 100px;
    height: 2px;
    background: #8B0000;
    
    /* start "invisible" (collapsed to center) */
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease-out;
}

/* when activated */
.section-title.in-view::after {
    transform: translateX(-50%) scaleX(1);
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spotify-embed {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stream-btn {
    padding: 1rem 2rem;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.stream-btn:hover {
    border-color: #8B0000;
    background: rgba(139,0,0,0.2);
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #8B0000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About Section */
.about {
    background: #0a0a0a;
}

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

.about p {
    font-size: 1.2rem;
    line-height: 2;
    color: #ccc;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    margin: 0 auto 3rem;
    display: block;
    border: 3px solid #8B0000;
    filter: contrast(1.2);
}

/* Tour Section */
.tour-list {
    max-width: 900px;
    margin: 0 auto;
}

.tour-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #0a0a0a;
    border: 1px solid #222;
    align-items: center;
    transition: border-color 0.3s;
}

.tour-item:hover {
    border-color: #8B0000;
}

.tour-date {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #8B0000;
}

.tour-venue {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tour-location {
    color: #888;
    letter-spacing: 1px;
}

/* Merch Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.merch-item {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.merch-item:hover {
    border-color: #8B0000;
    transform: translateY(-5px);
}

.merch-image {
    width: 100%;
    height: 300px;
    background: #111;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merch-image .placeholder {
    color: #444;
    font-size: 3rem;
}

.merch-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.merch-item .price {
    color: #8B0000;
    font-size: 1.5rem;
    margin: 1rem 0;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
    text-align: center;
}

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

.contact-email {
    font-size: 1.5rem;
    color: #8B0000;
    margin: 2rem 0;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #333;
    padding: 1rem 2rem;
}

.social-links a:hover {
    color: #8B0000;
    border-color: #8B0000;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: #000;
    border-top: 1px solid #8B0000;
    color: #666;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Cross Decoration */
.cross-decoration {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.1;
    font-size: 10rem;
    color: #8B0000;
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
        font-size: 0.7rem;
    }

    .hero h1 {
        letter-spacing: 5px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .cross-decoration {
        display: none;
    }

    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-links a {
        width: 100%;
        max-width: 300px;
    }
}
/* About section tagline */
.about-tagline {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #8B0000;
    font-weight: 300;
    text-transform: uppercase;
    font-style: italic;
}

/* Premium button styles */
.btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #8B0000;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

.btn:hover {
    color: #fff;
    border-color: #c00;
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139,0,0,0.5);
}

.btn-primary {
    background: #8B0000;
    color: #fff;
}

.btn-primary:hover {
    background: #c00;
    border-color: #c00;
}

/* Parallax hero */
.hero {
    background-attachment: fixed;
}
