* {
    margin: 0;
    padding: 0;
    color: #FFFFF0
}

a:link,
a:visited {
    color: #FFFFF0;
    text-decoration: none;
}

.logo-container {
    display: flex;
    padding-top: 30px;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.logo-container a img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo-container a:hover img {
    transform: scale(1.1);
}

.musicimage {
    width: 70%;
}

hr {
    width: 97%;
    margin-top: 10px;
}

body {
    font-family: 'Playfair Display', sans-serif;
    height: 100vh;
}

iframe {
    margin: 0 auto;
    display: block;
    padding: 0;
    border: none;
}

.music {
    padding-top: 30px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    height: 100vh;
    background: #2B1D16;
    overflow-x: hidden;
    overflow-y: scroll;
}

.top {
    width: 100vw;
    display: flex;
}

.left {
    width: 40%;
    display: inline-block;
    height: auto;
    align-content: center;
}

.right {
    width: 60%;
    height: auto;
    display: inline-block;
}

.menu-container {
    height: auto;
    width: 75%;
    margin: 0 auto;
    padding-top: 15px;
}

.menu-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: top;
    flex-wrap: wrap;
}

.music-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.menu-item {
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header {
    text-align: left;
    padding-left: 50px;
}

h2 {
    text-align: center;
}

.mediacard {
    background: rgba(255, 255, 255, 0.889);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    border-top: 4px solid #D2691E;
    margin: 0 auto;
    margin-top: 20px;
}

.mediacard:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.source {
    color: #D2691E;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.mediatitle {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.mediatext {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 1rem;
}

.eventimage {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.sectiontitle {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
    margin-top: 30px;
}

.subtitle {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

ul {
    padding-left: 50px;
}

.content {
    width: 65%;
    line-height: 1.5;
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    padding-bottom: 30px;
}


svg {
    width: 1.3rem;
    height: 1.3rem;
}

.newsletterpicture {
    width: 40%;
    display: block;
    margin: 0 auto;
    padding-bottom: 30px;
}

.mobiletitle {
    display: none
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        overflow-y: auto;
    }

    .musicimage {
        width: 100%;
    }

    .left {
        display: none;
    }

    .right {
        width: 100%;
        height: 50px;
    }

    .title {
        font-size: 2.5rem;
        margin-top: 10px;
    }

    h2 {
        font-size: 1.25rem;
    }

    .logo-container a img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .menu-container {
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        padding-top: 10px;
        width: 100%;
    }

    .menu-item {
        position: static;
        text-align: center;
        font-size: 16px;
    }

    .mobiletitle {
        display: flex;
    }

    .sectiontitle {
        font-size: 1.5rem;
    }

    .eventimage {
        width: 90%;
    }

    .content {
        width: 80%;
        font-size: 1rem;
        font-weight: 500;
    }

    svg {
        width: 16px;
        height: 16px;
    }

    .music-flex {
        display: flex;
        flex-direction: column;
    }

    ul {
        padding-left: 30px;
    }

    hr {
        width: 94%;
        margin-top: 5px;
    }

    .newsletter iframe {
        width: 350px;
    }

    .newsletterpicture {
        width: 90%;
    }

}