/* ===== ALLGEMEIN ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Comic Sans MS', cursive, sans-serif;
    background-color: #ffffff;
    color: #3a3a3a;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: #ffffff;
    border-bottom: 3px solid #b0c4de;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3a3a3a;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: #b0c4de;
    color: #ffffff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #3a3a3a;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #e8f0f8 100%);
    text-align: center;
    padding: 60px 20px;
}

.hero img {
    max-width: 100%;
    width: 700px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(176, 196, 222, 0.4);
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #4a6fa5;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* ===== CONTENT SECTIONS ===== */
.content {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.content h2 {
    font-size: 2rem;
    color: #4a6fa5;
    margin-bottom: 20px;
    text-align: center;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: justify;
}

/* ===== ZUSAMMENFASSUNG BOX ===== */
.summary-box {
    background-color: #f5f9fc;
    border: 2px solid #b0c4de;
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
}

.summary-box h2 {
    color: #4a6fa5;
    margin-bottom: 15px;
}

.summary-box ul {
    list-style: none;
    padding: 0;
}

.summary-box ul li {
    padding: 8px 0;
    font-size: 1.1rem;
}

.summary-box ul li::before {
    content: "🍃 ";
}

/* ===== MONATS-KARTEN ===== */
.months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.month-card {
    background: #ffffff;
    border: 2px solid #b0c4de;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.month-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(176, 196, 222, 0.5);
    background-color: #f5f9fc;
}

.month-card .emoji {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.month-card h3 {
    color: #4a6fa5;
    font-size: 1.3rem;
}

.month-card p {
    font-size: 0.95rem;
    color: #666;
    margin-top: 8px;
}

/* ===== ÜBER MICH ===== */
.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 50px auto;
    padding: 40px 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-section img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #b0c4de;
    box-shadow: 0 5px 20px rgba(176, 196, 222, 0.4);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: #4a6fa5;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

/* ===== KONTAKT ===== */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px 20px;
}

.contact-form h2 {
    text-align: center;
    color: #4a6fa5;
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-weight: 700;
    font-size: 1rem;
    color: #4a6fa5;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 18px;
    border: 2px solid #b0c4de;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a6fa5;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: #b0c4de;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #4a6fa5;
}

/* ===== MONATS-SEITE ===== */
.month-page {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px 20px;
}

.month-page h1 {
    color: #4a6fa5;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
}

.month-page .story {
    background: #f5f9fc;
    border-radius: 20px;
    padding: 35px;
    border: 2px solid #b0c4de;
    font-size: 1.15rem;
    line-height: 1.9;
}

.month-page .task {
    background: #fff8e1;
    border: 2px dashed #f0c040;
    border-radius: 15px;
    padding: 20px 25px;
    margin-top: 25px;
    font-weight: 700;
}

.month-page .task::before {
    content: "⭐ Aufgabe: ";
    color: #e6a800;
}

.month-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 10px;
}

.month-nav a {
    background-color: #b0c4de;
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.month-nav a:hover {
    background-color: #4a6fa5;
}

/* ===== FOOTER ===== */
footer {
    background-color: #f5f9fc;
    border-top: 3px solid #b0c4de;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    color: #777;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        background: white;
        border: 2px solid #b0c4de;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .month-nav {
        flex-direction: column;
        align-items: center;
    }

    .quiz-container {
        background: #fff8e1;
        border: 2px dashed #f0c040;
        border-radius: 15px;
        padding: 25px;
        margin-top: 25px;
        text-align: center;
    }

    .quiz-container h3 {
        color: #e6a800;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .quiz-options {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .quiz-options button {
        background: linear-gradient(135deg, #b0c4de 0%, #87aecf 100%);
        color: #ffffff;
        border: 3px solid #ffffff;
        padding: 14px 35px;
        font-size: 1.15rem;
        font-weight: 700;
        border-radius: 50px;
        cursor: pointer;
        width: 220px;
        transition: all 0.3s ease;
        font-family: inherit;
        box-shadow: 0 4px 12px rgba(176, 196, 222, 0.5);
        position: relative;
        overflow: hidden;
    }

    .quiz-options button::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .quiz-options button:hover::before {
        opacity: 1;
    }

    .quiz-options button:hover {
        background: linear-gradient(135deg, #4a6fa5 0%, #5a8abf 100%);
        transform: scale(1.08) rotate(-1deg);
        box-shadow: 0 6px 20px rgba(74, 111, 165, 0.4);
        border-color: #f0c040;
    }

    .quiz-options button:active {
        transform: scale(0.95);
    }

    .quiz-options button:nth-child(1) {
        animation: bounceIn 0.5s ease 0.1s both;
    }

    .quiz-options button:nth-child(2) {
        animation: bounceIn 0.5s ease 0.3s both;
    }

    .quiz-options button:nth-child(3) {
        animation: bounceIn 0.5s ease 0.5s both;
    }

    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.3) translateY(20px);
        }
        50% {
            transform: scale(1.05) translateY(-5px);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .quiz-result {
        margin-top: 20px;
        text-align: center;
    }

    .quiz-result img {
        max-width: 100%;
        border-radius: 15px;
        margin: 15px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .quiz-result .weg-img {
        border: 2px solid #b0c4de;
    }

    .retry-text {
        font-size: 1.2rem;
        font-weight: 700;
        color: #c0392b;
        margin: 10px 0;
    }

    .hidden {
        display: none;
    }

    .quiz-input {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .quiz-input input {
        padding: 14px 20px;
        font-size: 1.15rem;
        font-family: inherit;
        font-weight: 700;
        border: 3px solid #b0c4de;
        border-radius: 50px;
        width: 250px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(176, 196, 222, 0.3);
    }

    .quiz-input input:focus {
        outline: none;
        border-color: #4a6fa5;
        box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
        transform: scale(1.03);
    }

    .quiz-input button {
        background: linear-gradient(135deg, #b0c4de 0%, #87aecf 100%);
        color: #ffffff;
        border: 3px solid #ffffff;
        padding: 14px 35px;
        font-size: 1.15rem;
        font-weight: 700;
        border-radius: 50px;
        cursor: pointer;
        width: 220px;
        transition: all 0.3s ease;
        font-family: inherit;
        box-shadow: 0 4px 12px rgba(176, 196, 222, 0.5);
        position: relative;
        overflow: hidden;
    }

    .quiz-input button::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .quiz-input button:hover::before {
        opacity: 1;
    }

    .quiz-input button:hover {
        background: linear-gradient(135deg, #4a6fa5 0%, #5a8abf 100%);
        transform: scale(1.08) rotate(-1deg);
        box-shadow: 0 6px 20px rgba(74, 111, 165, 0.4);
        border-color: #f0c040;
    }

    .quiz-input button:active {
        transform: scale(0.95);
    }



}
