body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #eee;
    text-align: center;
}

/* HERO */
.hero {
    padding: 40px 20px;
}

.hero-image {
    max-width: 300px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin: 10px 0;
    letter-spacing: 4px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.listen-button {
    display: inline-block;
    padding: 12px 25px;
    background: #e60000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.2s;
}

.listen-button:hover {
    background: #ff3333;
}

/* BAND PHOTO */
.band-photo-section {
    margin: 40px 0;
}

.band-photo {
    max-width: 90%;
    border-radius: 10px;
}

/* MEMBERS */
.members {
    margin: 40px 0;
}

.members ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.members li {
    margin: 8px 0;
}

/* GALLERY */
.gallery {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 0 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
}

/* PRESS PACK */
.press-pack {
    margin: 40px 0;
}

.press-pack-button {
    display: inline-block;
    padding: 12px 25px;
    background: #444;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.2s;
}

.press-pack-button:hover {
    background: #666;
}

/* CONTACT FORM */
.contact {
    margin: 40px 0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    padding: 12px;
    background: #e60000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.contact-form button:hover {
    background: #ff3333;
}

.contact-note {
    margin-top: 10px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* FOOTER */
footer {
    margin: 40px 0 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}
