/* Rhetorik Meisterschaft - Unique Styling */

/* Reset und Basis-Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hauptfarbe: #2c3e50;
    --akzentfarbe: #e74c3c;
    --sekundaerfarbe: #3498db;
    --goldfarbe: #f39c12;
    --dunkelgrau: #34495e;
    --hellgrau: #ecf0f1;
    --weiss: #ffffff;
    --text-dunkel: #2c3e50;
    --text-hell: #7f8c8d;
    --schatten: rgba(0, 0, 0, 0.1);
    --verlauf-primaer: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --verlauf-sekundaer: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --verlauf-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    --schrift-haupt: 'Playfair Display', serif;
    --schrift-text: 'Inter', sans-serif;
    
    --schatten-weich: 0 10px 30px rgba(0, 0, 0, 0.1);
    --schatten-stark: 0 20px 60px rgba(0, 0, 0, 0.2);
    --uebergang-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --uebergang-langsam: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--schrift-text);
    line-height: 1.6;
    color: var(--text-dunkel);
    background-color: var(--weiss);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navigation-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--schatten-weich);
    transition: var(--uebergang-standard);
}

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

.markenname {
    font-family: var(--schrift-haupt);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--verlauf-primaer);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navigation-liste {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dunkel);
    font-weight: 500;
    position: relative;
    transition: var(--uebergang-standard);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verlauf-primaer);
    transition: var(--uebergang-standard);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero-Bereich */
.hero-bereich {
    min-height: 100vh;
    background: var(--verlauf-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bereich::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-textbereich {
    animation: slideInLeft 1s ease-out;
}

.hero-haupttitel {
    font-family: var(--schrift-haupt);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--weiss);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-untertitel {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-aktionen {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primaer-button, .sekundaer-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--uebergang-standard);
    position: relative;
    overflow: hidden;
}

.primaer-button {
    background: var(--weiss);
    color: var(--hauptfarbe);
    box-shadow: var(--schatten-weich);
}

.primaer-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--schatten-stark);
}

.sekundaer-button {
    background: transparent;
    color: var(--weiss);
    border: 2px solid var(--weiss);
}

.sekundaer-button:hover {
    background: var(--weiss);
    color: var(--hauptfarbe);
}

.hero-bildbereich {
    animation: slideInRight 1s ease-out;
}

.bild-platzhalter {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--weiss);
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Sektion-Styling */
.sektion-titel {
    font-family: var(--schrift-haupt);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--hauptfarbe);
    position: relative;
}

.sektion-titel::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--verlauf-primaer);
    border-radius: 2px;
}

.sektion-titel.weiss {
    color: var(--weiss);
}

/* Kurs-Sektion */
.kursangebot-sektion {
    padding: 6rem 0;
    background: var(--hellgrau);
}

.kurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.kurs-karte {
    background: var(--weiss);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--schatten-weich);
    transition: var(--uebergang-standard);
    position: relative;
    overflow: hidden;
}

.kurs-karte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--verlauf-primaer);
}

.kurs-karte:hover {
    transform: translateY(-10px);
    box-shadow: var(--schatten-stark);
}

.kurs-karte.premium {
    border: 2px solid var(--goldfarbe);
}

.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--goldfarbe);
    color: var(--weiss);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.kurs-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.kurs-titel {
    font-family: var(--schrift-haupt);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hauptfarbe);
    margin-bottom: 1rem;
}

.kurs-beschreibung {
    color: var(--text-hell);
    margin-bottom: 1.5rem;
}

.kurs-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.kurs-highlights li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dunkel);
}

.kurs-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sekundaerfarbe);
    font-weight: bold;
}

.kurs-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--hellgrau);
}

.kurs-dauer {
    color: var(--text-hell);
    font-size: 0.9rem;
}

.kurs-preis {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--akzentfarbe);
}

/* Vorteile-Bereich */
.vorteile-bereich {
    padding: 6rem 0;
    background: var(--verlauf-primaer);
    position: relative;
}

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

.vorteil-item {
    text-align: center;
    color: var(--weiss);
}

.vorteil-nummer {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.vorteil-titel {
    font-family: var(--schrift-haupt);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vorteil-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Trainer-Sektion */
.trainer-sektion {
    padding: 6rem 0;
}

.trainer-profil {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.trainer-bild .bild-platzhalter {
    width: 100%;
    height: 300px;
    background: var(--hellgrau);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-hell);
}

.trainer-name {
    font-family: var(--schrift-haupt);
    font-size: 2rem;
    font-weight: 700;
    color: var(--hauptfarbe);
    margin-bottom: 0.5rem;
}

.trainer-titel {
    font-size: 1.1rem;
    color: var(--sekundaerfarbe);
    margin-bottom: 1.5rem;
}

.trainer-beschreibung {
    color: var(--text-hell);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.trainer-qualifikationen {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.qualifikation {
    background: var(--hellgrau);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dunkel);
}

/* Testimonials */
.testimonials-bereich {
    padding: 6rem 0;
    background: var(--hellgrau);
}

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

.testimonial-karte {
    background: var(--weiss);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--schatten-weich);
    position: relative;
    font-style: italic;
}

.testimonial-karte::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--sekundaerfarbe);
    opacity: 0.3;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    color: var(--text-dunkel);
}

.testimonial-autor {
    font-style: normal;
    color: var(--text-hell);
    font-weight: 600;
}

/* Standort-Info */
.standort-info {
    padding: 6rem 0;
}

.standort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.standort-text {
    color: var(--text-hell);
    line-height: 1.7;
}

.standort-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    margin-bottom: 1rem;
    gap: 1rem;
}

.detail-item strong {
    color: var(--hauptfarbe);
    min-width: 120px;
}

.standort-bild .bild-platzhalter {
    width: 100%;
    height: 300px;
    background: var(--hellgrau);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-hell);
}

/* Kontakt-Sektion */
.kontakt-sektion {
    padding: 6rem 0;
    background: var(--verlauf-sekundaer);
    position: relative;
}

.kontakt-untertitel {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.kontakt-formular {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-gruppe {
    display: flex;
    flex-direction: column;
}

.form-gruppe.vollbreite {
    grid-column: 1 / -1;
}

.form-gruppe.checkbox-gruppe {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-label {
    color: var(--weiss);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-eingabe, .form-auswahl, .form-textarea {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--weiss);
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: var(--uebergang-standard);
}

.form-eingabe::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-eingabe:focus, .form-auswahl:focus, .form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.form-checkbox {
    margin-top: 0.2rem;
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.datenschutz-link {
    color: var(--weiss);
    text-decoration: underline;
}

.submit-button {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background: var(--weiss);
    color: var(--hauptfarbe);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--uebergang-standard);
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--schatten-stark);
}

/* Footer */
.footer-bereich {
    background: var(--hauptfarbe);
    color: var(--weiss);
    padding: 3rem 0 1rem;
}

.footer-inhalt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-titel {
    font-family: var(--schrift-haupt);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-untertitel {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--uebergang-standard);
}

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

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Animationen */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-haupttitel {
        font-size: 2.5rem;
    }
    
    .trainer-profil {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .standort-grid {
        grid-template-columns: 1fr;
    }
    
    .kontakt-formular {
        grid-template-columns: 1fr;
    }
    
    .navigation-liste {
        display: none;
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
    
    .kurs-grid {
        grid-template-columns: 1fr;
    }
}