body {
    margin: 0;
    background: #0c0c0c;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

header {
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 250px;
    margin-bottom: 10px;
}

.main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    margin: 10px 0;
}

.intro-text {
    font-size: 18px;
}

.band-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    margin-top: 40px;
}

.musician-name {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5px;
    font-size: 16px;
}

#lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.musicians {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.musicians img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.musicians img:hover {
    transform: scale(1.05);
}

.text-section {
    text-align: center;
    padding: 20px;
    font-size: 18px;
}

.contact {
    text-align: center;
    padding: 20px;
}

.contact-button {
    border-radius: 8px;
    border: 1px solid rgba(201, 201, 201, 0.3);
    background: #0c0c0c;
    color: #c9c9c9;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: underline;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s ease;
}

.contact-button:hover {
    background: #fff;
    color: #0c0c0c;
}

footer {
    text-align: center;
    padding: 10px;
    background: #0c0c0c;
    color: #c9c9c9;
    margin-top: 40px;
    font-size: 14px;
}