/* --- Globale Einstellungen & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Deine lokalen Fonts */
@font-face {
    font-family: 'Georama';
    src: url('Georama-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MetalMania';
    src: url('MetalMania-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    /* Dunkles Theme */
    background-color: #1e1e1e;
    color: #e0e0e0;

    /* Fonts */
    font-family: 'Georama', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;

    /* Vollbild-Zentrierung */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Hauptbereich --- */
.main-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content-wrapper {
    width: 100%;
    max-width: 900px; /* Verbreitert für das Nebeneinander-Layout */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    background-color: #000000;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    border: 1px solid #333;
}

/* --- Split Layout (Links Logo / Rechts Text) --- */
.split-layout {
    display: flex;
    flex-direction: row;
    align-items: center; /* Vertikal mittig zueinander */
    justify-content: space-between;
    gap: 3rem; /* Abstand zwischen Logo und Text */
}

/* Linke Seite */
.logo-area {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 100%; /* Passt sich der Spalte an */
    height: auto;
    display: block;
    /* Da Flexbox im Elternteil zentriert, brauchen wir hier kein margin auto mehr */
}

/* Rechte Seite */
.text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Text in sich zentriert */
}

/* --- Textbereiche --- */
.text-block {
    margin-bottom: 2.5rem;
}

.text-block:last-child {
    margin-bottom: 0;
}

h2 {
    font-family: 'MetalMania';
    color: #c92a2a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

p {
    color: #b0b0b0;
}

/* --- Mail Bereich (außerhalb Container) --- */
.mail-container {
    margin-top: 2rem;
    text-align: center;
}

.mail-container a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.mail-container a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* --- Mobile Anpassung (Responsive) --- */
@media (max-width: 768px) {
    /* Ab Tablet-Größe und kleiner untereinander schieben */
    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .container {
        padding: 2rem;
        max-width: 500px; /* Wieder schmaler auf Mobile */
    }

    .logo {
        max-width: 250px; /* Logo etwas kleiner auf Mobile */
    }

    h2 {
        font-size: 1.3rem;
    }
}
