/* 
 * MVP Band Website - GRITTY ROCK EDITION
 * Theme: Garage Studio, Warm Amps, Brick & Neon
 */

:root {
    --bg-dark: #0a0a0a;
    --bg-panel: #141414;
    --text-white: #f0f0f0;
    --text-dim: #a0a0a0;
    --accent-amp-gold: #eeb856;
    /* Marshall Gold */
    --accent-red: #d12e2e;
    /* Neon Sign Red */
    --font-header: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-dim);
    line-height: 1.6;
    font-weight: 400;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-header);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 2px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

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

/* Buttons: Amp Style */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--accent-amp-gold);
    font-family: var(--font-header);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: 3px solid var(--accent-amp-gold);
    box-shadow: 0 0 10px rgba(238, 184, 86, 0.1);
    transition: all 0.2s ease;
    letter-spacing: 2px;
}

.btn:hover {
    background-color: var(--accent-amp-gold);
    color: #111;
    box-shadow: 0 0 20px rgba(238, 184, 86, 0.4);
}

/* -----------------------------------------------------------
   Hero Section 
   ----------------------------------------------------------- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../assets/img/hero_bg.png') no-repeat center center/cover;
    position: relative;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
}

/* Gradient Overlay for Text Readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    border: 4px solid var(--text-white);
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
}

.hero-content h1 {
    font-size: 8rem;
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--accent-amp-gold);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* -----------------------------------------------------------
   Common Section Styles 
   ----------------------------------------------------------- */
section {
    padding: 100px 0;
    border-bottom: 1px solid #222;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

/* -----------------------------------------------------------
   About Section ("The Lineup")
   ----------------------------------------------------------- */
#band {
    background-color: var(--bg-panel);
}

.scrum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.member-card {
    background-color: #0e0e0e;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-amp-gold);
}

.member-img-container {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--accent-amp-gold);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) contrast(1.1);
    /* Vintage vibe */
    transition: transform 0.6s ease, filter 0.6s ease;
}

.member-card:hover .member-img {
    transform: scale(1.1);
    filter: sepia(0%) contrast(1.2);
}

.member-name {
    font-size: 1.8rem;
    margin: 15px 0 5px 0;
    color: var(--text-white);
}

.member-role {
    color: #666;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.member-card:hover .member-role {
    color: var(--accent-amp-gold);
}

/* -----------------------------------------------------------
   Setlist Section 
   ----------------------------------------------------------- */
.setlist-section {
    background: url('../assets/img/setlist_bg_dark_grunge.png') no-repeat center center/cover;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid #333;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9);
}

.setlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay for readability */
    z-index: 0;
}

.setlist-section .container {
    position: relative;
    z-index: 1;
}

.setlist-section .section-title {
    color: #f0f0f0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-bottom: none;
    display: block;
    padding-bottom: 0;
}

.setlist-section .section-subtitle {
    color: #d12e2e;
    /* Neon Red */
    margin-top: 0;
}

.track-list-container {
    max-width: 800px;
    margin: 40px auto 0;
    background: #111;
    background-image: linear-gradient(#1a1a1a 1px, transparent 1px);
    background-size: 100% 40px;
    border: 2px solid #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    padding: 20px;
    transform: none;
    /* Straighten it out for cleaner look */
}

/* Remove tape effect */
.track-list-container::before {
    display: none;
}

.song-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid #222;
    transition: all 0.2s;
}

.song-item:hover {
    background-color: #1a1a1a;
    border-left: 4px solid #eeb856;
    /* Gold accent on hover */
    padding-left: 15px;
    transform: translateX(5px);
}

.song-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    /* Allow details to take available space */
}

/* Audio Player */
.play-btn {
    background: transparent;
    border: 2px solid #eeb856;
    color: #eeb856;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding-left: 2px;
    /* Visual center adjustment for play icon */
}

.play-btn:hover {
    background: #eeb856;
    color: #111;
    transform: scale(1.1);
}

.play-btn.playing {
    background: #d12e2e;
    border-color: #d12e2e;
    color: #fff;
    padding-left: 0;
}

.song-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.track-num {
    font-family: var(--font-header);
    color: #eeb856;
    /* Gold */
    font-size: 1.2rem;
    font-weight: 700;
    width: 30px;
    text-align: center;
}

.song-title {
    font-family: var(--font-header);
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.artist-name {
    font-family: var(--font-body);
    font-weight: 400;
    color: #888;
    font-style: normal;
    font-size: 0.85rem;
    margin-top: 2px;
}

.song-status {
    font-family: var(--font-header);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 5px 10px;
    border: 1px solid #444;
    background: transparent;
    color: #666;
}

.status-done {
    border-color: #444;
    color: #666;
    transform: none;
}

.status-todo {
    border-color: #eeb856;
    color: #eeb856;
}

/* Interaction */
.hidden-tracks {
    display: none;
}

.hidden-tracks.visible {
    display: block;
    animation: fadeIn 0.5s;
}

.controls-area {
    margin-top: 40px;
    text-align: center;
}

.controls-area .btn {
    border-color: #eeb856;
    color: #eeb856;
}

.controls-area .btn:hover {
    background-color: #eeb856;
    color: #111;
}

/* -----------------------------------------------------------
   Footer 
   ----------------------------------------------------------- */
footer {
    background-color: #050505;
    padding: 80px 0;
    text-align: center;
    border-top: 4px solid var(--accent-red);
}

footer p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-highlight {
    color: var(--text-white);
    font-weight: bold;
}

/* -----------------------------------------------------------
   Tour Dates Section 
   ----------------------------------------------------------- */
.tour-section {
    background-color: #0e0e0e;
    position: relative;
    padding: 80px 0;
}

.tour-section .section-title {
    color: var(--text-white);
}

.tour-section .section-subtitle {
    color: var(--accent-amp-gold);
}

/* Form Styles */
.add-event-container {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    background: #141414;
    padding: 30px;
    border: 1px solid #333;
    border-radius: 4px;
    /* Slight rounding */
}

.event-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.event-form input {
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
    transition: border-color 0.3s;
}

.event-form input:focus {
    outline: none;
    border-color: var(--accent-amp-gold);
}

.event-form .btn {
    padding: 15px 30px;
    min-width: 150px;
}

/* Event List Styles */
.events-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    border-left: 4px solid var(--accent-red);
    padding: 20px 25px;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.tour-item:hover {
    background: #1a1a1a;
    transform: translateX(5px);
    border-left-color: var(--accent-amp-gold);
}

.tour-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    width: 70px;
    height: 70px;
    border: 1px solid #333;
    margin-right: 20px;
}

.tour-date-box .day {
    font-family: var(--font-header);
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
}

.tour-date-box .month {
    font-family: var(--font-header);
    font-size: 0.9rem;
    color: var(--accent-amp-gold);
    text-transform: uppercase;
    line-height: 1;
}

.tour-info {
    flex-grow: 1;
    text-align: left;
}

.tour-name {
    display: block;
    font-family: var(--font-header);
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-venue {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.tour-action {
    margin-left: 20px;
}

.tour-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #444;
    padding: 8px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.tour-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

/* -----------------------------------------------------------
   Responsive Design 
   ----------------------------------------------------------- */
@media (max-width: 900px) {
    .scrum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 5rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

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

    .hero-content {
        padding: 20px;
        border-width: 2px;
    }

    /* Tour Section Responsive */
    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .tour-date-box {
        margin-right: 0;
        width: 100%;
        height: 50px;
        flex-direction: row;
        gap: 10px;
    }

    .tour-info {
        text-align: center;
    }

    .tour-action {
        margin-left: 0;
        width: 100%;
    }

    .tour-btn {
        width: 100%;
    }
}