body {
    background: rgb(17, 25, 27);
}
.main-container {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(1px);
    border-radius: 10px;
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
    position: relative;
}

.logo-wrapper {
    position: absolute;
    top: -128px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.location-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-top: -70px;
}

.button-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
    max-width: 400px;
    margin: 1.5rem auto 0;
}

.menu-button {
    width: 100%;
    justify-content: flex-start;
    background: rgba(166, 166, 166, 0.38);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    max-width: 170px;
}

.menu-button:hover {
    background: rgba(20, 20, 20, 0.6);
}

.icon-circle {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 0;
    height: 600px;
}

.first-section {
    min-height: 600px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-top: 10rem;
    border-bottom: 2px solid black;
}

.second-section {
    background: rgb(17, 25, 27);
    position: relative;
    z-index: 20;
    padding: 2rem 5px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}

.info-section {
    border-radius: 10px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    max-width: 780px;
}

.drop {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    max-width: 500px;
    padding: 2rem;
    margin: 0.5rem auto;
    justify-self: center;
}

.band-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.text-content {
    font-family: 'Titillium Web', sans-serif;
}

.button-grid > div:first-child .menu-button {
    margin-right: auto;
}

.button-grid > div:last-child .menu-button {
    margin-left: auto;
}

.page-container {
    min-height: 100%;
    padding-bottom: 2rem;
}

.button-grid {
    margin-top: 1.5rem;
}

.copyright {
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}



.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 640px) {
    .button-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 750px;
    }
    .button-grid > div:first-child .menu-button,
    .button-grid > div:last-child .menu-button {
        margin: 15px auto;
    }
    .background {
        height: 700px;
    }
    .first-section {
        min-height: 700px;
    }
}
@media (max-width: 640px) {
    .background {
        height: 750px;
    }
    .main-container {
        padding: 2rem 1rem 2rem;
        width: 95%;
    }
    
    .logo-wrapper {
        top: -80px;
    }
    
    .logo-wrapper img {
        width: 80%;
        max-width: 400px;
    }
    
    .location-text {
        margin-top: 0 !important;
        font-size: 0.85rem;
    }
    
    .menu-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        max-width: 160px;
        margin: 0 auto;
    }
    
    .icon-circle {
        width: 30px;
        height: 30px;
    }
    
    .first-section {
        padding-top: 8rem;
        min-height: 500px;
    }
}
.imprint-section {
    background: rgb(17, 25, 27);
    position: relative;
    z-index: 20;
    width: 100%;
}

.imprint-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.imprint-section h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff;
}

.imprint-section p {
    margin-bottom: 1rem;
    line-height: 1.5;
    white-space: pre-line;
}

.imprint-section strong {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* Erster Block ohne oberen Abstand */
.imprint-section p:first-of-type strong {
    margin-top: 0;
}

.imprint-section a {
    color: #fff;
    text-decoration: underline;
}

.imprint-section a:hover {
    opacity: 0.8;
}

@media (max-width: 640px) {
    .imprint-content {
        padding: 2rem 1.5rem;
    }
}
.footer-wrapper {
    background: rgb(17, 25, 27);
    padding: 1rem 0;
}

.footer-nav {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 0.75rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}