/* Grundlegende Seite */
body {
    font-family: 'Georgia', serif;
    background-color: #1a1a2e;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
header {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
}

h1 {
    color: #b389f4;
    font-size: 2.3em;
    margin: 0;
}

header p {
    margin-top: 8px;
    margin-bottom: 0;
}

/* Hauptcontainer */
.gedenkstaette-container {
    padding: 0px 0px;
}

/* Musik-Hinweis */
.musik-hinweis {
    font-size: 1.1em;
    color: #cbb6f6;
    font-style: italic;
    margin: 0 0 12px 0;
    opacity: 0.9;
    transition: opacity 1.5s ease;
}

/* Pyramid-Frame */
.pyramid-frame {
    width: 85%;
    max-width: 560px;
    margin: 20px auto;
    position: relative;
    border: 4px solid rgba(179, 137, 244, 0.6);
    box-shadow:
        0 0 25px rgba(179, 137, 244, 0.8),
        inset 0 0 12px rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    overflow: hidden;
    clip-path: polygon(15% 100%, 85% 100%, 100% 0, 0 0);
}

/* Bild */
.gedenkbild {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gedenkbild:hover {
    transform: scale(1.02);
}

/* Partikel-Overlay */
.animation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0) 70%
    );
}

/* Erinnerungstext */
.erinnerungstext {
    font-style: italic;
    margin-top: 15px;
    color: #ff99cc;
    font-size: 1.15em;
}

/* Footer */
footer {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* Hinweis ausblenden (JS) */
.musik-hinweis.fade-out {
    opacity: 0;
}
