﻿/* === GRUSSKARTEN SPEZIAL-STYLES === */

/* Zentriert die Karte vertikal und horizontal auf dem Bildschirm */
.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh; /* Nutzt 70% der Bildschirmhöhe */
}

/* Die Basis-Karte für Grüße */
.card-greeting {
    background-color: #ffffff;
    padding: 50px 30px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 0 auto;
}

/* --- WEIHNACHTEN --- */
.style-christmas {
    border-top: 6px solid firebrick;
    [cite: 7, 19, 23]
}

.title-christmas {
    color: firebrick;
    [cite: 7, 19, 23] font-family: 'Georgia', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- NEUJAHR --- */
.style-newyear {
    border-top: 6px solid #003366;
    [cite: 1, 4, 16] background: linear-gradient(to bottom right, #ffffff, #f0f8ff);
}

.title-newyear {
    color: #003366;
    [cite: 1, 4, 16] text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* --- OSTERN --- */
.style-easter {
    border-top: 6px solid forestgreen;
    [cite: 21] background-color: #f9fff9;
}

.title-easter {
    color: forestgreen;
    [cite: 21] font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- NIKOLAUS --- */
.style-nikolaus {
    border-top: 6px solid #800000;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.title-nikolaus {
    font-family: 'Segoe UI', sans-serif;
    color: #a71d1d;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

/* --- HALLOWEEN (Neu) --- */
.style-halloween {
    border-top: 6px solid #ff6600;
    background-color: #1a1a1a; /* Dunkler Hintergrund für Grusel-Stimmung */
}

.title-halloween {
    color: #ff6600;
    font-family: 'Impact', sans-serif;
    letter-spacing: 3px;
    font-size: 2.5rem;
}

.style-halloween .text-greeting {
    color: #cccccc; /* Hellerer Text auf dunklem Grund */
}

/* --- VALENTINSTAG (Neu) --- */
.style-valentine {
    border-top: 6px solid #e91e63;
    background-color: #fff0f5;
}

.title-valentine {
    color: #e91e63;
    font-family: 'cursive';
    font-size: 2.5rem;
}

/* --- PFINGSTEN (Neu) --- */
.style-pfingsten {
    border-top: 6px solid #00bcd4;
    background-color: #f0fbff;
}

.title-pfingsten {
    color: #008ba3;
    font-family: 'Verdana', sans-serif;
    font-size: 2.3rem;
}

/* --- ALLGEMEINE ELEMENTE --- */
.text-greeting {
    font-size: 1.3rem;
    [cite: 2, 5, 8, 17, 20, 22, 24] color: #555;
    line-height: 1.6;
    font-style: italic;
}

.emoji-row {
    margin-top: 30px;
    [cite: 3, 6, 18] font-size: 2.5rem;
    letter-spacing: 10px;
}
