/* 
  Styling inspiriert von alexandertechnik-eichstaett.de 
  Fokus auf Ruhe, Klarheit und Lesbarkeit.
*/

:root {
    --bg-color: #FFFFFF;
    --text-primary: #43515E;
    /* Dunkles Blaugrau für Überschriften/Haupttext */
    --text-secondary: #86939E;
    /* Helleres Blaugrau für Nebentext */
    --accent-blue: #6789BF;
    /* Typisches "Steel Blue" der Originalseite */
    --accent-hover: #4A6A9E;
    --divider-color: #E6E9EC;
}

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

body {
    /* Verwendung nativer, lokaler Systemschriften (DSGVO-konform ohne Downloads) */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;

    /* Hintergrund leicht bläulich/gräulich für mehr Frische */
    background-color: #f2f5f8;
    background-image: linear-gradient(to bottom, #f8fbfd 0%, #edf1f5 100%);

    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.message-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(67, 81, 94, 0.08);
}

.logo-wrapper {
    margin-bottom: 30px;
}

.subtle-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    /* Sorgt dafür, dass das Logo proportional bleibt, falls die Quelldatei nicht exakt quadratisch sein sollte */
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.subtle-logo:hover {
    opacity: 0.85;
    /* Slightly more visible on hover */
}

.content-box h1 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.divider {
    height: 1px;
    background-color: var(--divider-color);
    width: 60%;
    margin: 0 auto 30px auto;
}

.secondary-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

.book-link {
    display: inline-block;
    font-size: 1.25rem;
    color: #ffffff;
    background-color: var(--accent-blue);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.book-link:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(103, 137, 191, 0.3);
}

.copyright-text {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 40px;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .message-container {
        padding: 40px 20px;
    }

    .content-box h1 {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }
}