body,
html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    font-family: 'Georgia', serif;
    background: url('/images/linktree hintergrund.png') no-repeat center center fixed;
    background-size: cover;
    color: #3e2723;
    overflow: hidden;
}

.main-layout {
    display: flex;
    width: 100%;
    height: 100vh;
}

.side-column {
    flex: 1;
    display: none;
}

@media (min-width: 769px) {
    .side-column {
        display: block;
    }
}

.center-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}

.scroll-box {
    /* Feste Basis-Grösse */
    width: 500px;
    height: 750px;
    flex-shrink: 0;

    background: url('/images/schriftrolle.png') no-repeat center center;
    background-size: 100% 100%;

    /* Feste Paddings passend zur 500x750 Box */
    padding: 110px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;

    /* MAGIE: Skaliert die 500x750 Box perfekt in den Bildschirm, egal wie gross oder klein */
    /* Maximal 1.5x Vergrösserung auf sehr grossen Bildschirmen */
    transform: scale(min(1.5, min(calc(95vw / 500), calc(95vh / 750))));
    transform-origin: center center;
}

header h1 {
    font-family: 'Great Vibes', 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    margin-top: 25px;
    text-align: center;
    color: #2c1a17;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#link-list,
#partner-list {
    width: 100%;
    max-width: 320px;
}

/* Button-Styling für bessere Sichtbarkeit und Lesbarkeit */
.link-item {
    display: block;
    margin: 12px 0;
    padding: 15px 22px;
    text-align: center;
    text-decoration: none;
    color: #3e2723;
    font-size: 1.5rem;
    font-family: 'Cinzel', 'Georgia', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(145deg, rgba(62, 39, 35, 0.05), rgba(62, 39, 35, 0.15));
    border: 1px solid rgba(62, 39, 35, 0.3);
    border-radius: 8px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.link-item:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(145deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.1));
    box-shadow: 4px 8px 15px rgba(0, 0, 0, 0.2);
    color: #8b4513;
    border-color: #8b4513;
}

.partner-section {
    margin-top: 25px;
    text-align: center;
    width: 100%;
}

.partner-section h2 {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    border-top: 1px solid rgba(62, 39, 35, 0.2);
    padding-top: 15px;
    margin-top: 0;
}