/* ==========================================================================
   Design System: Dark & Vintage "Outlaw"
   ========================================================================== */

:root {
    --bg-color: #121212;
    --bg-lighter: #1e1e1e;
    --text-primary: #e0e0e0;
    --text-secondary: #aaaaaa;
    --accent-color: #d4af37; /* Gold/Amber */
    --accent-hover: #b8860b;
    --border-color: #333333;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    margin-bottom: 1.5rem;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   Hero / Banner
   ========================================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18,18,18,0.1) 0%, rgba(18,18,18,0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 3rem;
}

.band-name {
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
}

/* ==========================================================================
   Streaming Widget Section
   ========================================================================== */

.streaming-section {
    background-color: var(--bg-lighter);
    margin-top: -20px; /* Slight overlap for seamless blend */
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.streaming-widget {
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.streaming-widget:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   Biography Section
   ========================================================================== */

.bio-section {
    background-color: var(--bg-color);
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.bio-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.bio-content p:first-of-type {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 300;
}

/* ==========================================================================
   New Song Section
   ========================================================================== */

.new-song-section {
    background-color: var(--bg-lighter);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.song-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.song-image {
    flex: 1 1 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    position: relative;
}

.song-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    pointer-events: none;
}

.song-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.song-image:hover img {
    transform: scale(1.03);
}

.song-details {
    flex: 1 1 500px;
}

.song-details h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.credits {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

.highlight-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
    font-style: italic;
    margin: 2rem 0;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.highlight-quote::before, .highlight-quote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    line-height: 1;
}

.highlight-quote::before {
    top: 0; left: 10px;
}
.highlight-quote::after {
    bottom: -20px; right: 10px;
}

/* ==========================================================================
   Tour Dates Section
   ========================================================================== */

.tour-section {
    background-color: var(--bg-color);
}

.table-responsive {
    overflow-x: auto;
    background: var(--bg-lighter);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.tour-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.tour-table th, .tour-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tour-table th {
    background-color: rgba(0,0,0,0.5);
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-table tbody tr {
    transition: background-color 0.2s ease;
}

.tour-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.tour-table td:first-child {
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

/* ==========================================================================
   Logos / Footer Section
   ========================================================================== */

.logos-section {
    background-color: #0a0a0a;
    padding-top: 3rem;
    border-top: 2px solid #222;
}

.logos-section .container {
    padding: 0 0 3rem 0;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0.7;
}

.logos-grid img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) contrast(120%) brightness(80%);
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    filter: grayscale(0%) contrast(100%) brightness(100%);
    transform: scale(1.05);
}

/* Fix for specific problematic backgrounds if any */
.logos-grid img[src*="NOIR et 2313"],
.logos-grid img[src*="Promo reverse"] {
    border-radius: 4px;
}

.copyright {
    text-align: center;
    padding: 1.5rem;
    background-color: #000;
    color: #555;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Queries
   ========================================================================== */

@media (max-width: 768px) {
    .band-name {
        font-size: 2.5rem;
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .song-wrapper {
        flex-direction: column;
    }
    
    .tour-table th, .tour-table td {
        padding: 0.75rem 1rem;
    }
    
    .logos-grid gap {
        gap: 2rem;
    }
    
    .logos-grid img {
        max-height: 60px;
        max-width: 140px;
    }
}
