/* Grundlayout */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: #f7f5f0;
    color: #2e2e2e;
    min-height: 100vh;
}

/* Hintergrundbild */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("background.jpg"); /* optional */
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.8);
    z-index: 0;
}

/* Einladungskarte */
.card {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 1s ease;
    position: relative;
    z-index: 1;
}

/* Visible state applied by JS */
.card.is-visible {
    opacity: 1;
}

/* Typografie */
.names {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.details p {
    margin: 4px 0;
    font-size: 1rem;
}

.text {
    margin: 20px 0 30px;
    font-size: 1.1rem;
}

/* Button */
.button {
    display: inline-block;
    padding: 12px 24px;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background 0.2s ease;
}

.button:hover {
    background: #b9972f;
}
