/* Grunddesign für ALLE Seiten (index.html, expose.html, impressum.html) */
body {
    background-color: #fdfdfd;                 /* Einheitliches Helles Off-White */
    color: #345c28;                            /* Dunkelgrüne Schrift */
    font-family: 'Exo', sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* Inhalts-Container zur Zentrierung */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- Design für das Hauptbild / Poster (index.html) --- */
.main-poster {
    max-width: 600px;         /* Begrenzt die Bildbreite auf Desktops/Laptops für optimale Ansicht */
    width: 100%;              /* Passt das Bild auf Smartphones automatisch dynamisch an */
    height: auto;             /* Behält das Seitenverhältnis exakt bei */
    display: block;
    margin: 0 auto 30px auto; /* Zentriert das Bild horizontal */
    border-radius: 4px;       /* Leicht abgerundete Ecken (optional) */
}

/* --- Design für die Navigationstabelle (Outlined Buttons) --- */
table {
    width: 100%;
    max-width: 800px;
    background-color: transparent;
    border-collapse: separate;
    border-spacing: 10px;
    margin: 0 auto 30px auto;
}

table td {
    text-align: center;
    padding: 0;
}

table a {
    display: block;
    background-color: #fdfdfd;
    color: #345c28;
    border: 2px solid #345c28;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

table a:hover {
    background-color: #345c28;
    color: #fdfdfd;
    text-decoration: none;
}

/* Typografie für Überschriften auf den Textseiten */
h1, h2, h3 {
    color: #345c28;
    font-weight: 700;
}

a {
    color: #345c28;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}