@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
    font-family: 'seriefenschrift25';
    src: url('/../assets/fonts/seriefenschrift25.woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: PT Serif, sans-serif, arial;
}

html {
    font-size: 100%;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 {
    text-align: center;
    font-size: 7vw;
    margin-bottom: 3rem;
    font-family: seriefenschrift25, sans-serif;
    font-weight: normal;
    line-height: 1;
}

p {
    font-size: 1.6vw;
    text-align: center;
}

@media (max-width: 1600px) {
    p {
        font-size: 2vw;
    }
}

@media (max-width: 1200px) {
    h1 {
        font-size: 8.5vw;
    }

    p {
        font-size: 2.3vw;
    }
}

@media (max-width: 1000px) {
    h1 {
        font-size: 9vw;
    }

    p {
        font-size: 2.8vw;
    }
}

@media (max-width: 800px) {
    h1 {
        font-size: 11.5vw;
    }

    p {
        font-size: 3.4vw;
    }
}

@media (max-width: 650px) {
    h1 {
        font-size: 13vw;
    }

    p {
        font-size: 4vw;
    }
}

@media (max-width: 450px) {
    h1 {
        font-size: 15.5vw;
    }
}

#header-image {
    width: 100vw;
    height: 100%;
}

.location-container {
    background-color: #f4f4f4;
    display: grid;
    padding: 3vw 0 2vw 0;
}

.location-map {
    margin: 3vw;
    width: 60vw;
    height: 55vh;
    justify-self: center;
    border: 1px #ccc solid;
}

#navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #000;
    width: 100%;
    overflow: hidden;
    list-style-type: none;
}

#navigation-container li {
    width: 100%;
}

#navigation-container li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    padding: 16px;
    transition: background-color 0.3s ease;
}

#navigation-container li:first-child a {
    justify-content: flex-start;
}

.nav-logo {
    margin-right: 6vw;
    width: 50px;
    height: 50px;
}

#dropdown {
    display: none;
}

#dropdown-content {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    z-index: 1;
}

#dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

#dropdown-content a:hover {
    background-color: #5f5f5f;
}

#navigation-container a:hover {
    background-color: #5f5f5f;
}

#dropdown-content a:active {
    background-color: #5f5f5f;
}

#navigation-container a:active {
    background-color: #5f5f5f;
}

#dropdown-icon {
    text-align: left;
}

@media (max-width: 600px) {
    #navigation-container li a {
        font-size: 1rem;
    }
}

#mobile-logo {
    width: 30px;
    height: 30px;
    margin-right: auto;
}

@media (max-width: 800px) {
    #navigation-container {
        justify-content: left;
    }

    #navigation-container li {
        display: none;
    }

    #navigation-container li a #mobile-logo {
        display: block;
        text-align: right;
    }

    #navigation-container li#dropdown {
        display: block;
    }

    #navigation-container li#dropdown #dropdown-content {
        position: relative;
    }

    #navigation-container li a#dropbtn {
        background-color: #333;
        color: white;
        padding: 14px 20px;
        cursor: pointer;
    }

    #navigation-container li a#dropbtn:hover {
        background-color: #111;
    }
}

.dresscode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    padding: 5vw 0 2vw 0;
}

.dresscode-container h2 {
    font-size: 1.5rem;
}

.dresscode-container-textbox {
    margin-bottom: 1%;
}

.photo-grid {
    width: 100%;
    padding: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.photo-grid img {
    height: 300px;
    width: auto;
    margin: auto;
    margin-bottom: 1%;
    border-radius: 4px;
}

.alt-dresscode-img {
    display: none;
}

.highlight-video-container {
    background-color: #f4f4f4;
}

.highlight-video {
    width: 80vw;
    height: 46vw;
    display: block;
    margin: 0 auto;
}

.playlist-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    background-color: #f27cae;
    padding: 0 0 3vw 0;
}

.spotify-frame {
    height: 20vw;
    width: 25vw;
    justify-self: center;
    margin: 2vw 0 0 0;
    border-radius: 12px
}

@media (max-width: 1757px) {
    .playlist-container {
        flex-direction: column;
        gap: 0;
    }

    .spotify-frame {
        width: 80%;
        height: 160px;
    }
}

#playlist-announcement {
    padding-top: 3vw;
}

.footer-container {
    width: 100vw;
    color: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    background-color: black;
    padding: 2vw;
}

.footer-contact > p > a,
.footer-links > p > a,
.footer-logout > p > a {
    color: white;
    text-decoration: none;
}

.footer-container > div {
    align-self: center;
    padding: 2vw;
}

.footer-logout > p {
    font-size: 3em;
}

@media (max-width: 800px) {
    .footer-container {
        flex-direction: column;
        align-items: stretch;
    }
}

main {
    flex: 1;
    background-color: lightgrey;
}

#impressum-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.bonus-info {
    font-size: 1.5vw;
    text-align: center;
}

#impressum-container > div, #impressum-container > p, #impressum-container > address {
    margin: 3vh;
}