/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    color: #cccccc;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    background-image: url('https://www.transparenttextures.com/patterns/black-linen.png'); /* Subtle texture */
}

a {
    color: #8a0303;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff0000;
    text-shadow: 0 0 5px #8a0303;
}

/* Typography */
h1, h2, h3 {
    font-family: 'UnifrakturMaguntia', cursive, 'Times New Roman', serif;
    color: #8a0303;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000;
}

h1 {
    font-size: 3rem;
    border-bottom: 2px solid #8a0303;
    padding-bottom: 10px;
    margin-top: 20px;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #333;
    background-color: rgba(10, 10, 10, 0.9);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(138, 3, 3, 0.2);
}

/* Navigation */
nav {
    text-align: center;
    margin-bottom: 40px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Sections */
.content-section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #222;
    background: #050505;
}

/* Bands List */
#search-container {
    text-align: center;
    margin-bottom: 20px;
}

#search-input {
    padding: 10px;
    width: 300px;
    background: #111;
    border: 1px solid #8a0303;
    color: #fff;
    font-family: 'Times New Roman', serif;
}

.band-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.band-card {
    border: 1px solid #333;
    padding: 15px;
    background: #0a0a0a;
    transition: transform 0.2s;
}

.band-card:hover {
    transform: scale(1.02);
    border-color: #8a0303;
}

.band-name {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'UnifrakturMaguntia', cursive;
}

.band-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    font-style: italic;
}

.band-style {
    color: #ccc;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #555;
}

/* Responsive */
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    nav ul li { display: block; margin: 10px 0; }
    .band-list { grid-template-columns: 1fr; }
}
