@font-face {
    font-family: NeueHaasRoman;
    src: url(./fonts/RedHatDisplay-Medium.ttf);
}
@font-face {
    font-family: NeueHaasBold;
    src: url(./fonts/RedHatDisplay-Black.ttf);
}
body {
    background-color: black;
    font-family: NeueHaasRoman;
    text-align: center;
    color: antiquewhite;
    margin: 0;
    padding: 0;
}
header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}
br {
    margin-bottom: 10px;
}
.language-link {
    display: block;
    padding: 1rem;
    font-family: NeueHaasBold;
    text-decoration: none;
    color: antiquewhite;
    cursor: pointer;
}
.band-name {
    font-family: NeueHaasBold;
    letter-spacing: 1rem;
    color: antiquewhite;
    text-decoration: none;
}
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 21px;
    height: 21px;
    margin-right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10% 0;
    z-index: 10;
}
.menu-toggle:focus {
    outline: none;
}
.menu-toggle :hover {
    background-color: none;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: antiquewhite;
    border-radius: 3px;
    transition: all 0.3s linear;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
}
.menu {
    position: absolute;
    margin-top: 15px;
    right: 0;
    width: 120px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.6);
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    font-family: NeueHaasRoman;
    text-align: left;
}
.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.menu ul li a {
    display: block;
    padding: 10px 20px;
    color: antiquewhite;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.menu ul li a:hover, .menu ul li a:focus {
    background-color: antiquewhite;
    color: black;
}
.image-container {
    width: 100%;
    height: 100%;
    padding-top: 3.3rem;
}
.band-photo {
    width: 100%;
    height: 100%
}
.index_logo {
    display: block;
    margin: auto;
    padding: 4.3rem 1rem 1rem 1rem;
    max-width: 65%;
}
.logo {
    display: block;
    margin: auto;
    padding: 4.3rem 1rem 1rem 1rem;
    max-width: 250px;
}
.slogan {
    padding-bottom: 4.3rem;
    margin: 0;
    margin: 0 1rem;
    text-align: center;
    font-size: 1.75vw;
    font-family: NeueHaasBold;
}
.arrowheads img {
    width: 150px;
    margin-top: 75px;
    transform: 180deg;
}
.album-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5rem 1rem;
    text-decoration: none;
}
a {
    text-decoration: none;
    color: antiquewhite;
    cursor: pointer;
}
.album-cover {
    max-width: 350px;
    width: 100%;
    object-fit: cover;
    border: none;
    box-shadow: 0 0 50px rgba(18, 84, 134, 0.4);
    align-items: center;
}
.album-text {
    padding: 1.5rem;
    margin: 0;
    text-align: center;
    font-size: 16px;
}
.social-links {
    display: flex;
    justify-content: center;
}
.social-links a {
    padding: 1rem;

}
.bio-text {
    margin: auto;
    text-align: center;
    max-width: 400px;
    padding: 0 5%;
}
.stuff {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    max-width: 350px;
    padding: 5rem 0;
    text-align: center;
}
h2 {
    margin: 0;
    font-size:xx-large;
    color:burlywood;
    font-family: NeueHaasBold;
    margin-bottom: 1rem ;
}
br {
    margin: 0;
}
.order {
    margin: 0 auto;
    width: 50px;
    padding: 10px 50px;
    background-color: none;
    color: burlywood;
    border-style: solid;
    border-width: 1.5px;
    text-decoration: none;
    text-align: center;
    font-family: NeueHaasRoman;
    border-color: burlywood;
    font-size: 16px;
}
.order:hover {
    margin: 0 auto;
    width: 50px;
    padding: 10px 50px;
    background-color: burlywood;
    color: black;
    text-decoration: none;
    text-align: center;
    font-family: NeueHaasRoman;
}
footer {
    display: flex;
    justify-content: center;
    padding: 0.25rem;
    border-top: 1px solid rgb(130, 130, 130);
    color: antiquewhite;
    margin-top: 7rem;
    bottom: 0;
    width: 100%;
}
.contact-container {
    display: block;
    max-width: 350px;
    margin: auto;
    padding-top: 5rem;
}
.form-group {
    margin-bottom: 1rem;
    text-align: left;
}
label {
    display: block;
    margin-bottom: 0.5rem;
    color: antiquewhite;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    box-sizing: border-box;
    background-color: antiquewhite;
    font-size: 14px;
}
textarea {
    height: 100px;
    font-family: NeueHaasRoman;
    font-size: 14px;
    background-color: antiquewhite;
}
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.checkbox-group label {
    margin-left: 0.5rem;
    margin-bottom: 0;
    font-family: NeueHaasRoman;
    font-size: 14px;
}
.button {
    display: block;
    max-width: 350px;
    padding: 0.75rem;
    background-color: black;
    color: burlywood;
    border-style: solid;
    border-width: 1.5px;
    text-decoration: none;
    text-align: center;
    font-family: NeueHaasRoman;
    border-color: burlywood;
    cursor: pointer;
    font-size: 16px;
}
.submit-btn {
    width: 100%;
}
.button:hover {
    display: block;
    max-width: 350px;
    padding: 0.75rem;
    background-color: burlywood;
    color: black;
    text-decoration: none;
    text-align: center;
    font-family: NeueHaasRoman;
    cursor: pointer;
}
.success-message {
    text-align: center;
    color: antiquewhite;
}
.svg-logo {
    height: 30px;
}
@media screen and (max-width: 768px) {
    .album-cover {
        max-width: 55%;
    }
    .slogan {
        font-size: 16px;
    }
    .index_logo {
        display: block;
        margin: auto;
        padding: 2.3rem 1rem 1rem 1rem;
        max-width: 65%;
    }
}