/* Google Fonts Import für eine schöne Serifenschrift */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400&display=swap');

body {
    background-color: var(--bg-body);
    font-family: 'Lato', sans-serif;
    
    /* WICHTIG FÜR HANDY: */
    min-height: 100vh;      /* Mindestens Bildschirmhöhe, aber darf wachsen */
    height: auto;           /* Damit man scrollen kann */
    
    display: flex;
    flex-direction: column; /* Zwingt Navi und Inhalt untereinander */
    align-items: center;
    justify-content: flex-start; /* Fängt oben an, nicht in der Mitte */

}

main {
    flex-grow: 1; /* Nimmt den restlichen Platz ein */
    display: flex;
    justify-content: center;
    align-items: center; /* Zentriert den Slider/Text innerhalb des freien Platzes */
    width: 100%;
    padding: 20px; /* Etwas Abstand zum Rand auf Handys */
}
.content-container {
    background-color: #ffffff;
    max-width: 600px;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sehr sanfter Schatten */
    border-top: 5px solid #8c9ea3; /* Ein dezenter Farbakzent (z.B. Salbeigrau) */
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.intro {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

a {
    color: #8c9ea3;
    text-decoration: none;
    border-bottom: 1px dotted #8c9ea3;
    transition: color 0.3s;
}

a:hover {
    color: #5f7a80;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}