/* === GÖTTLICHE VARIABLEN === */
:root {
    --tiefe: #050509;
    --licht: #f7f7f7;
    --gold: #f5c86b;
    --gold-sanft: rgba(245, 200, 107, 0.3);
    --kaiser-blau: #339af0;
    --kaiserin-gold: #f5c86b;
    --wahrheit-weiss: #ffffff;
    --frieden-grün: #51cf66;
    --hoffnung-blau: #a5d8ff;
    --liebe-rot: #ff6b6b;
    --karte: #15151c;
    --rand: #272733;
    --text-sanft: #a0a0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--tiefe);
    color: var(--licht);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--gold-sanft) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, var(--kaiser-blau) 0%, transparent 50%);
}

/* === NAVIGATION AUS LIEBE === */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 9, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rand);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-sanft);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--gold);
}

/* === HELD - DER ERSTE ADVENT === */
.hero {
    background: radial-gradient(circle at top, var(--gold) 0%, var(--tiefe) 70%);
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '🌟';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    opacity: 0.03;
    z-index: 0;
    animation: schweben 8s ease-in-out infinite;
}

@keyframes schweben {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -52%) scale(1.05) rotate(5deg); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.advent-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--tiefe);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--licht), var(--gold), var(--liebe-rot));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--licht);
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* === LIEBESVOLLE BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--liebe-rot));
    color: var(--tiefe);
    box-shadow: 0 8px 30px rgba(245, 200, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 200, 107, 0.6);
}

.btn-secondary {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--gold-sanft);
    transform: translateY(-3px);
}

/* === SEGNENSREICHE ABSCHNITTE === */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 300;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-sanft);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === DIE 24 TORE === */
.doors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.door {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 1rem;
    border: 2px solid var(--rand);
    text-decoration: none;
    color: var(--text-sanft);
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.door.active {
    background: linear-gradient(135deg, var(--gold), var(--liebe-rot));
    color: var(--tiefe);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(245, 200, 107, 0.4);
    transform: scale(1.1);
}

.door:hover:not(.active) {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.05);
}

/* === DIE CONTAINER === */
.containers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.container-card {
    background: var(--karte);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    border: 1px solid var(--rand);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.container-card.kaiserin {
    border-top: 4px solid var(--kaiserin-gold);
}

.container-card.kaiser {
    border-top: 4px solid var(--kaiser-blau);
}

.container-card.wahrheit {
    border-top: 4px solid var(--wahrheit-weiss);
}

.container-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(245, 200, 107, 0.1);
}

.container-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.container-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.kaiserin .container-title { color: var(--kaiserin-gold); }
.kaiser .container-title { color: var(--kaiser-blau); }
.wahrheit .container-title { color: var(--wahrheit-weiss); }

.container-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-sanft);
}

/* === DIE NEUE STADT === */
.city-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--karte);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--rand);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-text {
    color: var(--text-sanft);
    line-height: 1.6;
}

/* === MISSION DEUTSCHLAND ↔ AFRIKA === */
.mission {
    background: var(--karte);
    border-radius: 2rem;
    padding: 4rem;
    margin: 4rem 0;
    text-align: center;
    border: 1px solid var(--rand);
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-sanft);
    max-width: 800px;
    margin: 0 auto;
}

/* === DANK AN GOTT === */
.gratitude {
    text-align: center;
    padding: 5rem 2rem;
    background: radial-gradient(circle at center, var(--karte) 0%, transparent 70%);
    border-radius: 2rem;
}

.gratitude-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-sanft);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-style: italic;
}

/* === FUSS IN FRIEDEN === */
footer {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-sanft);
    border-top: 1px solid var(--rand);
    margin-top: 2rem;
    background: var(--karte);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-sanft);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

/* === RESPONSIVE LIEBE === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .containers-grid, .city-features {
        grid-template-columns: 1fr;
    }
    
    .doors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mission, .gratitude {
        padding: 3rem 1.5rem;
    }
}

/* === ANIMATIONEN === */
@keyframes erscheinen {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section > * {
    animation: erscheinen 0.8s ease-out;
}
