/* CSS */
:root {
    --primary-bg: #111;
    --text-color: #eee;
    --accent-color: #d32f2f;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}
header {
    background: #000;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 0;
    margin: 0;
}
nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
nav a:hover {
    color: var(--accent-color);
}
section {
    padding: 100px 20px 60px;
    max-width: 1000px;
    margin: auto;
}
h1, h2, h3 {
    color: var(--accent-color);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}
.hero {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}
.hero p {
    font-size: 1.2rem;
    color: #aaa;
}
.members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.member {
    text-align: center;
    background: #1a1a1a;
    padding: 20px;
    border: 1px solid #333;
    width: 40%;
    min-width: 250px;
}
.member img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid var(--accent-color);
    filter: grayscale(80%);
    transition: filter 0.3s ease;
}
.member img:hover {
    filter: grayscale(0%);
}
.gigs table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #1a1a1a;
}
.gigs th, .gigs td {
    padding: 15px;
    border-bottom: 1px solid #333;
    text-align: left;
}
.gigs th {
    color: var(--accent-color);
}
.gigs tr:hover {
    background: #222;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.gallery img {
    width: 100%;
    height: auto;
    border: 1px solid #333;
    filter: contrast(120%);
}
.contact-info {
    text-align: center;
    background: #1a1a1a;
    padding: 30px;
    border: 1px solid #333;
    margin-top: 30px;
}
.socials {
    margin-top: 20px;
}
.socials a {
    color: var(--text-color);
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s;
}
.socials a:hover {
    color: var(--accent-color);
}
footer {
    text-align: center;
    padding: 25px;
    background: #000;
    color: #777;
    border-top: 2px solid var(--accent-color);
}