/* 1. Die Schrift für den gesamten Fließtext (p-Tags) */
body {
    /* Probiere "Segoe UI" für ein modernes Windows-Gefühl */
    font-family: "Segoe UI", Calibri, Helvetica, Arial, sans-serif;
    font-size: 24px;       /* Eine angenehme Größe für das Museum */
    line-height: 1.6;      /* Mehr Zeilenabstand macht den Text lesbarer */
    color: #333;           /* Ein sehr dunkles Grau ist sanfter als reines Schwarz */
}

/* Diese Regel überschreibt die body-Vorgabe nu4r für das Menü */
.main-nav ul li a {
    font-family: Arial, sans-serif; /* Eine andere Schrift für das Menü */
    font-size: 24px;               /* Menü deutlich kleiner als die 24px vom Haupttext */
    font-weight: normal;             /* Damit man die Links besser erkennt */
    text-decoration: none;         /* Entfernt den Unterstrich */
}

/* 2. Die Schrift für die großen Überschriften */
h1 {
    /* Cambria wirkt sehr edel für ein Museum */
    font-family: 'Segoe UI', sans-serif;
    font-weight: normal;     /* Fettgedruckt */
    font-size: 32px;
    color: #004488;        /* Optional: Ein schönes Dunkelblau für die Titel */
    margin-top: 40px;      /* Abstand nach oben */
}

/* 3. Speziell für das Zitat von Thomas Mann */
i {
    font-family: "Constantia", Georgia, serif;
    color: #555;
}
/* 1. Grundeinstellungen */
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    opacity: 0;
    animation: fadeInPage 1.5s ease-in-out forwards;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 2. Der Header (Kopfbereich) */
.main-header {
    background-color: #ffffff;
    padding: 20px 0 0 0;
    text-align: center;
    border-bottom: 4px solid #0056b3;
    margin-bottom: 5px;
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.header-wappen {
    width: 350px;
    height: auto;
    display: block;   /* Bleibt ein Block-Element */
    margin-left: auto; /* Schiebt das Element von links so weit wie möglich weg */
    margin-right: 100px;   /*  Abstand von rechts */
}

.welcome-text {
    color: #0056b3;
    font-size: 45px;
    font-family: 'Segoe UI', sans-serif; 
    margin: 0;
    font-weight: normal; 
    text-transform: uppercase;
}

.main-logo-img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    border-bottom: 1px solid #ddd;
}

.update-date {
    position: static;
    font-size: 0.7rem;
    color: #0056b3;
    margin: 0.25rem 0 0;
    text-align: right;
    display: block;
    letter-spacing: 0.02em;
    width: 100%;
}

.main-logo-wrapper {
    position: relative;
    display: inline-block;
}

.special-ribbon {
    position: absolute;
    left: 12px;
    top: 42%;
    background: rgba(255, 120, 0, 0.95);
    color: #fff;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    transform-origin: left center;
    transform: translateY(-50%) rotate(-22deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
    z-index: 2;
}

.special-ribbon:hover {
    transform: translateY(-2px) rotate(-22deg);
    box-shadow: 0 14px 24px rgba(0,0,0,0.22);
}

/* 3. Die Navigation */
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}G

.main-nav a {
    text-decoration: none;
    color: #0056b3;
    font-size: 22px;
    font-weight: normal;
    text-transform: none;
    font-family: 'Segoe UI', sans-serif;
    transition: 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    color: #000;
    text-decoration: underline;
}

/* 4. Der Hauptinhalt */
main {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
font-family: 'Segoe UI', sans-serif /*Klassisch für die Hauptüberschrift */
    font-size: 30px;            /* Größe der großen Überschrift */
    color: #0056b3;             /* Dein Museums-Blau */
        font-weight: normal;
    text-align: center;         /* Zentriert */
    margin-bottom: 24px;
}

h2 {
font-family: 'Segoe UI', sans-serif; /* Etwas sachlicher für Zwischenüberschriften */
    font-size: 24px;               /* Etwas kleiner als h1 */
    color: #0056b3;
    font-weight: normal;
    margin-top: 30px;
}

p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.museum-intro {
    font-family: 'Segoe UI', sans-serif;
}

.museum-text {
    font-family: 'Segoe UI', sans-serif;
}

.zitat {
    font-style: italic;
    color: #444;
    padding: 20px;
    background: #f9f9f9;
    border-left: 5px solid #0056b3;
    margin: 30px 0;
}

.galerie-container {
display: block;       /* Schaltet das Raster/Flexbox aus */
    width: 100%;
}

.galerie-container img {
display: block;
    width: 100%;          /* Flexibel für kleinere Fenster */
    max-width: 800px;     /* HIER die gewünschte Größe (z.B. 600px oder 800px) */
    height: auto;         /* Proportional korrekt bleiben */
    margin: 0 auto 40px;  /* '0 auto' zentriert das Bild, '40px' ist der Abstand nach unten */
    border: 1px solid #ccc; /* Optional: ein feiner Rahmen */
}