        /* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: hsl(32, 25%, 25%);
    background-color: hsl(0, 0%, 100%);
}

/* Design System Variables */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(32, 25%, 25%);
    --primary: hsl(35, 85%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(210, 50%, 60%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(35, 25%, 95%);
    --muted-foreground: hsl(32, 25%, 50%);
    --accent: hsl(35, 85%, 90%);
    --accent-foreground: hsl(32, 25%, 25%);
    --border: hsl(35, 25%, 90%);
    
    --warm-gradient: linear-gradient(135deg, hsl(35, 85%, 55%), hsl(25, 90%, 65%));
    --hero-gradient: linear-gradient(135deg, hsl(35, 85%, 95%), hsl(210, 50%, 95%));
    --section-gradient: linear-gradient(180deg, hsl(0, 0%, 100%), hsl(35, 25%, 98%));
    
    --shadow-warm: 0 10px 30px -10px hsl(35, 85%, 55%, 0.2);
    --shadow-soft: 0 4px 20px -2px hsl(32, 25%, 25%, 0.1);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    width:3.25rem;
    height: 3.25rem;


}
.nav-name{
        
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);

}

.nav-logo-text {
    background: var(--warm-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--foreground);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--hero-gradient);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 0;
}

.hero-text {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-accent {
    background: var(--warm-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-description-emphasis {
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--foreground);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--primary);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--primary);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--warm-gradient);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px hsl(35, 85%, 55%, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--foreground);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    background: var(--accent);
    border-color: var(--primary);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: var(--warm-gradient);
    margin: 0 auto;
    border-radius: 0.125rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--section-gradient);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 75rem;
    margin: 0 auto;
}

.about-text {
    space-y: 1.5rem;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.about-paragraph {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-quote {
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary);
    margin-top: 1.5rem;
}

.about-quote p {
    color: var(--foreground);
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
}

.about-img {
    width: 20rem;
    
    object-fit: cover;
    border-radius: 0;
    box-shadow: var(--shadow-warm);
}

.image-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    background: var(--warm-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.image-badge span {
    color: var(--primary-foreground);
    font-size: 1.25rem;
}

/* Motivation Section */
.motivation {
    padding: 5rem 0;
    background: var(--background);
}

.motivation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.motivation-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.motivation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px hsl(32, 25%, 25%, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Participate Section */
.participate {
    padding: 5rem 0;
    background: var(--section-gradient);
}

.participate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.5rem;
    max-width: 75rem;
    margin: 0 auto;
}

.participate-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
}

.participate-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
    border-color: var(--primary);
}

.participate-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.participate-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.participate-text {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--background);
}

.contact-content {
    max-width: 48rem;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--muted);
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.contact-icon {
    font-size: 2rem;
    width: 3rem;
    text-align: center;
}

.contact-details h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    color: var(--foreground);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent);
    color: var(--foreground);
}

/* Footer */
.footer {
    background: var(--foreground);
    color: var(--primary-foreground);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: var(--primary-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-10px);
    }
    70% {
        transform: translateX(-50%) translateY(-5px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-soft);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
.hero-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem auto 0 auto;
    max-width: 540px;
    background: rgba(255,255,255,0.85);
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px -8px rgba(0,0,0,0.13);
    padding: 2rem 1rem 1.5rem 1rem;
}

.hero-video-element {
    width: 100%;
    max-width: 480px;
    border-radius: 1rem;
    box-shadow: 0 4px 24px -6px rgba(0,0,0,0.12);
    background: #eee;
}

.hero-video-caption {
    margin-top: 1rem;
    color: #6b4c1b;
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
}

@media (max-width: 600px) {
    .hero-video {
        padding: 1rem 0.2rem 1rem 0.2rem;
        max-width: 98vw;
    }
    .hero-video-element {
        max-width: 100vw;
    }
}
.arbeit {
    padding: 5rem 0;
    background: var(--background);
}
.arbeit-content {
    max-width: 60rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.arbeit-item {
    background: var(--section-gradient);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    padding: 2rem 1.5rem;
}
.arbeit-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}
@media (max-width: 700px) {
    .arbeit-content {
        padding: 0 0.2rem;
    }
    .arbeit-item {
        padding: 1.2rem 0.5rem;
    }
}

.motivation-blocks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.motivation-block {
    background: var(--section-gradient);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    padding: 2.2rem 2rem;
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 420px;
    text-align: center;
    font-size: 1.15rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .motivation-blocks {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .motivation-block {
        max-width: 98vw;
    }
}

/* Videokurs-Design */
.hero-video {
       max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem auto 0 auto;
    max-width: 540px;
    background: rgba(255,255,255,0.92);
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px -8px rgba(0,0,0,0.13);
    padding: 2rem 1rem 1.5rem 1rem;
}

.hero-video-element {
        max-width: 860px;
    min-height: 400px;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 24px -6px rgba(0,0,0,0.12);
    background: #eee;
    object-fit: cover;
}

.hero-video-caption {
    margin-top: 1rem;
    color: #6b4c1b;
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
}

@media (max-width: 700px) {
    .hero-video {
        padding: 1rem 0.2rem 1rem 0.2rem;
        max-width: 98vw;
    }
    .hero-video-element {
        max-width: 100vw;
    }
}

.konto-container {
    max-width: 500px;
    margin: 4rem auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px -6px rgba(0,0,0,0.08);
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.konto-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground, #5c4630);
}
.konto-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.konto-list li {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #4a3a1a;
    letter-spacing: 0.03em;
}
.konto-iban {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d1e0f;
    background: var(--accent, #fffbe6);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}
.konto-bic {
    font-size: 1.1rem;
    color: #6b4c1b;
    background: var(--muted, #f9f7f4);
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}
.konto-name {
    font-size: 1.1rem;
    color: #5c4630;
    margin-bottom: 1rem;
}
@media (max-width: 600px) {
    .konto-container {
        margin: 2rem 0.2rem;
        padding: 1.2rem 0.5rem;
    }
}