/* General Styles & Reset */
:root {
    --color-dark-bg: #121212;
    --color-dark-alt: #1a1a1a;
    --color-text-light: #f0f0f0;
    --color-accent-gold: #c09a36; /* Inspired by the logo */
    --color-accent-red: #8b0000; /* Subtle hints of the blood/gore */
    --color-grey-text: #888;
    --font-heading: 'Oswald', sans-serif; /* Example, find a fitting font */
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-light);
    background-color: var(--color-dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-text-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-accent-gold);
    margin-bottom: 0.8em;
    text-transform: uppercase;
    text-align: center;
}

h1 { font-size: 3em; margin-bottom: 0.2em; }
h2 { font-size: 2.5em; margin-bottom: 1em; }
h3 { font-size: 1.8em; }

.section-padded {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background Textures (Conceptual) */
.bg-dark-texture {
    background-color: var(--color-dark-bg);
    background-image: url('../images/dark_texture.png'); /* A subtle dark, distressed texture */
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
}

.bg-dark-alt {
    background-color: var(--color-dark-alt);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--color-accent-gold);
    color: var(--color-dark-bg);
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--color-text-light);
    color: var(--color-dark-bg);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Header */
.main-header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.band-logo img {
    height: 60px; /* Adjust as needed */
    transition: transform 0.3s ease;
}

.band-logo img:hover {
    transform: scale(1.05);
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
}

.main-nav .nav-list li {
    margin-left: 30px;
}

.main-nav .nav-list a {
    color: var(--color-text-light);
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 0;
    position: relative;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-gold);
    transition: width 0.3s ease;
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.nav-toggle .icon-bar {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-text-light);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-text-light);
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero_background.png'); /* A dark, gritty image or a stylized version of the corridor */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px; /* To account for fixed header */
}

.hero-content {
    animation: fadeIn 2s ease-out;
}

.hero-section h1 {
    font-size: 6em;
    line-height: 0.9;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    color: var(--color-accent-gold); /* Make the main band name gold */
}

.hero-section h2 {
    font-size: 2.5em;
    margin-top: 10px;
    letter-spacing: 2px;
    color: var(--color-text-light);
}

.hero-album-cover {
    width: 500px;
    margin: 30px auto;
    display: block;
    border: 3px solid var(--color-accent-gold);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.latest-news {
    font-size: 1.2em;
    margin-top: 20px;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.band-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.about-content p {
    flex: 1;
    min-width: 300px;
    text-align: justify;
}

/* Music Section */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.album-item {
    background-color: var(--color-dark-bg);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(var(--color-accent-gold), 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.album-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 2px solid var(--color-accent-gold);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.album-item h3 {
    color: var(--color-accent-gold);
    margin-bottom: 10px;
}

.album-item p {
    font-size: 0.9em;
    color: var(--color-grey-text);
    margin-bottom: 15px;
}

.tracklist {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
    font-size: 0.95em;
    color: var(--color-text-light);
}

.tracklist li {
    padding: 5px 0;
    border-bottom: 1px dashed rgba(var(--color-grey-text), 0.3);
}

.tracklist li:last-child {
    border-bottom: none;
}

.music-links .btn {
    margin: 5px;
}

/* Tour Section */
.tour-list {
    margin-top: 40px;
}

.tour-item {
    background-color: var(--color-dark-alt);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--color-accent-red);
}

.tour-item span {
    font-size: 1.1em;
    margin-right: 15px;
    margin-bottom: 10px;
    flex-basis: auto;
}

.tour-date {
    font-weight: bold;
    color: var(--color-accent-gold);
}

.tour-location {
    color: var(--color-text-light);
}

.tour-venue {
    color: var(--color-grey-text);
    font-style: italic;
}

.btn-tickets {
    margin-left: auto; /* Pushes button to the right */
}

.no-tour-dates {
    text-align: center;
    font-style: italic;
    color: var(--color-grey-text);
    margin-top: 30px;
}

/* Videos Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-item {
    background-color: var(--color-dark-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding-bottom: 20px; /* For the h3 */
    text-align: center;
}

.video-item iframe {
    width: 100%;
    height: 200px; /* Default height, will be responsive */
    display: block;
    border: none;
}

.video-item h3 {
    margin-top: 20px;
    font-size: 1.3em;
    color: var(--color-text-light);
}

/* Merch Section */
.merch-items-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.merch-item {
    background-color: var(--color-dark-alt);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(var(--color-accent-red), 0.2);
}

.merch-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.merch-item h3 {
    color: var(--color-accent-gold);
    margin-bottom: 10px;
}

.merch-item p {
    color: var(--color-grey-text);
    margin-bottom: 20px;
}

.external-shop-link {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

/* Contact Section */
.contact-email {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 30px;
}

.social-links {
    text-align: center;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links img {
    width: 40px;
    height: 40px;
    /*filter: brightness(0.8) sepia(1) hue-rotate(20deg) saturate(3);  To give icons a golden tint */
}

/* Footer */
.main-footer {
    background-color: #0a0a0a;
    color: var(--color-grey-text);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    border-top: 1px solid rgba(var(--color-accent-gold), 0.1);
}

.main-footer p {
    margin-bottom: 10px;
}

.main-footer a {
    color: var(--color-grey-text);
}

.main-footer a:hover {
    color: var(--color-text-light);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Media Queries for Responsiveness --- */

/* Mobile Devices (Max-width 768px) */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column; /* This was default before, but good to ensure */
    }

    .main-nav {
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: block;
        align-self: flex-end;
        margin-top: -55px; /* Adjust as needed */
        margin-right: 10px;
        position: static; /* Reset from language switcher changes */
        right: auto;
        top: auto;
    }

    .main-nav .nav-list {
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        position: absolute;
        top: 80px;
        left: 0;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        opacity: 0;
        pointer-events: none;
    }

    .main-nav .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .main-nav .nav-list li {
        margin: 15px 0;
    }

    .main-nav .nav-list a {
        font-size: 1.2em;
    }

    /* Hero Section Adjustments */
    .hero-section h1 {
        font-size: 3.5em;
        letter-spacing: 2px;
    }
    .hero-section h2 {
        font-size: 1.5em;
    }
    .hero-album-cover {
        width: 200px;
    }

    /* About Section */
    .band-photo {
        margin-bottom: 25px;
    }
    .about-content p {
        text-align: left;
    }

    /* Tour Section */
    .tour-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .tour-item span {
        margin-bottom: 5px;
        margin-right: 0;
    }
    .btn-tickets {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    /* Video Section */
    .video-item iframe {
        height: 250px;
    }
}

/* Tablet Devices (Min-width 769px and Max-width 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-nav .nav-list li {
        margin-left: 20px;
    }

    .hero-section h1 {
        font-size: 5em;
    }
    .hero-section h2 {
        font-size: 2em;
    }

    .discography-grid, .video-grid, .merch-items-preview {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* Accessibility for navigation toggle */
.nav-toggle.active .icon-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.nav-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .icon-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}