/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Oswald', sans-serif; /* Tough, tall font suitable for metal */
    color: #e0e0e0;
    background-color: #111; /* Fallback */
    overflow-x: hidden;
}

/* Full Page Background */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: url('../background.jpg');
    background-size: cover;
    background-position: center top; /* anchor top so text is visible */
    background-repeat: no-repeat;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Slight dim for readability lower down */
    z-index: -1;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Navigation - Keep it distinct but not intrusive on the logo */
nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    /* Optional: glass effect if scrolled, but let's keep it simple first */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 40px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
    color: #cc3333; /* Dark red accent */
    text-shadow: 0 0 10px rgba(204, 51, 51, 0.5);
}

/* Content Sections */
/* Push content down so we don't cover the band name in the background image */
.spacer {
    height: 60vh; /* Adjust based on image text height */
    width: 100%;
}

section {
    padding: 60px 20px;
    margin-bottom: 40px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid #333;
    border-radius: 4px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #cc3333;
    display: inline-block;
    padding-bottom: 5px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    color: #ccc;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #cc3333;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #cc3333;
    transition: all 0.3s;
}

.btn:hover {
    background: transparent;
    color: #cc3333;
}

footer {
    text-align: center;
    padding: 40px;
    background: #000;
    color: #666;
    font-size: 0.8rem;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .spacer {
        height: 40vh; /* Less space on mobile */
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* TEMPORARY: Hide content during construction */
.container, footer {
    display: none;
}

