/* Globale Einstellungen */
body {
    margin: 0;
    padding: 0;
    background-color: #FEFBF2;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.content-wrapper {
    text-align: center;
    max-width: 550px;
    width: 90%;
    padding: 40px 15px;
    flex: 1;
}

/* Header & Logo */
.logo-svg {
    width: 280px;
    height: auto;
    margin-bottom: 0px;
}

.tagline {
    font-size: 0.7rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 60px;
}

/* Bedsleep Button */
.btn-bedsleep {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 45px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    border: 1px solid #1a1a1a;
    transition: all 0.4s ease;
}

.btn-bedsleep:hover {
    background-color: transparent;
    color: #1a1a1a;
}

/* Vorregistrierung */
.divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 60px auto 40px;
    width: 60%;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Footer */
.main-footer {
    background-color: #abb68f;
    color: white;
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 0 0;
    font-family: 'Courier New', Courier, monospace;
}

.footer-top {
    text-align: center;
    margin-bottom: 20px;
}

.footer-badge {
    width: 60px;
    height: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: white;
    text-decoration: none;
}

.footer-logo-container {
    text-align: center;
    margin-top: 20px;
    bottom: 0;
}

.footer-big-logo {
    font-family: 'Playfair Display', serif;
    /* Oder die Serif-Schrift, die du nutzt */
    font-size: 12vw;
    /* Passt sich der Bildschirmbreite an */
    margin: 0;
    line-height: 0.8;
    letter-spacing: -2px;
    opacity: 0.9;
    text-transform: none;
}

.footer-legal {
    text-align: center;
    margin-top: 30px;
    font-size: 0.7rem;
    opacity: 0.7;
}

.footer-legal a {
    color: white;
    text-decoration: none;
}

.floating-design-element {
    position: absolute;
    right: 40%;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

.floating-design-element img {
    width: 80px;
    height: auto;
}

@media (max-width: 600px) {
    .floating-design-element {
        right: 10%;
        opacity: 0.15;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
        margin-top: 20px;
    }

    .footer-big-logo {
        font-size: 15vw;
    }
}