/* © 2026 Marcel Peter. Alle Rechte vorbehalten. */

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

body {
    font-family: 'EB Garamond', 'Georgia', serif;
    background-color: #61192e;
    color: #f5f0e8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 40px 24px;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.logo {
    width: 180px;
    height: auto;
    filter: brightness(1.1);
}

.divider {
    width: 60px;
    height: 1px;
    background-color: rgba(245, 240, 232, 0.3);
    margin: 8px 0;
}

h1 {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: #f5f0e8;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(245, 240, 232, 0.8);
    max-width: 440px;
}

.visit-text {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.6);
    margin-top: 8px;
}

.cta-button {
    display: inline-block;
    padding: 14px 48px;
    border: 1px solid rgba(245, 240, 232, 0.5);
    color: #f5f0e8;
    text-decoration: none;
    font-family: 'EB Garamond', 'Georgia', serif;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(245, 240, 232, 0.1);
    border-color: #f5f0e8;
}

.contact {
    margin-top: 8px;
    line-height: 1.8;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
}

.contact-title {
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 4px;
}

.contact a {
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #f5f0e8;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo {
        width: 140px;
    }

    .cta-button {
        padding: 12px 36px;
        font-size: 1rem;
    }
}
