/* ======== Allgemeine Stile ======== */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #2c2c2c; /* Dunkler Hintergrund, passend zum Bild */
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ======== Container für den Inhalt ======== */
.container {
    max-width: 800px;
    padding: 2rem;
}

/* Logo/Bild */
.logo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 4px solid #4a382a; /* Rahmenfarbe wie der Holzrahmen */
}

/* ======== Ankündigungstext ======== */
.announcement {
    margin-top: 2rem;
}

.announcement h1 {
    font-family: 'Kalam', cursive; /* Eine Schriftart, die an Handschrift erinnert */
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.announcement p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 0.5rem;
}

.announcement strong {
    color: #e59446; /* Orange-Ton aus deinem Logo */
}

.announcement .stay-tuned {
    margin-top: 2rem;
    font-size: 1.1rem;
    font-style: italic;
    color: #999;
}

/* ======== Anpassungen für kleinere Bildschirme ======== */
@media (max-width: 600px) {
    .announcement h1 {
        font-size: 2.2rem;
    }
    .announcement p {
        font-size: 1.1rem;
    }
}