/* --- GLOBAL STYLES --- */
:root {
    --text-color: #f1f1f1; /* Light, based on the image background texture */
    --text-color-light: #444; /* Dark for light background */
    --bg-color-dark: #121212; /* Very dark industrial background */
    --bg-color-light: #f5f5f5; /* Light industrial background */
    --accent-color: #ff9f00; /* Warm accent for contrast */
    --text-color-dark-theme: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Headings */
h1, h2, h3, h4 {
    margin: 0 0 1rem;
    color: var(--text-color);
    letter-spacing: 0.1em;
}

p { margin-bottom: 1rem; }

a { text-decoration: none; color: inherit; transition: all 0.2s ease-in-out; }

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

/* Grids and Layout */
.section { padding: 80px 0; }
.grid-2-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    margin-right: 10px;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    background: none;
    cursor: pointer;
}

.btn-primary { background-color: #fff; color: #000; border-color: #fff; }
.btn-primary:hover { background-color: transparent; color: #fff; }
.btn-secondary { background-color: transparent; color: #fff; border-color: #fff; }
.btn-secondary:hover { background-color: #fff; color: #000; }
.btn-small { padding: 6px 15px; font-size: 0.8rem; margin-top: 10px; }

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- HEADER & NAV --- */
header {
    background-color: rgba(18, 18, 18, 0.95); /* Dark translucent background */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo { height: 60px; /* Small version for the top bar */ }

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav ul li a {
    display: block;
    padding: 0 20px;
    height: 80px;
    line-height: 80px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
}

nav ul li a:hover, nav ul li a.active { color: var(--accent-color); }

/* Hamburg Menu Toggle */
#nav-toggle { display: none; cursor: pointer; }
#nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.2s ease-in-out;
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Use the provided image for the background! Make sure logo.png is present. */
    background-image: url('logo.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent; /* Overrides the base dark theme */
    z-index: 1; /* Stay above any background effects */
}

/* Darkening overlay for text legibility on the textured image */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 2; /* Sits between image and content */
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3; /* On top of everything */
}

.hero-content h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for clarity */
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* --- SECTIONS --- */
.section-dark { background-color: #121212; color: #fff; }
.section-light { background-color: var(--bg-color-light); color: #000; }

.section-dark h2 { color: #fff; font-family: 'Roboto Condensed', sans-serif;}
.section-light h2 { color: #000; font-family: 'Roboto Condensed', sans-serif; border-left: 4px solid var(--accent-color); padding-left: 15px;}

/* Section-Specifics */
.about-text { padding: 40px 0; }
.about-visual .abstract-box {
    height: 300px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Releases */
.releases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.release-card { background: #fff; border-radius: 4px; padding: 20px; color: #000; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.release-card .art-placeholder { height: 250px; background: #eee; margin-bottom: 20px; position: relative; }
/* Adding an abstract waveform shape inside the art placeholder */
.release-card .art-placeholder::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: repeating-linear-gradient(90deg, #ccc 0, #ccc 2px, transparent 2px, transparent 6px);
    opacity: 0.2;
}
.release-card h4 { font-size: 0.8rem; opacity: 0.6; margin: 0 0 5px; }
.release-card h3 { font-size: 1rem; margin-top: 0; }

/* --- FOOTER --- */
footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container { display: flex; flex-direction: column; align-items: center; }
.footer-logo { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; font-family: 'Roboto Condensed', sans-serif;}
.footer-logo p { margin: 0; }
.footer-social { margin-bottom: 30px; }
.footer-social a {
    display: inline-block;
    padding: 10px;
    margin: 0 10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 25px; height: 25px;
    line-height: 25px;
    font-weight: bold;
    font-size: 0.8rem;
}
.footer-social a:hover { background-color: #fff; color: #000; border-color: #fff; }
.copyright { font-size: 0.8rem; opacity: 0.5; margin: 0; }

/* --- MEDIA QUERIES --- */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 2.8rem; }
    .grid-2-cols { grid-template-columns: 1fr; text-align: center; }
    .about-visual .abstract-box { height: 200px; width: 80%; margin: 0 auto; }
}

@media (max-width: 768px) {
    /* Main Nav -> Side Drawer for small screens */
    #main-nav ul {
        display: none; /* JS will toggle this class to 'flex' */
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background-color: #121212;
        padding: 20px 0;
        text-align: center;
    }
    
    #main-nav ul.show { display: flex; } /* Class added by JS to open */

    #main-nav ul li a { height: 50px; line-height: 50px; padding: 0;}

    #nav-toggle { display: block; } /* Show Hamburg menu */

    .releases-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-content h1 { font-size: 2rem; }
}
