/* --- CSS Variablen --- */
:root {
    --bg-dark: #0a1410;
    --bg-card: #12281e;
    --text-main: #e6f4ed;
    --text-muted: #9ab4a5;
    --primary-green: #00ff88;
    --primary-hover: #00cc6d;
    --playful-1: #ff6b6b;
    --playful-2: #fca311;
    --playful-3: #9d4edd;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight { color: var(--primary-green); }
.highlight-playful-1 { color: var(--playful-1); }
.highlight-playful-2 { color: var(--playful-2); }
.highlight-playful-3 { color: var(--playful-3); }

a { text-decoration: none; color: inherit; }
.hidden { display: none !important; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 3rem 0; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--bg-dark);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}
.btn-secondary:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

/* --- Cookie Banner --- */
.cookie-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 20, 16, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cookie-box {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
}
.cookie-box p { margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--text-muted); }
.cookie-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Entry Gate (Neues Design) --- */
.entry-gate {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-dark);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem;
    overflow-y: auto;
    text-align: center;
}

.entry-header { margin-bottom: 3rem; }
.entry-header .logo { font-size: 2.2rem; margin-bottom: 0.5rem; }
.entry-header h3 { margin-bottom: 0; font-size: 1.2rem; color: var(--text-main); }
.entry-header p { color: var(--text-muted); font-size: 0.9rem; }

.entry-title-section { max-width: 600px; margin-bottom: 4rem; position: relative; }

.cursive-welcome {
    font-family: 'Caveat', cursive;
    color: var(--playful-2);
    font-size: 3.5rem;
    display: block;
    margin-bottom: -1rem;
    transform: rotate(-3deg);
}

.entry-title-section h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 1.5rem; }
.entry-desc { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; }

.entry-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    width: 100%;
}

.entry-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.entry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.entry-card:hover:nth-child(1) { border-color: rgba(0, 255, 136, 0.3); }
.entry-card:hover:nth-child(2) { border-color: rgba(252, 163, 17, 0.3); }

.icon-circle {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 1.5rem;
    border: 2px solid;
}
.icon-circle svg { width: 35px; height: 35px; }
.icon-green { border-color: rgba(0, 255, 136, 0.3); color: var(--primary-green); }
.icon-orange { border-color: rgba(252, 163, 17, 0.3); color: var(--playful-2); }

.entry-card h2 { font-size: 1.8rem; margin-bottom: 0.2rem; }
.card-subtitle { font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; display: block; }
.text-green { color: var(--primary-green); }
.text-orange { color: var(--playful-2); }

.entry-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-entry { width: 100%; padding: 1rem; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; }
.btn-green { background: var(--primary-green); color: var(--bg-dark); font-weight: 800; }
.btn-green:hover { background: var(--primary-hover); box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3); }
.btn-orange { background: var(--playful-2); color: var(--bg-dark); font-weight: 800; }
.btn-orange:hover { filter: brightness(1.1); box-shadow: 0 8px 25px rgba(252, 163, 17, 0.3); }

/* --- Header & Nav --- */
header {
    background: rgba(18, 40, 30, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 500;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%; max-width: 1200px; margin: 0 auto;
}
.logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; }
.logo span { color: var(--primary-green); }

nav ul { display: flex; list-style: none; gap: 2rem; }
nav a { font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
nav a:hover { color: var(--primary-green); }
.switch-link { color: var(--playful-1); }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--text-main); transition: 0.3s; }

/* --- Layout Grids --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* --- Hero Section --- */
.hero {
    min-height: 70vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 0 20px;
    background: radial-gradient(circle at center, var(--bg-card) 0%, var(--bg-dark) 100%);
    margin-top: 60px;
}
.hero h1 { font-size: 3.5rem; line-height: 1.1; }
.hero p { font-size: 1.15rem; max-width: 600px; margin: 1.2rem auto 1.8rem; color: var(--text-muted); }

/* --- Cards & Boxes --- */
.card, .event-box, .service-card {
    background: var(--bg-card); padding: 2rem; border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: transform 0.3s;
}
.card:hover, .service-card:hover { transform: translateY(-5px); }

.card-1 { border-left: 4px solid var(--playful-1); }
.card-2 { border-left: 4px solid var(--playful-3); }

.service-card .icon { font-size: 3rem; margin-bottom: 1rem; }
.service-intro { text-align: center; margin-bottom: 2rem; font-size: 1.05rem; color: var(--text-muted); }

/* --- Kontakt --- */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 1rem; background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1); color: var(--text-main);
    border-radius: 8px; font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--primary-green);
}

/* --- Footer --- */
footer { background: var(--bg-card); padding: 2rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-content { padding: 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;}
.footer-links a { margin-left: 1rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--text-main); }

/* --- Reviews "Weiterlesen" Logik --- */
.review-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-text.expanded { -webkit-line-clamp: unset; }

.read-more {
    display: inline-block; margin-top: 0.8rem; color: var(--primary-green);
    cursor: pointer; font-size: 0.9rem; font-weight: bold; transition: color 0.3s;
}
.read-more:hover { color: var(--playful-1); }

/* --- Portrait Image & Layout --- */
.about-grid-portrait {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.portrait-wrapper {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
    border-width: 4px;
    border-style: solid;
    padding: 0;
    overflow: hidden;
}

.portrait-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
}
.portrait-wrapper:hover { transform: translateY(-10px); }

/* --- About Redesign (Dozent) --- */
.about-redesign {
    position: relative;
    overflow: hidden;
}
.about-redesign-glow {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.about-redesign .container {
    position: relative;
    z-index: 1;
}

.about-redesign-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-redesign-text {
    display: flex;
    flex-direction: column;
}

.about-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--playful-1);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    position: relative;
}
.about-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--playful-1);
}

.about-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: var(--text-main);
}

.about-redesign-text > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    max-width: 480px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    flex-direction: column;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}
.about-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--playful-1);
}

.about-feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.about-feature p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-redesign-portrait {
    position: relative;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 40%,
        rgba(255, 255, 255, 0.01) 70%,
        rgba(255, 107, 107, 0.12) 100%
    );
    transition: transform 0.4s ease;
    overflow: visible;
}
.about-redesign-portrait::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(10px);
}
.about-redesign-portrait-inner {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    background: #0d1e17;
    aspect-ratio: 4/5;
}
.about-redesign-portrait-inner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 15%;
    transform: scale(1.02);
}
.about-redesign-portrait:hover {
    transform: translateY(-8px);
}

/* --- About Storypoints (Nachhilfe) --- */
.about-storypoints {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding-left: 0;
    margin-top: 0.5rem;
}

.about-storypoint {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    position: relative;
}

.storypoint-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.storypoint-icon svg {
    width: 20px;
    height: 20px;
    color: var(--playful-1);
}

/* Connecting line between storypoints */
.about-storypoint:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 48px;
    width: 2px;
    height: calc(100% - 8px);
    background: linear-gradient(to bottom, rgba(255, 107, 107, 0.25), rgba(255, 107, 107, 0.05));
    z-index: 1;
}

.storypoint-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}
.storypoint-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}
/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0px);
}

/* --- Vertical Timeline --- */
.timeline {
    position: relative;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-green), var(--playful-2), var(--playful-3));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 12px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-green);
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    z-index: 2;
}
.timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    padding: 0.6rem 0.5rem;
    text-align: center;
    flex-shrink: 0;
}
.timeline-month {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary-green);
    letter-spacing: 1px;
}
.timeline-day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1.1;
    color: var(--text-main);
}
.timeline-year {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.timeline-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}
.timeline-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}
.timeline-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary-green);
}
.timeline-badge.badge-online {
    background: rgba(252, 163, 17, 0.15);
    color: var(--playful-2);
}

/* --- Partner Logo Marquee --- */
.partners-section {
    padding: 3rem 0 4rem;
    background: var(--bg-card);
    overflow: hidden;
}
.partner-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}
.partner-marquee::before,
.partner-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.partner-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.partner-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}
.partner-track {
    display: flex;
    gap: 4rem;
    animation: marquee 40s linear infinite;
    width: max-content;
    align-items: center;
}
.partner-track:hover {
    animation-play-state: paused;
}
.partner-logo {
    flex-shrink: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.partner-logo:hover {
    opacity: 1;
    filter: none;
}
.partner-logo img {
    max-height: 55px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* --- Interactive Contact Section --- */
.contact-interactive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-chat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chat-bubble {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

/* Chat bubbles: hidden by default, animated on scroll */
.chat-bubble-hidden {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
}
.chat-bubble-visible {
    animation: chatSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.chat-bubble-visible:nth-child(2) { animation-delay: 0.4s; }
.chat-bubble-visible:nth-child(3) { animation-delay: 0.8s; }

@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-avatar {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.2);
}
.chat-text {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 15px 15px 15px;
    padding: 1rem 1.2rem;
}
.chat-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}
.chat-text p:last-child { margin-bottom: 0; }

.contact-mail-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.spam-guard {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}
.spam-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.spam-challenge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}
.spam-challenge span {
    color: var(--primary-green);
}
.spam-op, .spam-eq {
    color: var(--text-muted) !important;
    font-size: 1.2rem;
}
.spam-challenge input {
    width: 70px;
    padding: 0.5rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-main);
    transition: border-color 0.3s;
}
.spam-challenge input:focus {
    outline: none;
    border-color: var(--primary-green);
}
.spam-hint {
    font-size: 0.85rem;
    margin-top: 0.8rem;
    min-height: 1.3em;
}
.spam-hint.success { color: var(--primary-green); }
.spam-hint.error { color: var(--playful-1); }

.btn-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    text-align: center;
    padding: 1.2rem 2rem;
}
.btn-mail.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}
.btn-mail:not(.disabled) {
    animation: mailPulse 2s ease infinite;
}
@keyframes mailPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 20px 5px rgba(0, 255, 136, 0.15); }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 0.5rem;
}
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.detail-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Prominent clickable contact links */
.contact-details-prominent {
    gap: 1rem;
}
.contact-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-link-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
    transform: translateX(5px);
    color: var(--primary-green);
}
.contact-link-item .detail-icon {
    font-size: 1.4rem;
}

/* --- Testimonial Cards --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 136, 0.15);
}
.testimonial-quote {
    font-size: 3.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: -0.5rem;
    opacity: 0.6;
}
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 1.2rem;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
}
.author-role {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-main);
}
.author-context {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

/* --- Publications / Fachartikel --- */
.publications-section {
    background: var(--bg-dark);
}
.publication-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.publication-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--playful-2);
    border-radius: 15px;
    padding: 1.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.publication-card .pub-icon {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}
.publication-card .pub-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.4;
}
.publication-card .pub-publisher {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(252, 163, 17, 0.15);
    color: var(--playful-2);
    width: fit-content;
}
.publication-card .pub-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.publication-card .pub-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--playful-2);
    margin-top: auto;
    transition: color 0.3s ease;
}
.publication-card:hover .pub-link {
    color: var(--text-main);
}
.publication-card:hover {
    border-left-color: var(--playful-2);
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.15);
}

/* --- Nachhilfe Orange Accent Overrides --- */
.about-redesign-nachhilfe .about-label {
    color: var(--playful-2);
}
.about-redesign-nachhilfe .about-label::after {
    background: var(--playful-2);
}
.about-redesign-nachhilfe .about-feature-icon {
    background: rgba(252, 163, 17, 0.1);
}
.about-redesign-nachhilfe .about-feature-icon svg {
    color: var(--playful-2);
}
.about-redesign-nachhilfe .storypoint-icon {
    background: rgba(252, 163, 17, 0.1);
    border-color: rgba(252, 163, 17, 0.2);
}
.about-redesign-nachhilfe .storypoint-icon svg {
    color: var(--playful-2);
}
.about-redesign-nachhilfe .about-storypoint:not(:last-child)::after {
    background: linear-gradient(to bottom, rgba(252, 163, 17, 0.25), rgba(252, 163, 17, 0.05));
}
.about-redesign-nachhilfe .about-redesign-glow {
    background: radial-gradient(circle, rgba(252, 163, 17, 0.1) 0%, transparent 70%);
}
.about-redesign-nachhilfe .about-redesign-portrait::before {
    background: radial-gradient(circle, rgba(252, 163, 17, 0.25) 0%, transparent 70%);
}

/* --- Nachhilfe Hero Button --- */
.btn-hero-orange {
    background: var(--playful-2);
    color: var(--bg-dark);
    font-weight: 700;
}
.btn-hero-orange:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(252, 163, 17, 0.25);
}

/* --- Nachhilfe Contact Orange Overrides --- */
.path-nachhilfe .contact .highlight {
    color: var(--playful-2);
}
.path-nachhilfe .btn-mail {
    background: var(--playful-2);
    color: var(--bg-dark);
}
.path-nachhilfe .btn-mail:hover {
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(252, 163, 17, 0.25);
}
.path-nachhilfe .btn-mail:not(.disabled) {
    animation: mailPulseOrange 2s ease infinite;
}
@keyframes mailPulseOrange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252, 163, 17, 0.3); }
    50% { box-shadow: 0 0 20px 5px rgba(252, 163, 17, 0.15); }
}
.path-nachhilfe .contact-link-item:hover {
    border-color: rgba(252, 163, 17, 0.3);
    background: rgba(252, 163, 17, 0.05);
    color: var(--playful-2);
}
.path-nachhilfe .spam-challenge span {
    color: var(--playful-2);
}
.path-nachhilfe .spam-challenge input:focus {
    border-color: var(--playful-2);
}
.path-nachhilfe .chat-avatar {
    border-color: rgba(252, 163, 17, 0.2);
}

/* --- Desktop Compact --- */
@media (min-width: 1200px) {
    .container { padding: 2.5rem 0; }
    .hero { min-height: 65vh; }
    .about-redesign .container { padding: 2.5rem 0; }
    .timeline-item { margin-bottom: 1.8rem; }
    .feedback-section { padding: 2.5rem 0 !important; }
    .grid-3 { gap: 1.5rem; }
}

/* --- Responsive (Mobile) --- */
@media (max-width: 992px) {
    .about-grid-portrait { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .portrait-wrapper { max-width: 400px; margin: 0 auto; }
    .contact-interactive { grid-template-columns: 1fr; }
    .about-redesign-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-redesign-portrait { max-width: 400px; margin: 0 auto; order: -1; }
    .about-redesign-text { align-items: center; text-align: center; }
    .about-label::after { left: 50%; transform: translateX(-50%); }
    .about-redesign-text > p { max-width: 100%; }
}

@media (max-width: 768px) {
    .cursive-welcome { font-size: 2.8rem; }
    .entry-title-section h1 { font-size: 2.2rem; }
    .entry-cards-container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero { min-height: 60vh; margin-top: 50px; padding: 0 24px; }
    .hero p { font-size: 1rem; }

    .container { padding: 2rem 0; }
    
    .hamburger { display: flex; }
    nav.nav-menu-main {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--bg-card); flex-direction: column;
        display: none; padding: 2rem 0; text-align: center;
    }
    nav.nav-menu-main.active { display: flex; }
    nav ul { flex-direction: column; gap: 1.2rem; }

    /* Timeline mobile */
    .timeline { padding-left: 30px; }
    .timeline::before { left: 10px; }
    .timeline-item::before { left: -28px; width: 12px; height: 12px; }
    .timeline-item { flex-direction: column; gap: 0.8rem; }
    .timeline-date { flex-direction: row; gap: 0.5rem; min-width: unset; padding: 0.4rem 1rem; }
    .timeline-day { font-size: 1.2rem; }

    /* Partner marquee mobile */
    .partner-logo { height: 40px; }
    .partner-logo img { max-height: 40px; max-width: 140px; }
    .partner-track { gap: 2.5rem; }

    /* Contact mobile */
    .contact-interactive { grid-template-columns: 1fr; }
    .chat-avatar { width: 32px; height: 32px; font-size: 1.4rem; }

    /* About redesign mobile */
    .about-headline { font-size: 2.4rem; }
    .about-features { grid-template-columns: 1fr; gap: 1rem; }

    /* Service cards centered */
    .service-card { text-align: center; padding: 1.5rem; }
    .service-card .icon { display: block; margin: 0 auto 0.8rem; }

    /* Cards compact */
    .card, .event-box { padding: 1.5rem; }
    .grid-3 { gap: 1.2rem; }

    /* Mobile text alignment: left-aligned like headings */
    .about-redesign-text { text-align: left; align-items: flex-start; }
    .about-label::after { left: 0; transform: none; }

    /* About feature icons centered */
    .about-feature { align-items: center; text-align: center; }
    .about-feature-icon { margin: 0 auto 0.8rem; }

    /* Storypoints left-aligned */
    .about-storypoint { flex-direction: row; align-items: flex-start; text-align: left; }
    .about-storypoint:not(:last-child)::after { display: none; }
    .storypoint-content { text-align: left; }

    /* Publication grid mobile */
    .publication-grid { grid-template-columns: 1fr; }

    /* Testimonial grid mobile */
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-quote { font-size: 2.5rem; }

    /* More section spacing on mobile */
    .container { padding: 2.5rem 0; }
    section + section { margin-top: 0.5rem; }
    .services, .events, .about { margin-bottom: 0; }
    h2 { margin-bottom: 1.2rem; }
    .service-intro { margin-bottom: 1.8rem; }

    /* Sections compact */
    .feedback-section { padding: 2.5rem 0 !important; }
    .partners-section { padding: 2rem 0 2.5rem; }
}