@font-face {
    font-family: 'Arimo';
    src: url('fonts/Arimo-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 1.5em 0 0 0; /* weniger Raum oben */
    font-family: 'Arimo', Arial, sans-serif;
    background-image: url('s3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    display: flex;
}

/* Fixierte Sidebar */
.sidebar {
    width: 10em;
    padding: 1.5em 0.5em 1.5em 0.5em;
    text-align: right;
    font-size: 0.8em;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.6em;
    position: fixed;
    top: 1.5em; /* weniger Abstand oben */
    left: 1em;
    background-color: rgba(0,0,0,0.5);
    border-radius: 8px;
    letter-spacing: -0.03em;
}

.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.6em;
    padding: 2px 4px;
}

.sidebar a:hover {
    text-decoration: underline;
}

/* Mittelspalte */
.main-content {
    flex: 1;
    max-width: 700px;
    margin-left: 12.5em; /* näher an Sidebar */
    padding-right: 1em;
    margin-top: 0; /* kein zusätzlicher Raum oben */
}

/* Header, Zitate, Footer */
header, blockquote, footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
}

/* Audio-Boxen */
.audio-container {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

audio {
    width: 100%;
    outline: none;
}

/* Dropdowns */
.dropdown {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: left;
    margin-top: 10px;
}

.dropdown-content {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    padding: 10px;
    color: white;
    text-align: left;
    margin-top: 5px;
}

.dropdown-content p {
    margin: 0;
    padding: 5px 0;
}

.dropdown.active .dropdown-content {
    display: block;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #ccc;
}

