/*
Theme Name: Mainz fuer Kino Landingpage
Author: Dein Verein
Description: Eine minimalistische "Im Aufbau"-Landingpage für den Mainz für Kino e. V.
Version: 1.0
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #eded9e; /* Deine Wunschfarbe */
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Weiße Navigationsleiste */
.site-header {
    background-color: #ffffff;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* Logo-Bereich zentriert */
.logo-container {
    width: 120px; /* Breite des Logos */
    height: 120px; /* Höhe des Logos */
    background-color: #fff;
    border-radius: 50%; /* Macht den Container rund */
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 25px; /* Lässt das Logo leicht über die Navileiste herausragen */
    z-index: 10;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Macht auch das Bild selbst rund */
}

/* Hauptinhalt zentriert auf der Seite */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 60px; /* Platzhalter wegen dem überhängenden Logo */
}

.message-box {
    max-width: 600px;
}

.message-box h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.2;
}

.message-box p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
}
