@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Uncial+Antiqua&display=swap');

body {
    background-color: #2c1e16;
    background-image: radial-gradient(#3e2723, #1a100b);
    color: #3e2723;
    font-family: 'Cinzel', serif;
    margin: 0;
    padding: 20px;
    padding-bottom: 100px; /* Platz für die Leiste unten */
}

.pergament {
    background-color: #f4e4bc;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    border: 2px solid #8b5a2b;
}

h1, h2 {
    font-family: 'Uncial Antiqua', cursive;
    text-align: center;
    color: #5c1606;
}

.subtitle {
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid #8b5a2b;
    padding-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 10px;
    border-bottom: 1px dashed #8b5a2b;
    text-align: center;
    font-size: 1.2rem;
}

.lose-bereich {
    margin-top: 30px;
    background: #e3d1a5;
    padding: 20px;
    border: 1px solid #8b5a2b;
    text-align: center;
}

input[type="file"], button {
    font-family: 'Cinzel', serif;
    margin-top: 10px;
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
}

button {
    background-color: #5c1606;
    color: #f4e4bc;
    border: none;
    border-radius: 3px;
}

/* Die Leiste unten */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    z-index: 1000;
}

.bottom-bar h3 {
    margin: 0;
    font-family: 'Uncial Antiqua', cursive;
    color: white;
}

.music-active {
    background-color: rgba(62, 39, 35, 0.95);
    border-top: 3px solid #d4af37; /* Gold */
}

.event-active {
    background-color: rgba(92, 22, 6, 0.95); /* Dunkelrot */
    border-top: 3px solid #ff4500;
}

.hidden {
    transform: translateY(100%);
}
