* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
}

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px 20px;

    background: #000;
}

.band-logo {
    width: min(700px, 90vw);
    height: auto;
    margin-bottom: 30px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2rem, 6vw, 4rem);
}

.tagline {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #ccc;
}

.booking-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;

    background: #fff;
    color: #111;

    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;

    transition: transform 0.2s ease;
}

.booking-button:hover {
    transform: scale(1.05);
}

.about,
.booking {
    min-height: 70vh;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about {
    background: #f4f4f4;
    color: #111;
}

.booking {
    background: #222;
}

.about h2,
.booking h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.about p,
.booking p {
    max-width: 700px;
    font-size: 1.2rem;
    line-height: 1.7;
}

footer {
    text-align: center;
    padding: 30px;
    background: #080808;
    color: #888;
}

.booking {
    background: #111;
    color: #fff;
    padding: 100px 20px;
}

.booking-content {
    width: min(700px, 100%);
    margin: 0 auto;
}

.booking h2 {
    margin-top: 0;
    margin-bottom: 10px;

    font-size: clamp(2.2rem, 6vw, 3.5rem);
}

.booking-intro {
    margin-bottom: 40px;

    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    font-weight: bold;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px;

    border: 1px solid #444;
    border-radius: 4px;

    background: #000;
    color: #fff;

    font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 15px 28px;

    background: transparent;
    color: #fff;

    border: 2px solid #fff;
    border-radius: 4px;

    font: inherit;
    font-weight: bold;
    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.submit-button:hover {
    background: #fff;
    color: #000;
}

#form-status {
    margin-top: 20px;
}