* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #77005d;
    color: #fffef9;
    padding: 20px;
}

header .logo img {
    max-width: 150px;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fffef9;
    text-decoration: none;
    font-weight: 700;
}

footer {
    background-color: #77005d;
    color: #fffef9;
    padding: 20px;
    text-align: center;
}

footer .social-links {
    list-style: none;
    padding: 0;
}

footer .social-links li {
    display: inline;
    margin-right: 10px;
}

footer .social-links li a {
    color: #fffef9;
    text-decoration: none;
    font-weight: 700;
}

main {
    padding: 20px;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.band-info, .google-maps {
    margin-bottom: 40px;
}

.band-info a {
    color: #333;
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    margin-bottom: 5px;
}

.form-field input, .form-field textarea {
    padding: 10px;
    border: 1px solid #fffef9;
    font-size: 1rem;
    width: 100%;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: #fffef9;
    border: none;
    cursor: pointer;
}

nav ul li a:hover {
    color: #d47837;
}


/* Responsive Design */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        flex-direction: column;
        padding-top: 10px;
    }
    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    nav ul li a:hover {
        color: #d47837;
}

@media (max-width: 410px) {
    header .logo img {
        max-width: 120px }
    }
}