/* ===== COLOR SCHEME ===== */
:root {
    --primary-bg: #ffffff;
    --secondary-bg: #1a1a1a;
    --accent-red: #8b0000;
    --accent-red-light: #a52a2a;
    --text-dark: #0a0a0a;
    --text-light: #ffffff;
    --border-color: #333333;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-bg);
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--secondary-bg);
    z-index: 1000;
    border-bottom: 2px solid var(--accent-red);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-red-light);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: 0.3s;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-dark {
    background-color: var(--secondary-bg);
    color: var(--text-light);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-red);
}

/* ===== HERO SECTION ===== */
.hero {
    background-image: url('img/bandphoto.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(139, 0, 0, 0.6) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: 5rem;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.content-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

/* ===== MEDIA SECTION ===== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.media-item {
    text-align: center;
}

.media-placeholder {
    background-color: var(--border-color);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-red);
    margin-bottom: 1rem;
}

.media-caption {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* ===== MERCH SECTION ===== */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.merch-item {
    text-align: center;
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.merch-image {
    background-color: #f5f5f5;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.merch-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.merch-price {
    font-size: 1.2rem;
    color: var(--accent-red);
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid var(--accent-red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 2px solid var(--accent-red);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .media-grid,
    .merch-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

 .stream-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
  }
  .stream-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
  }
  .stream-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: translateX(3px);
  }
  .stream-btn:active {
    transform: scale(0.98);
  }
  .stream-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .stream-name {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.01em;
  }
  .stream-arrow {
    margin-left: auto;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
  }