/* Allgemeines */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

html {
    background-color: black;
    color: white;
}

header {
    padding-bottom: 7em;
}

.underline {
    display: block;
    z-index: 99;
    position: fixed;
    top: 7.5em;
    width: 100%;
    height: 0.1em;
    background-color: white;
}

nav {
    overflow: hidden;
}

.nav-background {
    z-index: 1;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    background-color: black;
    height: 7.5em;
    width: 100%;
}

.social-media-container {
    padding-top: 0.5em;
    margin-bottom: 0.5em;
    z-index: 2;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    width: 100%;
    height: 2.8em;
    color: #9e9e9e;
}

.social-media-container img {
    max-height: 100%;
    width: auto;
    height: 1.8em;
    transition: all .2s ease-in-out;
}

.social-media-container img:hover {
    transform: scale(1.3);
}

.nav-container {
    z-index: 1;
    backface-visibility: hidden;
    position: fixed;
    top: 2.8em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    margin: auto;
    width: 100%;
    height: 5em;
    color: rgb(158, 158, 158);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-container img {
    translate: 0.2em -1.5em;
    transform: scale(1.5);
    max-height: 100%;
    width: auto;
}

.nav-menu {
    margin-left: -3em;
    display: flex;
    gap: 3em;
}

.nav-menu a {
    cursor: pointer;
}

.nav-menu a:hover {
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.2);
}

.nav-container ul {
    text-align: center;
}

nav a {
    text-decoration: none;
    color: rgb(158, 158, 158);
}

nav li {
    list-style: none;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.bar {
    background-color: white;
    display: block;
    width: 23px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

.hamburger {
    display: none;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* Banner */
.banner {
    background-color: black;
    height: 250px;
    text-align: center;
}

.banner img {
    max-height: 100%;
    width: auto;
}

section {
    margin-bottom: 3em;
}

section .headline {
    margin-bottom: 1.5em;
    text-align: center;
}

section h2 {
    margin-bottom: 0.5em;
}

.content {
    margin: auto 15%;
}

.container {
    text-align: center;
    align-content: center;
}

.upcoming-show {
    display: flex;
    justify-content: space-between;
    margin: 1em auto;
}

.event-left p {
    margin: 0.2em auto auto 1em;
}

.event-left .date {
    font-weight: 900;
}

.event-right {
    align-content: center;
    margin-left: 1em;
    margin-right: 2em;
}

.event-right a {
    font-size: x-large;
    padding: 8px 16px;
    border-radius: 0.5em;
    color: white;
    background-color: rgb(0, 0, 0);
    text-decoration: none;
    transition: all .2s ease-in-out;
    box-shadow: 0px 0px 10px 4px rgba(224, 224, 224, 0.69);
}

.event-right a:hover {
    box-shadow: 0px 0px 16px 6px rgba(255, 255, 255, 0.849);
}

.song-container {
    margin-top: 2em;
}

.song-container p {
    margin-bottom: 0.5em;
}

footer {
    margin: 2.5em auto 1.5em auto;
}

.footer-copyright {
    text-align: center;
    margin-bottom: 0.5em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.footer-links a {
    text-decoration: none;
    color: rgb(134, 134, 134);
}

.band-member {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5em;
}

.news-image {
    min-width: 350px;
    max-width: 50%;
    object-fit: fill;
    border: #9e9e9e solid 0.1em;
    margin-top: 0.5em;
}

.profile-container {
    justify-content: center;
}

.profile-container p {
    margin-top: 1.5em;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* box-shadow: 10px 10px 28px 0px rgba(167, 167, 167, 0.69); */
    box-shadow: 0px 0px 30px 0px rgba(167, 167, 167, 0.69);
    overflow: hidden;
    transition: all .2s ease-in-out;
}

.profile-pic:hover {
    /* box-shadow: 10px 10px 28px 0px rgba(255, 255, 255, 0.808); */
    box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.808);
}

.profile-pic img {
    width: 100%;
    height: 100%;
}

.object-fit-scale-down {
    object-fit: scale-down;
}

.object-fit-cover {
    object-fit: cover;
}

.social-icons {
    display: flex;
    margin-top: 1em;
    justify-content: center;
    gap: 1em;
}

.social-icons img {
    max-height: 100%;
    width: auto;
    height: 2em;
    transition: all .2s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.ep-icons-container {
    padding-top: 0.5em;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    width: 100%;
    height: 2.8em;
    color: #9e9e9e;
}

.ep-icons-container img {
    max-height: 100%;
    width: auto;
    height: 1.8em;
    transition: all .2s ease-in-out;
}

.ep-icons-container img:hover {
    transform: scale(1.3);
}

@media only screen and (max-width: 870px) {
    /* .milkglass-bg {
        height: 5em;
    } */

    header {
        padding-bottom: 5em;
    }

    .underline {
        top: 5em;
        transition: all .2s ease-in-out;
    }

    .underline.active {
        top: 24.4em;

    }

    nav {
        display: flex;
        justify-content: center;
    }

    .nav-background {
        height: 5em;
    }

    .nav-container {
        top: 0;
    }

    .social-media-container {
        z-index: 99;
        top: 1em;
        width: 1em;
        gap: 1em;
    }

    .nav-menu {
        position: fixed;
        top: 4.8rem;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background-color: black;
        transition: 0.3s;
        right: -100%;
    }

    .nav-container img {
        translate: 0 0;
        transform: scale(1);
        max-height: 100%;
        width: auto;
        margin-top: 0.5em;
        margin-left: -0.5em;
    }

    .nav-menu.active {
        right: 0;
        padding: 1em;
    }

    .nav-menu a {
        padding: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .content {
        margin: auto 2%
    }
}