/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

:root {
    --primary-color: #c41e3a;
    --secondary-color: #8b0000;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --accent-metal: #c0c0c0;
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-red: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Saira Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 18px;
}

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

/* ========================================
   NAVIGATION
   ======================================== */

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: var(--primary-color);
    box-shadow: 0 2px 20px rgba(196, 30, 58, 0.3);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(196, 30, 58, 0.5));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 15px rgba(196, 30, 58, 0.8));
    transform: scale(1.05);
}

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

.nav-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.85) 100%),
        url('../images/band_01.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo img {
    max-width: min(700px, 90vw);
    height: auto;
    filter: drop-shadow(0 0 20px rgba(196, 30, 58, 0.6))
            drop-shadow(0 0 40px rgba(196, 30, 58, 0.4))
            drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.8));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(196, 30, 58, 0.6))
                drop-shadow(0 0 40px rgba(196, 30, 58, 0.4))
                drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(196, 30, 58, 0.8))
                drop-shadow(0 0 50px rgba(196, 30, 58, 0.5))
                drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.8));
    }
}

.hero h1 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    letter-spacing: 10px;
    margin-bottom: 1rem;
    text-shadow:
        0 0 10px rgba(196, 30, 58, 0.8),
        0 0 20px rgba(196, 30, 58, 0.6),
        0 0 30px rgba(196, 30, 58, 0.4),
        3px 3px 10px rgba(0, 0, 0, 0.8);
}

.glitch {
    position: relative;
    color: var(--light-text);
}

.tagline {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    margin-bottom: 0.5rem;
    color: var(--accent-metal);
    font-weight: 300;
    letter-spacing: 2px;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gray-text);
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.btn {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 3px;
    height: 15px;
    background: var(--primary-color);
    animation: scrollLine 1.5s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ========================================
   SECTIONS COMMON STYLES
   ======================================== */

section {
    padding: 6rem 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--darker-bg);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-style: italic;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    background: var(--gradient-dark);
}

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

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-text .lead {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-metal);
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
}

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

.quote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background: rgba(196, 30, 58, 0.1);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--accent-metal);
    line-height: 1.7;
}

/* ========================================
   BAND MEMBERS SECTION
   ======================================== */

.members {
    background: var(--darker-bg);
}

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

/* Current lineup - 4 members in one row */
.lineup-section:first-of-type .members-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.member-card {
    background: var(--gradient-dark);
    padding: 2rem;
    border: 1px solid rgba(196, 30, 58, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.1), transparent);
    transition: left 0.5s ease;
}

.member-card:hover::before {
    left: 100%;
}

.member-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.member-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(50%);
}

.member-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    border: 2px solid rgba(196, 30, 58, 0.3);
}

.member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-photo::before {
    opacity: 0.5;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.member-card:hover .member-photo img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.member-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--light-text);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: 'Saira Condensed', sans-serif;
}

.member-bio {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 1.05rem;
}

.member-bio strong {
    color: var(--accent-metal);
}

/* Lineup Sections */
.lineup-section {
    margin-top: 4rem;
}

.lineup-section:first-of-type {
    margin-top: 3rem;
}

.lineup-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.lineup-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-red);
}

/* Past Members Section */
.past-members-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(196, 30, 58, 0.2);
}

.past-members-intro {
    text-align: center;
    color: var(--gray-text);
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-size: 1.1rem;
}

.past-members-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.past-member {
    opacity: 0.85;
    border-color: rgba(192, 192, 192, 0.2);
}

.past-member:hover {
    opacity: 1;
    border-color: rgba(192, 192, 192, 0.5);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.2);
}

.past-member .member-photo::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.past-member .member-photo img {
    filter: grayscale(50%);
}

.past-member:hover .member-photo img {
    filter: grayscale(20%);
}

.past-member .member-role {
    color: var(--accent-metal);
}

.past-member h3 {
    color: var(--gray-text);
}

.past-member:hover h3 {
    color: var(--light-text);
}

/* ========================================
   SETLIST SECTION
   ======================================== */

.setlist {
    background: var(--gradient-dark);
}

.setlist-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.setlist-col h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.setlist-items {
    list-style: none;
}

.setlist-items li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(196, 30, 58, 0.2);
    color: var(--gray-text);
    transition: all 0.3s ease;
    cursor: default;
    font-size: 1.05rem;
}

.setlist-items li:hover {
    padding-left: 10px;
    color: var(--light-text);
    border-bottom-color: var(--primary-color);
}

.setlist-items .artist {
    color: var(--accent-metal);
    font-weight: 700;
}

.setlist-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    text-align: center;
    color: var(--gray-text);
}

.setlist-note strong {
    color: var(--light-text);
}

/* ========================================
   LIVE GALLERY SECTION
   ======================================== */

.gallery {
    background: var(--darker-bg);
}

/* Upcoming Shows */
.upcoming-shows {
    margin: 3rem 0;
}

.shows-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 2rem;
}

.show-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--gradient-dark);
    border: 2px solid rgba(196, 30, 58, 0.3);
    padding: 1.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.show-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    transform: translateY(-3px);
}

.show-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.show-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-color);
    padding: 1rem;
    min-width: 80px;
}

.show-date .day {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.show-date .month {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.show-date .year {
    font-size: 0.9rem;
    opacity: 0.8;
}

.show-details h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.show-details h4 a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.show-details h4 a:hover {
    color: var(--primary-color);
}

.show-time {
    color: var(--accent-metal);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.show-address a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.show-address a:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 600px) {
    .show-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .show-info {
        flex-direction: column;
        gap: 1rem;
    }

    .show-logo {
        width: 80px;
        height: 80px;
    }
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid rgba(196, 30, 58, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ========================================
   TECHNICAL SECTION
   ======================================== */

.technical {
    background: var(--darker-bg);
}

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

.tech-card {
    background: var(--gradient-dark);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: rgba(196, 30, 58, 0.05);
    transform: translateX(5px);
}

.tech-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--accent-metal);
}

.tech-card ul {
    list-style: none;
}

.tech-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-text);
    position: relative;
    padding-left: 20px;
    font-size: 1.05rem;
}

.tech-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.tech-card ul li strong {
    color: var(--light-text);
}

.tech-download {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gradient-dark);
    border: 2px solid var(--primary-color);
    text-align: center;
}

.tech-download p {
    font-size: 1.1rem;
    color: var(--accent-metal);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    background: var(--gradient-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--accent-metal);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.3);
    color: var(--light-text);
    font-family: 'Saira Condensed', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    padding: 2rem;
    background: rgba(196, 30, 58, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.info-box h3 {
    font-family: 'Teko', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.info-box p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.info-box a {
    color: var(--accent-metal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-box a:hover {
    color: var(--primary-color);
}

.social-links {
    padding: 2rem;
    background: var(--gradient-dark);
    border: 2px solid var(--primary-color);
}

.social-links h3 {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.2);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    color: var(--light-text);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.4);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--primary-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 30, 58, 0.2);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        height: 5px;
    }
    50% {
        opacity: 1;
        height: 15px;
    }
    100% {
        opacity: 0;
        height: 5px;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: right 0.3s ease;
        padding: 2rem 0;
        border-top: 2px solid var(--primary-color);
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        padding: 1rem 0;
    }

    .burger {
        display: block;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .logo img {
        height: 50px;
    }

    .hero-logo img {
        max-width: 95vw;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .setlist-content {
        grid-template-columns: 1fr;
    }

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

    /* Current lineup responsive - 2 columns on tablet */
    .lineup-section:first-of-type .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .gallery-item {
        aspect-ratio: 16/10;
    }

    .member-photo {
        height: 250px;
    }

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

    .past-members-section {
        margin-top: 4rem;
        padding-top: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .hero-logo img {
        max-width: 98vw;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .member-photo {
        height: 220px;
    }

    .lineup-title {
        font-size: 1.5rem;
    }

    .lineup-section {
        margin-top: 3rem;
    }

    /* Current lineup responsive - 1 column on mobile */
    .lineup-section:first-of-type .members-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 0;
    }
}
