/*
 * Custom Styles for Gedenkseite Layout
 */

/* Hero-Header Styling */
.manus-hero-header {
    position: relative;
    width: 100%;
    height: 55vh; /* Ca. 50-60vh */
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden; /* Wichtig für das Overlay */
}

.manus-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Leichtes, dunkles Overlay */
    z-index: 1;
}

.manus-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.manus-hero-title {
    font-family: "Playfair Display", Georgia, serif; /* Elegante Serifenschrift */
    font-size: 3.5em;
    margin-bottom: 15px;
    line-height: 1.2;
}

.manus-hero-author {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1.2em;
    font-weight: 300;
    opacity: 0.9;
}

/* Lesebereich (Content Area) Styling - 
/* Lesebereich (Content Area) Styling - 'Blatt Papier' Effekt */
.site-content {
    position: relative;
    z-index: 3; /* Überlappt den Hero-Header */
    margin-top: -80px; /* Negativer Margin für Überlappung */
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
    border-radius: 5px;
    max-width: 800px; /* Begrenzte Breite für Lesbarkeit */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.entry-content {
    padding: 20px 0; /* Viel Weißraum im Textbereich */
    line-height: 1.8;
    font-size: 1.1em;
    color: #333;
}

/* GeneratePress spezifische Anpassungen */
body.single-post .site-main {
    padding-top: 0; /* Entfernt den Standard-Padding oben */
}

/* Google Fonts für Serifenschrift */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");

/* Anpassungen für Smartphones und kleine Tablets */
@media (max-width: 768px) {
    .manus-hero-title {
        font-size: 2.2em; /* Schrift auf Handys verkleinern */
    }
    .site-content {
        margin-top: -40px; /* Überlappung auf Handys reduzieren */
        padding: 20px; /* Etwas weniger Rand innen */
    }
}
