/*
Theme Name: PharMed Forum Theme
Theme URI: https://pharmed-forum.de
Author: PharMed Forum
Author URI: https://pharmed-forum.de
Description: Custom WordPress Theme für PharMed Forum Augsburg 2026
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pharmed-theme
*/

/* ========================================
   RESET & GRUNDLAGEN
   ======================================== */

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

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   TOPBAR
   ======================================== */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e8e8e8;
    z-index: 1001;
    height: 40px;
}

.topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topbar-contact {
    display: flex;
    gap: 30px;
    align-items: center;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    transition: color 0.3s ease;
}

.topbar-link:hover {
    color: #4a90e2;
}

.topbar-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

/* ========================================
   HAUPTNAVIGATION
   ======================================== */

.main-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo-img {
    height: 65px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: #4a90e2;
    background-color: rgba(74, 144, 226, 0.05);
}

.nav-link.active {
    color: #ffffff;
    background-color: #4a90e2;
}

/* CTA Button in Navigation */
.nav-cta {
    margin-left: 12px;
}

.nav-btn-anmeldung {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff !important;
    background: linear-gradient(135deg, #d4a373 0%, #b8885a 100%);
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(212, 163, 115, 0.3);
}

.nav-btn-anmeldung:hover {
    background: linear-gradient(135deg, #b8885a 0%, #a07548 100%);
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Mobile Toggle (versteckt auf Desktop) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.nav-toggle-label span {
    width: 28px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .topbar-container {
        justify-content: center;
    }

    .topbar-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .topbar-link {
        font-size: 12px;
    }

    .main-nav {
        top: 0;
    }

    .nav-toggle-label {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-toggle:checked ~ .nav-menu {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-btn-anmeldung {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        width: 100%;
        font-size: 18px;
        padding: 12px 20px;
    }

    /* Hamburger Animation */
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* ========================================
   HERO BANNER SEKTION
   ======================================== */

/* Hero Banner - nur Bild */
.hero-banner {
    position: relative;
    min-height: 100vh;
    background-image: url('http://pharmed-forum.de/wp-content/uploads/2026/01/ChatGPT-Image-6.-Jan.-2026-17_22_18-1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 120px;
    margin-bottom: 0;
}

/* Hero Content Section - Text und Buttons darunter */
.hero-content-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}

/* ========================================
   LOGO
   ======================================== */

.hero-logo {
    margin-bottom: 60px;
}

.logo-image {
    max-width: 200px;
    height: auto;
    display: block;
}

/* ========================================
   HERO CONTENT
   ======================================== */

.hero-content {
    max-width: 650px;
}

/* ========================================
   TYPOGRAFIE
   ======================================== */

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 120px;
    font-weight: 900;
    line-height: 0.95;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: -3px;
}

.hero-date {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: #4a90e2;
    margin-bottom: 45px;
    max-width: 600px;
}

.hero-description strong {
    font-weight: 700;
    color: #4a90e2;
    display: block;
    margin-bottom: 8px;
}

/* ========================================
   BUTTONS & ACTIONS
   ======================================== */

.hero-actions {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4a373 0%, #c89550 100%);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.25);
    cursor: pointer;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.35);
    background: linear-gradient(135deg, #c89550 0%, #b8864a 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

.link-secondary {
    font-size: 16px;
    font-weight: 600;
    color: #d4a373;
    position: relative;
    transition: color 0.3s ease;
}

.link-secondary::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4a373;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.link-secondary:hover {
    color: #c89550;
}

.link-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* KI-Bild Hinweis */
.hero-ai-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 13;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===================================
   DECORATIVE LINE SECTION
   =================================== */

.decorative-line-section {
    padding: 320px 0 0 0;
    margin: 0;
    background: #ffffff;
    overflow: visible;
    position: relative;
    z-index: 1;
    clear: both;
}

.decorative-line-container {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    line-height: 0;
    position: relative;
}

.decorative-line-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.9;
    position: relative;
}

/* ========================================
   AUSTRAGUNGSORT & EINLADUNG SEKTION
   ======================================== */

.venue-section {
    background-color: #f8f9fa;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

/* Dekorative Waben-Grafik oben rechts */
.venue-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: url('../images/waben_bkrd_slider.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.venue-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ========================================
   GEMEINSAME ELEMENTE
   ======================================== */

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* ========================================
   LINKE SPALTE: AUSTRAGUNGSORT
   ======================================== */

.venue-info {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.venue-info:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.venue-address {
    margin-bottom: 40px;
}

.venue-name {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.address-block {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: normal;
}

.hotel-info {
    border-top: 2px solid #f0f0f0;
    padding-top: 35px;
}

.info-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.info-note-warning {
    font-size: 15px;
    line-height: 1.6;
    color: #d97706;
    background: #fffbeb;
    padding: 18px 22px;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
    margin-bottom: 30px;
}

.info-note-warning strong {
    color: #d97706;
    font-weight: 700;
}

/* Hotel Liste */
.hotel-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hotel-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 22px 25px;
    border-radius: 8px;
    border-left: 3px solid #4a90e2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotel-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.hotel-name {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.hotel-price {
    font-size: 18px;
    font-weight: 700;
    color: #d4a373;
    margin-bottom: 10px;
}

.hotel-booking {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.email-link {
    color: #4a90e2;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.email-link:hover {
    border-bottom-color: #4a90e2;
}

/* Virtuelles Büro Wrapper */
.virtual-office-wrapper {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 2px solid #f0f0f0;
}

.virtual-office-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    border: 2px solid #e3ebf6;
    border-radius: 16px;
    padding: 35px;
    margin-top: 20px;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.08);
    transition: all 0.3s ease;
}

.virtual-office-card-container:hover {
    box-shadow: 0 12px 32px rgba(74, 144, 226, 0.12);
    transform: translateY(-2px);
}

.virtual-office-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.virtual-office-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.virtual-office-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Virtuelles Büro Legacy (falls noch verwendet) */
.virtual-office {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 2px solid #f0f0f0;
}

.virtual-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.zoom-info {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 22px 25px;
    border-radius: 8px;
    border-left: 3px solid #4a90e2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zoom-info:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.zoom-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.zoom-link {
    display: inline-block;
    font-size: 14px;
    color: #4a90e2;
    font-weight: 500;
    text-decoration: none;
    word-break: break-all;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.zoom-link:hover {
    border-bottom-color: #4a90e2;
}

.zoom-credentials {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #d1e3f5;
}

.zoom-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.zoom-detail-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    min-width: 85px;
}

.zoom-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
}

/* ========================================
   RECHTE SPALTE: SIDEBAR (FORMULAR + BILD)
   ======================================== */

.venue-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.invitation-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.invitation-form:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.form-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: #1a1a1a;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #4a90e2;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-input::placeholder {
    color: #999;
}

/* Dropdown/Select Styling */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a90e2' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.btn-submit {
    width: 100%;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, #d4a373 0%, #c89550 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.25);
    margin-bottom: 18px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.35);
    background: linear-gradient(135deg, #c89550 0%, #b8864a 100%);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-privacy {
    font-size: 12px;
    line-height: 1.6;
    color: #888;
    text-align: center;
}

/* Bild (atmosphärisch unter Formular) */
.venue-visual-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-visual-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.venue-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    opacity: 0.95;
}

/* ========================================
   WAS SIE ERWARTET SEKTION
   ======================================== */

.expectations-section {
    background-color: #f8f9fa;
    padding: 100px 20px;
}

.expectations-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   COUNTDOWN BEREICH
   ======================================== */

.countdown-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.countdown-headline {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 72px;
    font-weight: 700;
    color: #d4a373;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    text-transform: capitalize;
}

/* ========================================
   CONTENT GRID
   ======================================== */

.expectations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Bilder mit Overlay-Buttons */
.expectations-image-left,
.expectations-image-right {
    position: relative;
    width: 100%;
}

.expectations-image-link {
    display: block;
    position: relative;
    text-decoration: none;
    width: 100%;
    cursor: pointer;
}

.expectations-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expectations-image-link:hover .expectations-img {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.expectations-image-left .expectations-img {
    min-height: 400px;
}

.expectations-image-right .expectations-img {
    min-height: 400px;
}

.btn-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 350px;
    pointer-events: none;
    display: block;
}

/* Mittlere Spalte */
.expectations-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

.expectations-info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.expectations-info-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ========================================
   BUTTONS (HELLBLAU)
   ======================================== */

.btn-blue,
.btn-expectations {
    display: inline-block;
    background-color: #4fc3f7;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.3);
}

.btn-blue:hover,
.btn-expectations:hover {
    background-color: #29b6f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(79, 195, 247, 0.4);
}

/* ========================================
   SCRABBLE BILD SEKTION
   ======================================== */

.scrabble-section {
    background-color: #ffffff;
    padding: 60px 20px;
    margin: 0;
}

.scrabble-container {
    max-width: 600px;
    margin: 0 auto;
}

.scrabble-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* ========================================
   UNSERE PARTNER SEKTION
   ======================================== */

.partners-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Überschrift */
.partners-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.partners-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Partner Logo Grid (skalierbar) */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
}

/* Einzelnes Partner-Item */
.partner-item {
    width: 100%;
    max-width: 250px;
}

/* Logo Wrapper (Card-Effekt) */
.partner-logo-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Partner Logo - Alle gleich groß */
.partner-logo {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-logo-wrapper:hover .partner-logo {
    filter: grayscale(0%);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-container {
        padding: 50px 60px;
    }

    .hero-logo {
        margin-bottom: 60px;
    }

    .logo-image {
        max-width: 180px;
    }

    .hero-title {
        font-size: 90px;
    }

    .hero-date {
        font-size: 44px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* Venue Section Tablet */
    .venue-section {
        padding: 80px 20px;
    }

    .venue-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .venue-info {
        padding: 40px;
    }

    .virtual-office-card-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .invitation-form {
        padding: 35px 30px;
    }

    .section-title {
        font-size: 28px;
    }

    /* Expectations Section Tablet */
    .expectations-section {
        padding: 80px 20px;
    }

    .countdown-headline {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .countdown-number {
        font-size: 60px;
    }

    .countdown-timer {
        gap: 35px;
    }

    .expectations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .expectations-image-left {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .expectations-content {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .expectations-image-right {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
}

@media (max-width: 768px) {
    .hero-banner::before {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0.85) 100%
        );
    }

    .hero-container {
        padding: 40px 30px;
    }

    .hero-logo {
        margin-bottom: 50px;
    }

    .logo-image {
        max-width: 160px;
    }

    .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 68px;
        letter-spacing: -2px;
    }

    .hero-date {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn-primary {
        font-size: 15px;
        padding: 14px 20px;
        width: 100%;
        flex: 1 1 auto;
    }

    /* Venue Section Tablet/Mobile */
    .venue-section {
        padding: 60px 20px;
    }

    .venue-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .venue-info {
        padding: 35px 30px;
    }

    .invitation-form {
        padding: 35px 30px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    /* Expectations Section Mobile/Tablet */
    .expectations-section {
        padding: 60px 20px;
    }

    .countdown-wrapper {
        margin-bottom: 50px;
    }

    .countdown-headline {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .countdown-timer {
        gap: 25px;
    }

    .countdown-number {
        font-size: 50px;
    }

    .countdown-label {
        font-size: 16px;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expectations-image-left,
    .expectations-image-right,
    .expectations-content {
        grid-column: auto;
        grid-row: auto;
    }

    .expectations-image-left .expectations-img,
    .expectations-image-right .expectations-img {
        min-height: 300px;
    }

    .btn-image-overlay {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 15px;
        pointer-events: auto;
    }

    .expectations-image-link {
        display: flex;
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-banner::before {
        background: rgba(255, 255, 255, 0.96);
    }

    .hero-container {
        padding: 30px 20px;
    }

    .hero-logo {
        margin-bottom: 40px;
    }

    .logo-image {
        max-width: 140px;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 1.2px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 52px;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }

    .hero-date {
        font-size: 28px;
        letter-spacing: -1px;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        font-size: 15px;
        padding: 14px 30px;
    }

    .link-secondary {
        font-size: 15px;
    }

    /* Venue Section Mobile */
    .venue-section {
        padding: 50px 15px;
    }

    .venue-sidebar {
        gap: 25px;
    }

    .venue-info,
    .invitation-form {
        padding: 30px 25px;
    }

    .venue-visual-card {
        padding: 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .venue-name {
        font-size: 20px;
    }

    .info-subtitle {
        font-size: 18px;
    }

    .form-intro,
    .virtual-intro {
        font-size: 15px;
    }

    .hotel-item {
        padding: 20px 22px;
    }

    .hotel-name {
        font-size: 16px;
    }

    .hotel-price {
        font-size: 17px;
    }

    .hotel-booking {
        font-size: 13px;
    }

    .zoom-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .zoom-detail-label,
    .zoom-detail-value {
        font-size: 13px;
    }

    .btn-submit {
        padding: 14px 30px;
        font-size: 15px;
    }

    /* Expectations Section Mobile */
    .expectations-section {
        padding: 50px 15px;
    }

    .expectations-container {
        gap: 30px;
    }

    .expectations-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .expectations-text {
        font-size: 15px;
    }

    .btn-expectations {
        font-size: 14px;
        padding: 12px 25px;
    }

    .expectations-image-left .expectations-img,
    .expectations-image-right .expectations-img {
        max-height: 300px;
    }

    /* Partners Section Mobile */
    .partners-section {
        padding: 50px 15px;
    }

    .partners-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .partners-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .partner-item {
        max-width: 180px;
    }

    .partner-logo-wrapper {
        padding: 20px;
        height: 120px;
    }

    .partner-logo {
        max-width: 140px;
        max-height: 70px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partner-logo-wrapper {
        padding: 30px;
    }

    .partner-logo {
        max-height: 60px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
    background-color: #f8f9fa;
    padding: 60px 20px 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Logo */
.footer-logo {
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

/* Text */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Title */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4a90e2;
}

/* Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #4a90e2;
}

.footer-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #ffffff;
    padding: 25px 20px;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal-link {
    font-size: 13px;
    color: #888;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #4a90e2;
}

.footer-separator {
    color: #d0d0d0;
    font-size: 12px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 20px 0;
        margin-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-column:first-child {
        grid-column: auto;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   PROGRAMM SEITE - HEADER/INTRO
   ======================================== */

.programm-header {
    background-color: #ffffff;
    padding: 140px 20px 80px;
}

.programm-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Linke Spalte: Content */
.programm-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.programm-headline-group {
    margin-bottom: 10px;
}

.programm-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.programm-subtitle {
    font-size: 42px;
    font-weight: 600;
    color: #4a90e2;
    line-height: 1.2;
    margin-bottom: 12px;
}

.programm-date {
    font-size: 24px;
    font-weight: 500;
    color: #d4a373;
    margin: 0;
}

/* Buttons */
.btn-programm {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.btn-gold {
    background-color: #d4a373;
    color: #ffffff;
}

.btn-gold:hover {
    background-color: #c89550;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(212, 163, 115, 0.4);
}

.btn-programm.btn-blue {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-programm.btn-blue:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(74, 144, 226, 0.4);
}

/* Divider */
.programm-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #4a90e2, #d4a373);
    border-radius: 2px;
    margin: 10px 0;
}

/* Intro Text */
.programm-intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.programm-intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Mittlere Spalte: Grafik */
.programm-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.programm-graphic-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    opacity: 0.92;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.08));
    transition: all 0.3s ease;
}

.programm-graphic-img:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Rechte Spalte: Zoom Card */
.programm-zoom-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: sticky;
    top: 140px;
}

.zoom-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.zoom-card-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.zoom-card-link {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.zoom-card-link:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.zoom-card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.zoom-card-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.zoom-card-label {
    color: #888;
    font-weight: 500;
}

.zoom-card-value {
    color: #333;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Responsive */
@media (max-width: 1024px) {
    .programm-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .programm-zoom-card {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        position: static;
    }
}

@media (max-width: 768px) {
    .programm-header {
        padding: 100px 20px 60px;
    }

    .programm-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .programm-title {
        font-size: 38px;
    }

    .programm-subtitle {
        font-size: 32px;
    }

    .programm-date {
        font-size: 20px;
    }

    .btn-programm {
        width: 100%;
        font-size: 15px;
        padding: 14px 28px;
    }

    .programm-graphic {
        order: 2;
    }

    .programm-zoom-card {
        order: 3;
    }

    .programm-graphic-img {
        max-width: 280px;
    }
}

/* ========================================
   PROGRAMM CONTENT SEKTION
   ======================================== */

.programm-content-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.programm-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Programm Theme Intro */
.programm-theme {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e8e8e8;
}

.programm-theme-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.programm-theme-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #d4a373;
    margin-bottom: 20px;
}

.programm-theme-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* Tag Header */
.programm-day {
    margin-bottom: 80px;
}

.day-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #4a90e2;
}

.day-title {
    font-size: 36px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 8px;
}

.day-date {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin: 0;
}

/* Programmpunkt */
.programm-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e8e8e8;
}

.programm-item:last-child {
    border-bottom: none;
}

/* Zeit Badge */
.programm-time {
    display: flex;
    justify-content: flex-start;
}

.time-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    min-width: 80px;
    text-align: center;
}

/* Details */
.programm-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.programm-item-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.programm-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.programm-note {
    font-size: 14px;
    color: #888;
    margin: 0;
    font-style: italic;
}

/* Meta Info */
.programm-meta {
    display: flex;
    gap: 12px;
    align-items: baseline;
    font-size: 15px;
    margin-top: 8px;
}

.meta-label {
    color: #888;
    font-weight: 500;
}

.meta-value {
    color: #333;
    font-weight: 600;
}

/* Inline LinkedIn Link */
.inline-linkedin-link {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    color: #0077b5;
    text-decoration: none;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.inline-linkedin-link:hover {
    color: #005885;
    transform: scale(1.1);
}

.inline-linkedin-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Speakers */
.programm-speakers {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4a373;
    margin-top: 12px;
}

.speakers-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.speakers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.speakers-list li {
    font-size: 15px;
    color: #555;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.speakers-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4a373;
    font-weight: 600;
}

/* Pausen */
.programm-item-break {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px 30px;
    border-bottom: none;
}

.programm-item-break .time-badge {
    background: linear-gradient(135deg, #d4a373 0%, #c89550 100%);
}

.programm-item-break .programm-item-title {
    font-size: 18px;
    color: #666;
}

/* Save the Date */
.save-the-date {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

.save-the-date-content {
    max-width: 700px;
    margin: 0 auto;
}

.save-the-date-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.save-the-date-text {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
}

/* Anmeldung Buttons */
.anmeldung-buttons {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-anmeldung {
    display: inline-block;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-anmeldung-primary {
    background: #4a90e2;
    color: #ffffff;
    border: 2px solid #4a90e2;
}

.btn-anmeldung-primary:hover {
    background: #357abd;
    border-color: #357abd;
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
}

.btn-anmeldung-secondary {
    background: #4a90e2;
    color: #ffffff;
    border: 2px solid #4a90e2;
}

.btn-anmeldung-secondary:hover {
    background: #357abd;
    border-color: #357abd;
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
}

/* Responsive Programm Content */
@media (max-width: 768px) {
    .programm-content-section {
        padding: 60px 20px;
    }

    .programm-theme {
        margin-bottom: 50px;
        padding-bottom: 30px;
    }

    .programm-theme-title {
        font-size: 32px;
    }

    .programm-theme-subtitle {
        font-size: 20px;
    }

    .programm-theme-text {
        font-size: 16px;
    }

    .programm-day {
        margin-bottom: 60px;
    }

    .day-title {
        font-size: 28px;
    }

    .day-date {
        font-size: 16px;
    }

    .programm-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .programm-time {
        justify-content: flex-start;
    }

    .time-badge {
        font-size: 14px;
        padding: 6px 12px;
        min-width: 70px;
    }

    .programm-item-title {
        font-size: 19px;
    }

    .programm-description {
        font-size: 15px;
    }

    .programm-meta {
        flex-direction: column;
        gap: 6px;
    }

    .programm-speakers {
        padding: 16px;
    }

    .save-the-date {
        padding: 40px 25px;
        margin-top: 40px;
    }

    .save-the-date-title {
        font-size: 26px;
    }

    .save-the-date-text {
        font-size: 16px;
    }
}

/* ===================================
   MENTOREN PAGE
   =================================== */

/* Mentoren Hero Section */
.mentoren-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.mentoren-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.mentoren-hero-subtitle {
    font-size: 20px;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mentoren Grid Section */
.mentoren-section {
    padding: 80px 0 120px;
    background: #ffffff;
}

.mentoren-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
}

/* Mentor Card */
.mentor-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mentor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.15);
}

/* Mentor Image */
.mentor-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f7fa;
    position: relative;
}

.mentor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mentor-card:hover .mentor-image {
    transform: scale(1.05);
}

/* LinkedIn Button */
.mentor-linkedin-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0, 119, 181, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.mentor-linkedin-btn:hover {
    background: #0077b5;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.mentor-linkedin-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.mentor-card:hover .mentor-linkedin-btn {
    transform: scale(1.05);
}

.mentor-card:hover .mentor-linkedin-btn:hover {
    transform: scale(1.15);
}

/* Mobile LinkedIn Button */
@media (max-width: 768px) {
    .mentor-linkedin-btn {
        width: 44px;
        height: 44px;
        top: 15px;
        right: 15px;
    }

    .mentor-linkedin-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .mentor-linkedin-btn {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }

    .mentor-linkedin-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Mentor Content */
.mentor-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mentor-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.mentor-position {
    font-size: 16px;
    font-weight: 600;
    color: #4a90e2;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.mentor-organisation {
    font-size: 15px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

.mentor-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a373 0%, #c49363 100%);
    margin: 24px 0;
    border-radius: 2px;
}

.mentor-text {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
    margin: 0;
}

/* Schulungen Infobox (neben Helmut Seuthe) */
.schulungen-infobox {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8eef3;
    transition: all 0.4s ease;
}

.schulungen-infobox:hover {
    border-color: #4a90e2;
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.12);
}

.schulungen-infobox-content {
    text-align: center;
    max-width: 420px;
}

.schulungen-infobox-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.schulungen-infobox-text {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.schulungen-infobox-button {
    display: inline-block;
    padding: 14px 28px;
    background: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(74, 144, 226, 0.25);
}

.schulungen-infobox-button:hover {
    background: #357abd;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
}

/* Responsive Mentoren - Tablet */
@media (max-width: 1024px) {
    .mentoren-hero {
        padding: 160px 0 80px;
    }

    .mentoren-hero-title {
        font-size: 44px;
    }

    .mentoren-hero-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }

    .mentoren-section {
        padding: 60px 0 100px;
    }

    .mentoren-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }

    .schulungen-infobox {
        padding: 30px;
    }

    .schulungen-infobox-title {
        font-size: 22px;
    }

    .schulungen-infobox-text {
        font-size: 15px;
    }

    .mentor-image-wrapper {
        height: 280px;
    }

    .mentor-name {
        font-size: 22px;
    }
}

/* Responsive Mentoren - Mobile */
@media (max-width: 768px) {
    .mentoren-hero {
        padding: 140px 0 60px;
    }

    .mentoren-hero-title {
        font-size: 36px;
    }

    .mentoren-hero-subtitle {
        font-size: 16px;
    }

    .mentoren-section {
        padding: 50px 0 80px;
    }

    .mentoren-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .schulungen-infobox {
        padding: 30px;
    }

    .schulungen-infobox-title {
        font-size: 20px;
    }

    .schulungen-infobox-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .schulungen-infobox-button {
        width: 100%;
        font-size: 14px;
        padding: 12px 20px;
    }

    .mentor-image-wrapper {
        height: 320px;
    }

    .mentor-content {
        padding: 25px;
    }

    .mentor-name {
        font-size: 22px;
    }

    .mentor-position {
        font-size: 15px;
    }

    .mentor-organisation {
        font-size: 14px;
    }

    .mentor-text {
        font-size: 14px;
    }
}

/* ===================================
   PROGRAMM TEASER SECTION (STARTSEITE)
   =================================== */

.programm-teaser-section {
    padding: 100px 0;
    background: #ffffff;
}

.programm-teaser-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.programm-teaser-image {
    width: 100%;
}

.programm-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.programm-teaser-content {
    padding-right: 20px;
}

.programm-teaser-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.programm-teaser-text {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.btn-programm-teaser {
    display: inline-block;
    margin-top: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #d4a373 0%, #c49363 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
}

.btn-programm-teaser:hover {
    background: linear-gradient(135deg, #c49363 0%, #b38353 100%);
    box-shadow: 0 6px 25px rgba(212, 163, 115, 0.45);
    transform: translateY(-2px);
}

/* Responsive Programm Teaser - Tablet */
@media (max-width: 1024px) {
    .programm-teaser-section {
        padding: 80px 0;
    }

    .programm-teaser-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 40px;
    }

    .programm-teaser-image {
        order: -1;
    }

    .programm-teaser-content {
        padding-right: 0;
        text-align: left;
    }

    .programm-teaser-title {
        font-size: 36px;
    }

    .programm-teaser-text {
        font-size: 16px;
    }
}

/* Responsive Programm Teaser - Mobile */
@media (max-width: 768px) {
    .programm-teaser-section {
        padding: 60px 0;
    }

    .programm-teaser-container {
        gap: 40px;
        padding: 0 20px;
    }

    .programm-teaser-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .programm-teaser-text {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .btn-programm-teaser {
        width: 100%;
        text-align: center;
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===================================
   MENTOREN TEASER SECTION (STARTSEITE)
   =================================== */

.mentoren-teaser-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mentoren-teaser-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.mentoren-teaser-header {
    text-align: center;
    margin-bottom: 60px;
}

.mentoren-teaser-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.mentoren-teaser-intro {
    font-size: 18px;
    color: #546e7a;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.mentoren-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.mentor-teaser-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.mentor-teaser-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.15);
}

.mentor-teaser-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f7fa;
}

.mentor-teaser-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mentor-teaser-card:hover .mentor-teaser-image {
    transform: scale(1.05);
}

.mentor-teaser-info {
    padding: 24px;
}

.mentor-teaser-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.mentor-teaser-position {
    font-size: 15px;
    font-weight: 600;
    color: #4a90e2;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.mentor-teaser-company {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4;
}

.mentoren-teaser-cta {
    text-align: center;
}

.btn-mentoren-teaser {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #d4a373 0%, #c49363 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
}

.btn-mentoren-teaser:hover {
    background: linear-gradient(135deg, #c49363 0%, #b38353 100%);
    box-shadow: 0 6px 25px rgba(212, 163, 115, 0.45);
    transform: translateY(-2px);
}

/* Responsive Mentoren Teaser - Tablet */
@media (max-width: 1024px) {
    .mentoren-teaser-section {
        padding: 80px 0;
    }

    .mentoren-teaser-container {
        padding: 0 40px;
    }

    .mentoren-teaser-title {
        font-size: 40px;
    }

    .mentoren-teaser-intro {
        font-size: 17px;
    }

    .mentoren-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .mentor-teaser-image-wrapper {
        height: 260px;
    }
}

/* Responsive Mentoren Teaser - Mobile */
@media (max-width: 768px) {
    .mentoren-teaser-section {
        padding: 60px 0;
    }

    .mentoren-teaser-container {
        padding: 0 20px;
    }

    .mentoren-teaser-header {
        margin-bottom: 40px;
    }

    .mentoren-teaser-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .mentoren-teaser-intro {
        font-size: 16px;
    }

    .mentoren-teaser-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .mentor-teaser-image-wrapper {
        height: 300px;
    }

    .mentor-teaser-info {
        padding: 20px;
    }

    .mentor-teaser-name {
        font-size: 19px;
    }

    .btn-mentoren-teaser {
        width: 100%;
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===================================
   FLOATING ACTION BUTTONS
   =================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Call Button */
.float-btn-call {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
}

.float-btn-call:hover {
    background: linear-gradient(135deg, #357abd 0%, #2868a8 100%);
}

/* Scroll to Top Button */
.float-btn-scroll {
    background: linear-gradient(135deg, #d4a373 0%, #c49363 100%);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.float-btn-scroll.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn-scroll:hover {
    background: linear-gradient(135deg, #c49363 0%, #b38353 100%);
}

/* SVG Icons in Float Buttons */
.float-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .float-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Reduce animation on mobile for performance */
    .float-btn:active {
        transform: scale(0.95);
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }

    .float-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ===================================
   SMOOTH ANIMATIONS & EFFECTS
   =================================== */

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation for Cards */
.mentor-teaser-card:nth-child(1).animate-in { transition-delay: 0.1s; }
.mentor-teaser-card:nth-child(2).animate-in { transition-delay: 0.2s; }
.mentor-teaser-card:nth-child(3).animate-in { transition-delay: 0.3s; }
.mentor-teaser-card:nth-child(4).animate-in { transition-delay: 0.4s; }
.mentor-teaser-card:nth-child(5).animate-in { transition-delay: 0.5s; }
.mentor-teaser-card:nth-child(6).animate-in { transition-delay: 0.6s; }

.mentor-card:nth-child(1).animate-in { transition-delay: 0.1s; }
.mentor-card:nth-child(2).animate-in { transition-delay: 0.2s; }
.mentor-card:nth-child(3).animate-in { transition-delay: 0.3s; }
.mentor-card:nth-child(4).animate-in { transition-delay: 0.4s; }
.mentor-card:nth-child(5).animate-in { transition-delay: 0.5s; }
.mentor-card:nth-child(6).animate-in { transition-delay: 0.6s; }
.mentor-card:nth-child(7).animate-in { transition-delay: 0.7s; }

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2 0%, #d4a373 100%);
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.3);
}

/* Navbar Scrolled State */
.main-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Image Lazy Loading Effect */
img {
    transition: opacity 0.4s ease-in-out;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img.loaded {
    opacity: 1;
}

/* Hero Parallax Enhancement */
.hero-banner {
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    will-change: transform, opacity;
}

/* Page Transition */
body {
    transition: opacity 0.4s ease-in-out;
}

/* Countdown Finished State */
.countdown-finished {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    text-align: center;
    padding: 40px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Card Hover Enhancement */
.mentor-card,
.mentor-teaser-card,
.expectation-card {
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .fade-in-up {
        opacity: 1;
        transform: translateY(0);
    }
    
    .hero-banner {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Performance: GPU Acceleration */
.hero-banner,
.main-nav,
.float-btn,
.mentor-card,
.mentor-teaser-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ===================================
   LEGAL PAGES (Datenschutz, Impressum, etc.)
   =================================== */

.legal-hero {
    padding: 200px 0 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    text-align: center;
    margin-top: 120px;
}

.legal-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.legal-hero-breadcrumb {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.legal-hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-hero-breadcrumb a:hover {
    opacity: 0.8;
}

.legal-content-section {
    padding: 80px 0 120px;
    background: #ffffff;
}

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

.legal-content {
    background: #ffffff;
}

.legal-section {
    margin-bottom: 60px;
}

.legal-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #4a90e2;
}

.legal-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 32px 0 16px 0;
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4a90e2;
    margin: 24px 0 12px 0;
}

.legal-section p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.legal-address {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #4a90e2;
    margin: 16px 0;
    line-height: 1.8;
}

.legal-address strong {
    color: #2c3e50;
}

.legal-address a {
    color: #4a90e2;
    text-decoration: none;
}

.legal-address a:hover {
    text-decoration: underline;
}

.legal-list {
    margin: 16px 0 16px 24px;
    padding: 0;
}

.legal-list li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-highlight {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
}

.legal-highlight p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.legal-highlight p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 2px solid #e8eef3;
    text-align: center;
}

.legal-footer p {
    font-size: 14px;
    color: #7f8c8d;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #357abd;
    text-decoration: underline;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 160px 0 60px;
    }

    .legal-hero-title {
        font-size: 32px;
    }

    .legal-hero-breadcrumb {
        font-size: 14px;
    }

    .legal-content-section {
        padding: 60px 0 80px;
    }

    .legal-section h2 {
        font-size: 26px;
    }

    .legal-section h3 {
        font-size: 20px;
    }

    .legal-section h4 {
        font-size: 16px;
    }

    .legal-section p,
    .legal-list li {
        font-size: 15px;
    }
}

/* ===================================
   ZUSÄTZLICHE MOBILE OPTIMIERUNGEN
   =================================== */

/* Verbesserte Touch-Bereiche */
@media (max-width: 768px) {
    /* Alle Links und Buttons größere Touch-Bereiche */
    .btn-primary,
    .btn-secondary,
    .btn-gold,
    .nav-btn-anmeldung {
        min-height: 44px;
        padding: 12px 24px;
        font-size: 16px;
    }

    /* Container Padding für bessere Lesbarkeit */
    .container,
    .venue-container,
    .countdown-container,
    .expectations-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Bessere Textlesbarkeit auf kleinen Bildschirmen */
    body {
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Bilder responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Footer Mobile Optimierung */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Programm Seite Mobile */
    .programm-header {
        padding: 140px 20px 60px;
    }

    .programm-container {
        padding: 40px 20px;
    }

    .zoom-info {
        padding: 20px;
    }

    .schedule-day {
        padding: 30px 20px;
    }

    .schedule-item {
        padding: 20px;
    }

    /* Mentoren Seite Mobile */
    .mentoren-header {
        padding: 140px 20px 60px;
    }

    .mentoren-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 20px;
    }

    /* Navbar Mobile - Bessere Hamburger Position */
    .nav-toggle-label {
        padding: 10px;
    }

    /* Scroll-Optimierung */
    .hero-banner {
        min-height: 70vh;
    }

    /* Teasers Mobile Optimierung */
    .programm-teaser-content,
    .mentoren-teaser-content {
        padding: 40px 20px;
    }

    .programm-teaser-grid,
    .mentoren-teaser-grid {
        gap: 30px;
    }
}

/* Extra kleine Bildschirme */
@media (max-width: 480px) {
    /* Noch kleinere Container-Abstände */
    .container,
    .venue-container,
    .countdown-container,
    .expectations-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons volle Breite auf sehr kleinen Bildschirmen */
    .btn-primary,
    .btn-secondary,
    .btn-gold {
        width: 100%;
        text-align: center;
    }

    /* Hero CTA Buttons Stack */
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .link-secondary {
        width: 100%;
        text-align: center;
    }

    /* Countdown Mobile Anpassung */
    .countdown-box {
        padding: 15px 10px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 11px;
    }

    /* Schedule Items kompakter */
    .schedule-item {
        padding: 15px;
    }

    .schedule-time {
        font-size: 14px;
    }

    .schedule-title {
        font-size: 16px;
    }

    /* Mentor Cards kompakter */
    .mentor-card {
        padding: 20px;
    }

    .mentor-teaser-card {
        padding: 20px;
    }

    /* Legal Pages */
    .legal-hero {
        padding: 140px 15px 50px;
    }

    .legal-container {
        padding: 0 15px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-address,
    .legal-highlight {
        padding: 15px;
        font-size: 14px;
    }
}

/* Landscape Telefon Optimierung */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-banner {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-date {
        font-size: 32px;
    }

    .topbar {
        position: static;
    }

    .main-nav {
        margin-top: 0;
    }
}

/* Performance Optimierungen für Mobile */
@media (max-width: 768px) {
    /* Reduzierte Animationen für bessere Performance */
    *,
    *::before,
    *::after {
        animation-duration: 0.5s !important;
        transition-duration: 0.3s !important;
    }

    /* Parallax deaktivieren auf Mobile für Performance */
    .hero-banner {
        background-attachment: scroll !important;
    }

    /* Reduzierte Schatten für Performance */
    .mentor-card,
    .mentor-teaser-card,
    .venue-info,
    .zoom-info {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
}

/* ===================================
   FAQ SECTION (Featured Snippets)
   =================================== */

.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e8eef3;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4a90e2;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
}

.faq-item.active {
    border-color: #4a90e2;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: #4a90e2;
    background: #f8f9fa;
}

.faq-question span {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #4a90e2;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin: 0;
}

.faq-answer p + p {
    margin-top: 15px;
}

.faq-answer a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }
}
