/* DESIGN-SYSTEM: PRAXISFORUM UNTERNEHMENSRESILIENZ 2026
   Stil: Nahbar, modern, hochwertig
*/

:root {
    /* Farbpalette */
    --bg-warm: #fdfaf7;
    --primary-deep: #0a2342;
    --accent-warm: #e67e5f;
    --accent-soft: #e9c46a;
    --action-warm: #e76f51;
    --text-main: #2c3e50;
    --text-muted: #4a5568;
    
    /* Effekte & Layout */
    --glass-white: rgba(255, 255, 255, 0.92);
    --max-width-content: 1400px;
    --max-width-hero: 1600px;
    --shadow-soft: 0 20px 40px rgba(10, 35, 66, 0.1);
    --radius-lg: 60px;
    --radius-md: 40px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-size: 1.15rem;
}

/* --- NAVIGATION --- */
.nav {
    background: var(--glass-white);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 163, 115, 0.15);
}

.nav-inner {
    max-width: var(--max-width-content);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 40px;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-deep);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    width: 400px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-deep);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--action-warm);
}




/* --- HERO SEKTION (Zwei-Spalten) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 15% 15%, rgba(212, 163, 115, 0.25), transparent 40%), 
                var(--primary-deep);
    padding-top: 100px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1920px; /* Nutzt die volle Desktop-Breite */
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Linker Inhaltsbereich wird breiter */
    gap: 100px;
    align-items: center;
    padding: 0 80px;
}

.hero-card {
    background: var(--glass-white);
    backdrop-filter: blur(30px);
    padding: 6rem 5rem;
    border-radius: var(--radius-lg);
    box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.badge {
    padding: 0.8rem 2.2rem;
    background: rgba(212, 163, 115, 0.1);
    color: var(--accent-warm);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    display: inline-block;
}
h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--primary-deep);
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.hero-card p {
    font-size: 1.4rem;
    max-width: 800px;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

/* --- BILD-SPALTE (PROOF) --- */
.hero-proof {
    display: flex;
    flex-direction: column;
}

.proof-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    transform: rotate(2deg); /* Nahbarer "Snapshot"-Look */
}

.proof-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.proof-img:hover {
    transform: scale(1.08) rotate(-2deg);
    z-index: 20;
    border-color: var(--accent-warm);
}

.img-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-warm);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- BUTTONS --- */
.btn-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.3rem 3.5rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--action-warm);
    color: white;
    box-shadow: 0 12px 24px rgba(231, 111, 81, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(231, 111, 81, 0.4);
}

.btn-outline {
    border: 2px solid var(--accent-warm);
    color: var(--accent-warm);
}

.btn-outline:hover {
    background: var(--accent-warm);
    color: white;
}

/* --- CONTENT SEKTIONEN --- */
.container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
}
/* Padding-Reduzierung für Sektionen auf Smartphones */
@media (max-width: 768px) {
    section {
        padding: 30px 0 !important;
    }
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 850px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 3.2rem;
    color: var(--primary-deep);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.glass-item {
    background: white;
    padding: 4.5rem 3.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 163, 115, 0.08);
}

.glass-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.glass-item h3 {
    color: var(--primary-deep);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.tag {
    color: var(--accent-warm);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    display: block;
    letter-spacing: 1px;
}

.price {
    margin-top: 2.5rem;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary-deep);
}

/* --- FOOTER / PARTNER --- */
.partner-area {
    background: var(--primary-deep);
    padding: 0px 0 120px 0;
    border-radius: 0px 0px 0 0;
    color: white;
}

.white { color: white; }
.soft-white { color: rgba(255,255,255,0.7); }

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.logo-box {
    height: 120px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.logo-box:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-warm);
}

/*Logo*/
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}
/* Anpassung für Tablets und Smartphones */
@media (max-width: 1024px) {
    .logo-img {
        height: 80px; /* Moderate Verkleinerung für Tablets */
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px; /* Verhindert, dass das Logo auf Handys zu dominant ist */
        margin: 0 auto; /* Zentriert das Logo auf Mobilgeräten */
    }
}

/* Anpassung der nav-inner für vertikale Zentrierung */
.nav-inner {
    max-width: var(--max-width-content);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0px;
}

/*main*/
.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Feature Sektionen (Z-Muster) */
.feature-section {
    padding: 120px 0 0 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 150px;
}
@media (max-width: 768px) {
    .feature-row {
        gap: 40px !important;
        margin-bottom: 40px !important;
        grid-template-columns: 1fr !important;
    }
}

.feature-row.invert {
    grid-template-columns: 0.9fr 1.1fr;
}

.feature-image {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    height: 550px;
    box-shadow: 0 40px 80px rgba(10, 35, 66, 0.12);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-row:hover .feature-image img {
    transform: scale(1.06);
}

.feature-text h2 {
    font-size: 2.2rem;
    color: var(--primary-deep);
    line-height: 1.1;
    margin: 1.5rem 0;
    font-weight: 900;
}

.feature-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 550px;
}

/* Beteiligungs-Karten Upgrade */
.offer-section {
    padding: 0px 0;
    background: linear-gradient(to bottom, transparent, rgba(212, 163, 115, 0.05));
    border-radius: 80px;
}

.section-header-left {
    margin-bottom: 80px;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.offer-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    transition: transform 0.4s ease;
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-content {
    padding: 4rem;
}

.offer-image {
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    padding: 0.5rem 1.2rem;
    background: rgba(231, 111, 81, 0.1);
    color: var(--action-warm);
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-box {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
}

.amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-deep);
}

.detail {
    color: var(--accent-warm);
    font-weight: 700;
}

/* Drei-Spalten-Grid für die Mitwirkung */
.offer-grid-triple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.offer-card-v2 {
    background: white;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    border: 1px solid rgba(212, 163, 115, 0.1);
    transition: transform 0.4s ease;
}

.offer-card-v2:hover {
    transform: translateY(-10px);
    border-color: var(--accent-warm);
}

.highlight-partner {
    background: linear-gradient(145deg, #ffffff 0%, #fdfaf7 100%);
    border: 2px solid var(--accent-warm);
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
}

/* Partner Logos Bereich */
.partner-logos-area {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(212, 163, 115, 0.15);
}

.partner-logos-area h3 {
    font-size: 2.2rem;
    color: var(--primary-deep);
    margin-bottom: 40px;
}

/* Zentrierter Header */
.section-header-center {
    text-align: center;
    margin-bottom: 100px;
    max-width: 1000px;
    margin-inline: auto;
}

.section-header-center .title-main {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--primary-deep);
    letter-spacing: -2px;
    margin: 1.5rem 0;
    line-height: 1.1;
}

.section-header-center .subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.offer-card-v2 {
    padding: 3rem;
    justify-content: space-between;
    min-height: 600px;
}

.status-badge.dark {
    background: var(--primary-deep);
    color: white;
}

/* Volle Breite ohne seitliches Einrücken */
.container-1600 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.offer-section-wide {
    padding: 120px 0;
}

/* Flacheres Drei-Spalten-Grid */
.offer-grid-flat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.offer-card-flat {
    background: white;
    border-radius: 40px;
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(212, 163, 115, 0.1);
    box-shadow: 0 20px 50px rgba(10, 35, 66, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    transition: transform 0.4s ease;
}

.offer-card-flat:hover {
    transform: translateY(-8px);
    border-color: var(--accent-warm);
}

.price-box-small {
    margin: 1.5rem 0;
}

.price-box-small .amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-deep);
}

.btn-card {
    width: 100%;
    white-space: nowrap;
    text-align: center;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-section-full {
    padding: 120px 0;
}

.price-info {
    margin: 2rem 0;
}

.price-info .amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-deep);
}

/* Programm */
.subpage-hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 15% 15%, rgba(212, 163, 115, 0.15), transparent 40%), var(--primary-deep);
    color: white;
    text-align: center;
}

.subpage-hero .title-main {
    color: white;
    margin-top: 1.5rem;
}

.subpage-hero .subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-inline: auto;
}

/* Veredelung des Badges in der Hero-Section */
.subpage-hero .badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff9d7e; /* Helleres Orange für besseren Kontrast */
    
    
    border: 1px solid rgba(255, 157, 126, 0.4);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px); /* Subtiler moderner Effekt */
   margin-top: 60px;
   
}
.day-selector {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: -50px auto 80px;
    position: relative;
    z-index: 10;
}

.day-btn {
    background: white;
    border: 1px solid rgba(212, 163, 115, 0.2);
    padding: 2rem 3rem;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
}

.day-btn.active {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
    transform: translateY(-5px);
}

.day-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent-warm);
    margin-bottom: 0.5rem;
}

.day-btn.active .day-label, .day-btn.active .day-title {
    color: white;
}

.day-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-deep);
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 60px;
    align-items: center;
}

.time-col {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-deep);
    opacity: 0.3;
}

.event-card {
    background: white;
    padding: 3.5rem;
    border-radius: 40px;
    border: 1px solid rgba(212, 163, 115, 0.1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.event-card:hover {
    
    border-color: var(--accent-warm);
}

.event-card.highlight {
    border-left: 10px solid var(--action-warm);
}

.event-card.dark {
    background: var(--primary-deep);
    color: white;
}

.event-card.dark h3 { color: white; }

.partner-proof-section {
    padding: 100px 0;
    background: #fdfaf7;
    border-top: 1px solid rgba(212, 163, 115, 0.1);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.proof-info h3 {
    font-size: 2.2rem;
    color: var(--primary-deep);
    margin: 1rem 0;
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.logo-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-deep);
    opacity: 0.6;
    border: 1px solid rgba(212, 163, 115, 0.1);
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.footer-simple {
    background: var(--primary-deep);
    color: white;
    padding: 100px 0 40px;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem !important;
        line-height: 3rem !important;
        margin-bottom: 1rem !important;
    }
}
.cta-actions {
    display: flex;
    gap: 20px;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}



/* --- RESPONSIVITÄT STARTSEITE & PROGRAMM (ZUSAMMENGEFASST) --- */

@media (max-width: 1400px) {
    .hero-inner { grid-template-columns: 1fr 350px; }
}

@media (max-width: 1200px) {
    .container, .container-wide, .container-1600 { padding: 0 40px; }
    
    /* Hero Reset */
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-proof { display: none; }
    .btn-group { justify-content: center; }
    
    /* Feature Rows Reset */
    .feature-row, .feature-row.invert { 
        grid-template-columns: 1fr; 
        text-align: left; 
        gap: 40px;
    }
    .feature-image { order: -1; height: 400px; }
        
    /* Grids Reset */
    .card-grid, .offer-grid-flat, .offer-grid-triple { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .offer-card-flat:last-child { grid-column: span 2; }
    
    /* Programm Reset */
    .day-selector { flex-direction: column; align-items: center; margin-top: -30px; }
    .day-btn { width: 100%; max-width: 400px; min-width: auto; }
    .proof-grid { grid-template-columns: 1fr; text-align: center; }
    .logo-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-card { padding: 3.5rem 2rem; }
    h1 { font-size: 2.8rem; }
    
    .card-grid, .offer-grid-flat, .offer-grid-triple, .offer-grid { 
        grid-template-columns: 1fr; 
    }
    .offer-card-flat:last-child { grid-column: span 1; }
    
    .timeline-row { grid-template-columns: 1fr; gap: 15px; }
    .time-col { text-align: left; font-size: 1.8rem; }
    
    .footer-cta { flex-direction: column; text-align: center; gap: 30px; padding-bottom: 40px!important;}
    .cta-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .container, .container-wide, .container-1600 { padding: 0 20px; }
    .logo-strip { grid-template-columns: 1fr; }
}

/**/
/* --- OPTIMIERTER HERO-BEREICH & BUTTONS --- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 15% 15%, rgba(212, 163, 115, 0.25), transparent 40%), 
                var(--primary-deep);
    padding-top: 90px; /* Platz für die Navigation */
    padding-bottom: 40px;
}

.hero-card {
    background: var(--glass-white);
    backdrop-filter: blur(30px);
    padding: 3.5rem 3rem; /* Etwas reduziertes Innen-Padding */
    border-radius: 30px; 
    box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    width: 100%;
    margin-top: 110px;
}

/* --- BUTTONS: ECKIGER & MODERN (12px) --- */
.btn {
    padding: 1rem 2rem;
    border-radius: 12px; /* Markanter Business-Radius statt vollrund */
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- MOBILE OPTIMIERUNG (TITEL & ABSTÄNDE) --- */

@media (max-width: 768px) {
    .hero {
        align-items: flex-start; /* Startet oben statt mittig, um Abschneiden zu verhindern */
        padding-top: 20px;
        min-height: auto; /* Erlaubt der Seite zu scrollen, falls die Karte hoch ist */
    }

    .hero-card {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        margin: 0 auto;
    }

    /* Titel deutlich kleiner auf Smartphones */
    h1 {
        font-size: 2.2rem !important; /* Verhindert das "Sprengen" des Containers */
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .hero-card p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    /* Buttons untereinander auf Mobile für mehr Platz */
    .btn-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 1.2rem;
        border-radius: 12px;
    }
}

/* Fix für sehr kleine Screens (z.B. iPhone SE) */
@media (max-width: 380px) {
    h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-card {
        padding: 2rem 1rem;
    }
}	
/**/
	
/*Anfrage Flächen*/
/* Spezifische Anpassung für die Anfrage-Flächen (3 Spalten) */
.anfrage-page .day-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin-top: -60px; /* Präziser Overlap zum Hero */
}

.anfrage-page .day-btn {
    width: 100%;
    min-width: 0;
    padding: 1.5rem 1rem;
}

/* Beibehaltung der Programm-Logik (2 Spalten) für die andere Seite */
@media (max-width: 992px) {
    .anfrage-page .day-selector {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .anfrage-page .day-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .anfrage-page .day-selector {
        grid-template-columns: 1fr; /* Erst hier für Mobile untereinander */
    }
}

/* Spezifisches Grid für die Anfrage-Steuerung */
    .anfrage-grid-layout .day-selector {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: -60px auto 80px;
    }

    .anfrage-grid-layout .day-btn {
        width: 100%;
        min-width: 0;
        padding: 1.5rem 1rem;
    }

    /* Formular-Styling */
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2rem;
    }
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .contact-form input, 
    .contact-form textarea {
        width: 100%;
        padding: 1.1rem;
        border-radius: 12px;
        border: 1px solid rgba(10, 35, 66, 0.1);
        background: #fdfaf7;
        font-family: inherit;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }
    .contact-form input:focus {
        outline: none;
        border-color: var(--accent-warm);
    }
    .input-dark {
        background: rgba(255, 255, 255, 0.05) !important;
        color: white !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
    .price-info {
        margin: 1.5rem 0;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    .tab-content {
        animation: fadeIn 0.4s ease-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 992px) {
        .anfrage-grid-layout .day-selector { gap: 10px; }
        .anfrage-grid-layout .day-title { font-size: 1rem; }
    }

    @media (max-width: 768px) {
        .anfrage-grid-layout .day-selector { grid-template-columns: 1fr; }
        .form-grid { grid-template-columns: 1fr; }
    }
    /* Container: Präzise horizontale Ausrichtung */
section.program-content.anfrage-grid-layout .day-selector {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 12px !important; /* Etwas engerer Abstand für kompakte Optik */
    max-width: 1000px !important;
    margin: -30px auto 50px !important; /* Weniger Versatz nach oben */
    padding: 0 20px !important;
    width: 100% !important;
}

/* Die Steuerungsflächen: Linear und stabil */
section.program-content.anfrage-grid-layout .day-btn {
    all: unset;
    flex: 1 !important;
    min-width: 0 !important;
    background: #ffffff !important;
    border: 1px solid rgba(10, 35, 66, 0.12) !important;
    border-radius: 8px !important; /* Reduzierte Abrundung für seriöse Linienführung */
    padding: 18px 10px !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: background 0.15s ease, border-color 0.15s ease !important;
}

/* Aktiver Zustand: Farblich markiert, statisch positioniert */
section.program-content.anfrage-grid-layout .day-btn.active {
    background: #e67e5f !important;
    border-color: #e67e5f !important;
    transform: none !important; /* Kein Sprung, absolute Positionsruhe */
    box-shadow: none !important;
}

/* Typografie-Anpassung */
.anfrage-grid-layout .day-label {
    font-size: 9px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    color: #e67e5f !important;
    margin-bottom: 3px !important;
}

.anfrage-grid-layout .day-btn.active .day-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

.anfrage-grid-layout .day-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0a2342 !important;
}

.anfrage-grid-layout .day-btn.active .day-title {
    color: #ffffff !important;
}

/* Desktop-Hover: Nur dezenter Farbwechsel */
@media (min-width: 1024px) {
    section.program-content.anfrage-grid-layout .day-btn:not(.active):hover {
        background: #f9f6f2 !important;
        border-color: rgba(212, 163, 115, 0.4) !important;
    }
}
/**/
	
/* Container: Erzwingt die Reihe und verhindert Umbrüche */
section.program-content .day-selector {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Verhindert das Umbrechen untereinander */
    justify-content: center !important;
    align-items: stretch !important;
    gap: 15px !important;
    max-width: 1000px !important;
    margin: 20px auto 40px !important;
    width: 100% !important;
}

/* Buttons: Ignoriert Breitenangaben aus anderen Dateien */
section.program-content .day-btn {
    all: unset !important; /* Löscht alle Standard-Styles */
    flex: 1 1 0 !important; /* Verteilt den Platz exakt gleichmäßig */
    width: auto !important; /* Überschreibt eventuelle 100% Angaben */
    background: #ffffff !important;
    border: 1px solid rgba(10, 35, 66, 0.12) !important;
    border-radius: 8px !important; /* 8px Radius wie gewünscht */
    padding: 20px 10px !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: background 0.15s ease !important;
}

/* Aktiver Zustand: Gold */
section.program-content .day-btn.active {
    background: #e67e5f !important;
    border-color: #e67e5f !important;
}

/* Text-Anpassung */
.program-content .day-label {
    display: block !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #e67e5f !important;
    margin-bottom: 4px !important;
}

.program-content .day-btn.active .day-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

.program-content .day-title {
    display: block !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0a2342 !important;
}

.program-content .day-btn.active .day-title {
    color: #ffffff !important;
}

/* --- PARTNER-LOGOS: SPEZIFISCHE ERWEITERUNG (KEINE AUSWIRKUNG AUF ANDERE BEREICHE) --- */

.partner-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 480px;
    margin-top: 40px; /* Versetzt die Logos für mehr Luftigkeit nach unten */
}

.partner-focus-tile {
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.partner-focus-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-focus-tile:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.partner-focus-tile:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Anpassung für mobile Endgeräte */
@media (max-width: 1200px) {
    .partner-focus-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .partner-focus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* --- PARTNER TYPOGRAFIE --- */

.partner-header .tag-mini {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.partner-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 40px 0;
}

/* --- PARTNER SEKTION: 15 LOGOS (5 SPALTEN) --- */

.hero-partners {
    width: 100%;
}

.partner-mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 Logos nebeneinander für 15 Logos insgesamt */
    gap: 12px;
    width: 100%;
}

.logo-tile {
    aspect-ratio: 1.5 / 1; /* Kompakteres Querformat für 5er-Reihe */
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.logo-tile a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-tile a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
/* --- RESPONSIVE ANPASSUNG --- */

@media (max-width: 1600px) {
    .hero-inner {
        gap: 60px;
        padding: 0 40px;
    }
    
    .partner-mini-grid {
        grid-template-columns: repeat(3, 1fr); /* Zurück auf 3 Spalten bei kleineren Screens */
    }
}

@media (max-width: 1200px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partner-mini-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
}

/* --- LAYOUT & BREITE --- */
.hero-inner {
    max-width: 100%;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

/* --- TYPOGRAFIE PARTNER (WEISS) --- */
.hero-partners .tag-mini {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-partners .partner-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 30px;
}

/* --- GRID FÜR 15 LOGOS (5 SPALTEN) --- */
.partner-mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.logo-tile {
    aspect-ratio: 1.5 / 1;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.logo-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- RESPONSIVE OPTIMIERUNG HERO & PARTNER-GRID --- */

@media (max-width: 1400px) {
    .hero-inner {
        grid-template-columns: 1fr; /* Stapelt Inhalt und Logos untereinander */
        gap: 40px;
        padding-top: 120px;
    }

    .hero-card {
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-partners {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .partner-mini-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 Logos nebeneinander auf Tablets */
        gap: 10px;
    }
    
    .hero-partners .partner-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .partner-mini-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Logos nebeneinander auf Smartphones */
    }

    .hero-inner {
        padding: 0 20px;
    }
    
    .hero-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 400px) {
    .partner-mini-grid {
        grid-template-columns: 1fr; /* 1 Logo pro Zeile auf sehr kleinen Geräten */
    }
}

/*Kategorien*/
/* SLOT MODUL STYLES */
.slot-module {
    padding: 100px 0;
    background: var(--bg-warm);
}
.aussteller .slot-module {
	padding: 0;
	background: none;
}
.slot-header-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.slot-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
}

.slot-search-wrapper input {
    width: 100%;
    padding: 1.4rem 4rem 1.4rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(10, 35, 66, 0.1);
    background: white;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-deep);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    outline: none;
    transition: all 0.3s ease;
}

.slot-search-wrapper input:focus {
    border-color: var(--accent-warm);
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.15);
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    pointer-events: none;
}

.slot-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
    max-height: 650px;
    overflow-y: scroll;
    padding: 25px;
    background: rgba(10, 35, 66, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(10, 35, 66, 0.05);
}

/* Scrollbar Styling */
.slot-container::-webkit-scrollbar { width: 8px; }
.slot-container::-webkit-scrollbar-track { background: transparent; }
.slot-container::-webkit-scrollbar-thumb { background: var(--accent-warm); border-radius: 10px; }

.slot-tile {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(10, 35, 66, 0.04);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slot-tile:hover {
    transform: scale(1.02) translateX(5px);
    border-color: var(--accent-warm);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    z-index: 2;
}

.slot-number {
    background: var(--primary-deep);
    color: var(--accent-soft);
    font-weight: 900;
    font-size: 1.6rem;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.slot-limit-tag {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--action-warm);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.slot-category {
    font-size: 0.95rem;
    color: var(--primary-deep);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* --- VERFEINERTER HEADER-BEREICH (SLOT-MODULE) --- */

.slot-header-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge: Orange/Gold hinterlegt & Pill-Shape */
.slot-header-box .badge {
    background: #fdf2e9; /* Zarter Orange-Ton für den Hintergrund */
    color: #e67e5f;      /* Dein Akzent-Gold/Orange */
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
    border: none;
}

/* Titel: Dunkelblau & Präzise */
.slot-header-box h2 {
    color: #0a2342;      /* var(--primary-deep) */
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

/* Untertext: Zentriert & Dezent */
.slot-header-box p {
    color: #4a5568;      /* var(--text-muted) */
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
}

/* Suchleiste: Clean & Modern mit Schatten */
.slot-search-wrapper {
    position: relative;
    max-width: 650px;
    width: 100%;
    margin-top: 45px;
}

.slot-search-wrapper input {
    width: 100%;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(10, 35, 66, 0.08);
    background: #ffffff;
    font-size: 1.15rem;
    color: #0a2342;
    box-shadow: 0 15px 35px rgba(10, 35, 66, 0.06);
    outline: none;
    transition: all 0.3s ease;
}

.slot-search-wrapper input:focus {
    border-color: #e67e5f;
    box-shadow: 0 20px 45px rgba(212, 163, 115, 0.12);
}

.slot-search-wrapper input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

/* Lupe/Icon Farbe anpassen */
.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    color: #0a2342;
}
/* Badge: Kräftiges Orange, Weißer Text, Rechteckig mit leichtem Radius */
/* --- FINALES HEADER-DESIGN --- */

.slot-header-box .badge {
    background-color: #e67e5f; 
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

/* Anpassung der Suchleiste mit farblich passender Lupe */
.slot-search-wrapper {
    position: relative;
    max-width: 650px;
    margin: 40px auto 0;
}

.slot-search-wrapper input {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(10, 35, 66, 0.08);
    font-size: 1.15rem;
    box-shadow: 0 15px 35px rgba(10, 35, 66, 0.06);
    outline: none;
}

.slot-search-wrapper input:focus {
    border-color: #e67e5f;
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #e67e5f; /* Lupe jetzt ebenfalls in Orange */
    font-size: 1.4rem;
    font-weight: bold;
}
/**/
	
/* --- SEKTION: IHRE MITWIRKUNG (ZENTRIERT) --- */

/* --- ZENTRALES DESIGN-REFINEMENT: MITWIRKUNG --- */

#beteiligung.offer-section-wide {
    padding: 120px 0; /* Mehr Atmenraum oben und unten */
    background: #ffffff;
    text-align: center;
}

/* Header-Bereich */
.section-header-center {
    margin-bottom: 80px; /* Deutlicher Abstand zum Grid */
}

.section-header-center .tag {
    color: #e67e5f;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 35px; /* Abstand zum Titel vergrößert */
}

.section-header-center .title-main {
    color: #0a2342;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
}

/* Textlaufbreite begrenzt für bessere Lesbarkeit */
.section-header-center .subtitle {
    color: #4a5568;
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 650px; /* Schmalerer Textlauf verhindert "Zerschießen" */
    margin: 0 auto;
}

/* --- KARTEN-OPTIK --- */

.offer-card-flat {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px; /* Großzügiger Innenabstand */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(10, 35, 66, 0.05);
    box-shadow: 0 20px 50px rgba(10, 35, 66, 0.04);
    transition: all 0.4s ease;
}

/* Badge-Abstand korrigiert */
.status-badge {
    background-color: #fcece7;
    color: #e67e5f;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px; /* Erhöhter Abstand zum Titel "Aussteller" */
}

.status-badge.dark {
    background-color: #0a2342;
    color: #ffffff;
}

.offer-card-flat h3 {
    color: #0a2342;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px; /* Mehr Platz zum Fließtext */
}

.offer-card-flat p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    min-height: 80px; /* Sorgt für einheitlichen Look bei unterschiedlichen Textlängen */
}

/* Preis-Bereich */
.price-box-small {
    margin-bottom: 40px;
}

.price-box-small .amount {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: #0a2342;
    letter-spacing: -1px;
}

.price-box-small .detail {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e67e5f;
    margin-top: 5px;
    display: block;
}

/* Button-Zentrierung & Größe */
.btn-card {
    width: 100%;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.btn-card:hover {
    transform: translateY(-3px);
}

/*Eventdate Badge*/
/* --- PROMINENTE DATUMS-BADGE MIT ANIMATION --- */

/* --- PROMINENTE DATUMS-ANZEIGE --- */
/* --- DATUMS-BADGE OPTIMIERT --- */

.event-date-container {
    text-align: center;
    margin: 60px 0 40px 0;
}

.event-date-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 5px 55px;
    margin-bottom: 20px;
    border-radius: 100px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #0a2342;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 40px rgba(212, 163, 115, 0.3); 
    border: 1px solid rgba(212, 163, 115, 0.4);
    position: relative;
}

.event-date-badge span.accent {
    color: #e67e5f;
    margin-right: 8px;
}

/* Trenner entfernt, Abstand angepasst */
.event-date-badge span.location {
    font-weight: 400;
    color: #64748b;
    margin-left: 10px;
    padding-left: 0;
    border-left: none; 
}

/* --- RESPONSIVE ANPASSUNG --- */
@media (max-width: 1400px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    /* Nutzt 8% der Bildschirmbreite als Abstand, aber mindestens 60px und maximal 120px */
    padding-top: clamp(0px, 8vw, 120px); 
  }
}
/* Mittlere Bildschirme (Tablets/kleine Laptops) */
@media (min-width: 601px) and (max-width: 992px) {
    .event-date-container {
        margin: 80px 15px 30px 15px;
    }
}

@media (max-width: 768px) {
  

    .event-date-badge {
        display: inline-block; /* Behält die Badge-Form bei */
        padding: 12px 30px;
        border-radius: 100px; /* Rundung beibehalten */
        font-size: 1.1rem;
        width: auto;
        max-width: 95%;
    }

    .event-date-badge span.location {
        display: inline;
        margin-left: 5px;
        border-top: none;
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .event-date-badge {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

/* --- FIX FÜR NAVIGATIONABSTAND (< 601px) --- */

@media (max-width: 600px) {
    .event-date-container {
        /* 100px war zu viel, 75px bietet genug Luft zur Navigation ohne "riesig" zu wirken */
        margin: 75px 10px 25px 10px; 
    }

    .event-date-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
        display: inline-flex;
        border-radius: 100px;
    }

    .event-date-badge span.location {
        margin-left: 8px;
        display: inline;
    }
}

/* --- PRÄZISER ABSTANDSFIX FÜR TABLETS (601px - 768px) --- */

@media (min-width: 601px) and (max-width: 768px) {
    .event-date-container {
        /* Reduzierter Abstand nach oben für diesen spezifischen Bereich */
        margin-top: 40px !important; 
        margin-bottom: 30px;
    }

    .event-date-badge {
        padding: 10px 40px;
        font-size: 1.1rem;
        /* Verhindert das Umbrechen in diesem Bereich */
        display: inline-flex;
        flex-direction: row; 
    }
}
/* --- FIX FÜR DEN BEREICH 601px - 768px --- */

@media screen and (min-width: 601px) and (max-width: 768px) {
    /* Wir setzen den Container auf ein Minimum, um den Hero-Abstand auszugleichen */
    div.event-date-container {
        margin-top: 0 !important;
        padding-top: 0 !important;
        transform: translateY(-20px); /* Schiebt die Badge aktiv nach oben */
    }

    .event-date-badge {
        padding: 8px 30px !important;
        font-size: 1.1rem !important;
    }
}


/*Navigation Responsive*/
/* Grundaufbau der Navigation */
/* Globale Resets für die Navigation */
.nav, .nav * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.nav {
    width: 100%;
    background-color: #ffffff;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #eee; /* Optionale feine Trennlinie */
}

/* 1600px Breite & Bündigkeit */
.nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px; /* Fixe Höhe passend zum Logo */
    padding: 0 20px;
}

/* Logo linksbündig */
.logo, .logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 110px;
    width: auto;
    display: block;
}

/* Navigation rechtsbündig */
.nav-links {
    display: flex;
    list-style: none;
    height: 100%;
    gap: 25px;
}

.nav-links > li {
    position: relative; /* WICHTIG: Referenz für das Dropdown */
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links > li > a {
    text-decoration: none;
    color: #0a2342;
    font-size: 1rem;
    font-weight: 700;
    transition: color 0.2s;
}

/* Korrektur der Dropdown-Verschiebung */
.nav-links li ul {
    position: absolute;
    top: 100%; /* Exakt unter der weißen Leiste */
    left: 0;   /* Richtet das Menü an der linken Kante von "Über mich" aus */
    background: #ffffff;
    min-width: 250px;
    list-style: none; /* Entfernt die Kreise/Punkte aus dem Bild */
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid #e67e5f;
    
    /* Sichtbarkeits-Logik */
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.2s ease-in-out;
}

.nav-links li:hover > ul {
    opacity: 1;
    visibility: visible;
}

.nav-links li ul li {
    width: 100%;
}

.nav-links li ul li a {
    padding: 12px 20px;
    display: block;
    color: #0a2342;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links li ul li a:hover {
    background-color: #0a2342;
    color: #fff;
}


/* Navigation: Abschluss nach unten sichern */
.nav {
    margin-bottom: 0 !important;
    padding: 30px 0 !important;
    border-bottom: none;
}

/* 2. Den blauen Hintergrund-Container (Hero-Section) oben nullen */
.hero-section, 
section[class*="hero"],
.main-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 3. Die Hero-Card direkt an die Navigation ziehen */
.hero-card {
    margin-top: 0 !important; /* Kein Abstand nach oben */
    padding-top: 20px !important; /* Nur minimaler Innenabstand für das Datum */
    border-top-left-radius: 40px; /* Behält die Rundung bei */
    border-top-right-radius: 40px;
}

/* 4. Das Datums-Badge (weißer Balken) nach oben rücken */
.hero-card .date-badge,
.hero-card .hero-date {
    margin-top: 0 !important;
}

/* 5. Mobile Optimierung (Smartphone) */
@media (max-width: 768px) {
    .nav-inner {
        height: auto !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .hero-card {
        padding-top: 15px !important;
        margin-top: 0 !important;
    }
}

/* Smartphone & Tablet Optimierung */
@media (max-width: 1024px) {
    .nav-inner {
        height: 80px; /* Kompakter auf Mobile */
        padding: 0 15px;
    }

    .logo-img {
        height: 80px;
    }

    .nav-links {
        display: none; /* Desktop Menü aus */
    }

    .nav-toggle {
    	z-index: 10005 !important;
    position: relative !important;
    pointer-events: auto !important;
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background-color: #0a2342;
    }
}

/* Burger Button Styling */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0a2342;
    margin: 5px 0;
    transition: 0.3s;
}

/* Mobile Setup - Komplett-Austausch ab hier */
@media (max-width: 1024px) {
    .nav-toggle { 
        display: block; 
    }
    
   .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        /* Eleganter Dunkelblau-Verlauf mit Partikel-Simulation */
        background: radial-gradient(circle at 20% 30%, rgba(212, 163, 115, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(212, 163, 115, 0.05) 0%, transparent 40%),
                    #0a2342;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 10% 40px 10%;
        margin: 0;
        list-style: none !important;
        clip-path: inset(0 0 0 100%);
        transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        z-index: 1050;
    }

    .nav-links.active {
        clip-path: inset(0 0 0 0);
    }

    /* --- LISTEN-STRUKTUR RESET --- */
    .nav-links li {
        width: 100%;
        list-style: none !important;
        margin: 0;
        padding: 0;
        display: block !important;
    }

    /* --- HAUPTPUNKTE --- */
    .nav-links > li > a {
        color: #ffffff;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 700;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* --- UNTERPUNKTE (GARANTIERT SICHTBAR) --- */
    .nav-links li ul {
        display: block !important; /* Immer ausgeklappt */
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        padding: 10px 0 20px 20px !important;
        margin: 0 !important;
        list-style: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .nav-links li ul li {
        display: block !important;
    }

    .nav-links li ul li a {
        font-size: 1.05rem !important;
        font-weight: 400 !important;
        color: #e67e5f !important; /* Edles Gold */
        padding: 8px 0 !important;
        display: block !important;
        text-transform: none !important;
        border: none !important;
    }

    /* Dezenter Partikel-Indikator */
    .nav-links li ul li a::before {
        content: "•";
        margin-right: 12px;
        color: rgba(212, 163, 115, 0.5);
    }

    /* --- BURGER BUTTON ANIMATION --- */
    
    
    .nav.open-nav .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .nav.open-nav .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav.open-nav .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* Optional: Sanfte Hintergrund-Animation */
@keyframes particleFloat {
    0% { background-position: 0% 0%; }
    50% { background-position: 10% 5%; }
    100% { background-position: 0% 0%; }
}

.nav-links.active {
    animation: particleFloat 15s ease-in-out infinite;
}


/*drei Flächen im Header*/
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: -100px; /* Reduziert die Lücke zum vorherigen Element drastisch */
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 55px 0 0 0;
}

.value-card {
    background: #0a2342;
    padding: 25px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    background: #0d2d54;
    border-bottom-color: #e67e5f;
    transform: translateY(-5px);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.value-icon {
    width: 28px;
    height: 28px;
    color: #e67e5f;
    flex-shrink: 0;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-header h3 {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: 1fr;
        margin-top: -20px;
        padding: 0 20px;
    }
}
@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: 1fr;
        margin-top: -20px;
        padding: 0; /* Entfernt das seitliche Padding des Containers */
        width: 100%;
    }
    
    .value-card {
        padding: 25px;
        border-radius: 0; /* Optional: Macht die Flächen bündig zum Bildschirmrand */
        width: 100%;
    }
}
/**/
	
/*Expertise & Reichweite*/
	.stat-rings-container {
    width: 100%;
    background-color: #3d2b1f; /* Tiefer Dunkelkontrast */
    padding: 80px 40px;
    border-radius: 50px;
}

.stat-rings-section {
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-rings-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.stat-rings-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

.stat-rings-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, #e67e5f 0%, rgba(212, 163, 115, 0) 100%);
}

.stat-rings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-rings-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-ring-visual {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

/* Ring Glow & Border */
.stat-ring-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 3px; /* Dicke des Rings */
    background: var(--ring-color);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
}

.gold-ring { 
    --ring-color: conic-gradient(#e67e5f 70%, transparent 0); 
    box-shadow: 0 0 30px rgba(212, 163, 115, 0.2);
}
.blue-ring { 
    --ring-color: conic-gradient(#3b82f6 40%, transparent 0); 
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}
.cyan-ring { 
    --ring-color: conic-gradient(#06b6d4 55%, transparent 0); 
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.stat-ring-val {
    display: block;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.stat-ring-unit {
    display: block;
    color: #e67e5f;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 2px;
}

.stat-rings-item h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.stat-rings-item p {
    color: rgba(255, 255, 255, 0.85); /* Hoher Kontrast */
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 250px;
}

/* Mobile Optimierung */
@media (max-width: 1024px) {
    .stat-rings-container { padding: 60px 20px; }
    .stat-rings-grid { grid-template-columns: 1fr; gap: 70px; }
    .stat-rings-header { margin-bottom: 50px; }
    .stat-rings-title { font-size: 0.8rem; letter-spacing: 2px; }
}
/**/
	
/*Feature List*/
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    color: #0a2342;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}



/* Moderner Custom-Bullet (Goldener Punkt oder kleiner Haken) */
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 19px;
    width: 14px;
    height: 14px;
    background-color: #e67e5f; /* Ihr Gold-Ton */
    border-radius: 3px; /* Leicht abgerundet für modernen Look */
    box-shadow: 0 2px 4px rgba(212, 163, 115, 0.3);
}

/* Hover-Effekt für Interaktivität */
.feature-list li:hover {
    color: #e67e5f;
    transition: all 0.3s ease;
}

/**/
	
/*Program-Vision*/
/* Sektions-Grundlage */
/* Container & Header */
.program-vision {
    padding: 120px 0;
    background: #f9f9f9;
    color: #002244;
}

.slot-header-box {
    margin-bottom: 80px;
    max-width: 900px;
}

.slot-header-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: #002244;
}

.slot-header-box p {
    color: #4a5568;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Timeline Grundgerüst */
.modern-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-axis {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 60px;
    box-sizing: border-box;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

/* Dots */
.timeline-dot {
    position: absolute;
    top: 45px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #002244;
    border-radius: 50%;
    z-index: 2;
}

.left .timeline-dot { right: -7px; }
.right .timeline-dot { left: -7px; }

.timeline-dot.highlight {
    background: #e67e5f;
    border-color: #e67e5f;
    box-shadow: 0 0 15px rgba(230, 126, 95, 0.4);
}

/* Karten & Content */
.timeline-content {
    background: #ffffff;
    color: #002244;
    padding: 40px;
    /* Extrem sanfter Übergang für alle relevanten Eigenschaften */
    transition: 
        background-color 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
        color 1.0s cubic-bezier(0.4, 0, 0.2, 1), 
        transform 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background-color, transform, color;
}

.timeline-content.is-active {
    background: #002244;
    border-color: #002244;
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 34, 68, 0.2);
}

/* Sanfter Farbumschlag der Textelemente */
.timeline-content h3, 
.timeline-content p, 
.timeline-content .timeline-tag-date,
.timeline-content .timeline-tag {
    transition: color 1.0s cubic-bezier(0.4, 0, 0.2, 1), background-color 1.0s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content.is-active h3,
.timeline-content.is-active p,
.timeline-content.is-active .timeline-tag-date {
    color: #ffffff;
}

.timeline-content.is-active .timeline-tag-date {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}
.timeline-content.accent-card {
    border-top: 5px solid #e67e5f;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 34, 68, 0.1);
}

/* Badges & Tags */
.timeline-tag-date {
    background: #002244;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 34, 68, 0.2);
}

.timeline-tag {
    background: rgba(230, 126, 95, 0.1);
    color: #e67e5f;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

/* Typografie */
.timeline-content h3 {
    font-size: 1.75rem;
    color: #002244;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-axis { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding: 20px 0 20px 50px; }
    .timeline-dot { left: 14px !important; }
}
.timeline-content:hover {
    transform: translateY(-5px);
    background: #002244;
    border-color: #002244;
    box-shadow: 0 15px 45px rgba(0, 34, 68, 0.2);
}

.timeline-content:hover h3,
.timeline-content:hover p,
.timeline-content:hover .timeline-tag-date {
    color: #ffffff;
}

.timeline-content:hover .timeline-tag-date {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-axis {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    /* Startfarbe */
    background: #e2e8f0; 
    transform: translateX(-50%);
    /* Keine Transition für Background, damit es direkt dem Scrollen folgt */
    transition: none; 
}
.timeline-axis.is-active {
    background-position: 0 0%;
}
@media (max-width: 768px) {
    /* Timeline-Achse und Punkte entfernen */
    .timeline-axis,
    .timeline-dot {
        display: none !important;
    }

    /* Sektions-Abstände anpassen */
    .program-vision {
        padding: 60px 0;
    }

    .slot-header-box {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    /* Kärtchen auf volle Breite ausdehnen */
    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        padding: 10px 15px !important; /* Weniger Padding für mehr Inhaltsfläche */
        text-align: left !important;
    }

    .timeline-content {
        padding: 25px 20px;
        border-radius: 15px; /* Etwas flacherer Radius für Mobile */
        width: 100%;
        box-sizing: border-box;
    }

    /* Typografie-Anpassung für kleine Screens */
    .slot-header-box h2 {
        font-size: 1.8rem;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
    }

    /* Hover/Aktiv-Skalierung auf Mobile reduzieren */
    .timeline-content.is-active {
        transform: scale(1.01);
    }
}
@media (max-width: 768px) {
    .modern-timeline {
        display: flex;
        flex-direction: column;
        gap: 20px; /* Gleichmäßiger Abstand zwischen den Karten */
    }

    .timeline-item {
        padding: 0 !important;
        margin-bottom: 10px;
    }
}
/**/
	
/*Aussteller*/
/* --- Basis & Layout --- */
.participation-section {
    padding: 120px 0;
    background: #ffffff;
}

.wide-layout {
    display: flex;
    align-items: stretch;
    gap: 80px;
    max-width: 100%;
}

.content-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-side {
    flex: 1;
}

/* --- Kärtchen & Listen --- */
.pricing-card.premium, .startup-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 34, 68, 0.08);
    padding: 60px;
    box-sizing: border-box;
}

.premium { border-top: 8px solid #002244; }
.startup-card { border-top: 8px solid #e67e5f !important; }

/* Bullet-Point Fix für alle Auflösungen */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    display: grid !important;
    grid-template-columns: 24px 1fr !important;
    gap: 12px !important;
    align-items: start !important;
    text-align: left !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #edf2f7;
}
body.besucher .feature-list li {
   display: flex!important; 
    grid-template-columns: 24px 1fr !important;
    gap: 12px !important;
    align-items: start !important;
    text-align: left !important;
    padding: 12px 25px!important;
    border-bottom: 1px solid #edf2f7;
}


.feature-list li::before {
    content: "";
    color: #e67e5f;
    font-weight: 800;
}

/* --- Formular & Felder --- */
.form-anchor {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #edf2f7;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-field {
    width: 100%;
    padding: 14px 18px;
    background: #fdfdfd;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #002244;
    box-sizing: border-box;
}

/* --- Checkbox & Datenschutz (Exakt Links) --- */
.checkbox-container {
    display: grid !important;
    grid-template-columns: 20px 1fr !important;
    gap: 15px !important;
    align-items: start !important;
    margin-top: 20px !important;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin: 4px 0 0 0 !important;
    cursor: pointer;
}

.checkbox-text {
    text-align: left !important;
    font-size: 0.75rem !important;
    line-height: 1.6 !important;
    color: #4a5568;
}

/* --- Button Styling --- */
.btn-submit {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 100% !important;
    padding: 18px !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 15px;
}

.premium .btn-submit { background: #002244 !important; color: #ffffff !important; }
.startup-card .btn-submit { background: #e67e5f !important; color: #ffffff !important; }

.btn-submit:hover { opacity: 0.9; }

/* --- Desktop Optimierung > 1024px --- */
@media (min-width: 1025px) {
    .wide-layout {
        align-items: flex-start !important;
        gap: 120px !important;
    }

    .form-anchor { width: 100% !important; }
}

/* --- Mobile Optimierung < 1024px --- */
@media (max-width: 1024px) {
    .wide-layout {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .pricing-card.premium, .startup-card {
        padding: 40px 25px !important;
    }
}

.event-card li, 
.program-content li {
    background-image: none !important; /* Entfernt den blauen Pfeil */
    list-style-type: none !important;
    position: relative;
    padding-left: 25px;
}

/* Falls Sie ein neues, braunes Icon setzen möchten: */
.event-card li::before {
    content: '→'; /* Oder Ihr gewünschtes Zeichen */
    position: absolute;
    left: 0;
    color: #8B4513; /* Ihr Braunton */
    font-weight: bold;
}
.feature-text .feature-list {
    list-style: none !important;
    padding: 0 !important;
    max-width: 100% !important; /* Verhindert vertikales Quetschen */
}

.feature-text .feature-list li {
    position: relative !important;
    padding-left: 30px !important;
    margin-bottom: 15px !important;
    background: none !important; /* Löscht das braune Quadrat-Icon */
    display: block !important;
    width: 100% !important;
}

.feature-text .feature-list li::before {
    content: '' !important;
    position: absolute;
    left: 0;
    top: 19px;
    color: #8B4513;
    font-weight: bold;
}

/**/
	
/*Besucher*/
/* Container & Layout */
.visitor-section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.slot-header-box {
    text-align: center;
    margin-bottom: 60px;
}

.slot-header-box h2 {
    font-size: 3rem;
    margin: 25px 0;
}
@media (max-width: 768px) {
    .slot-header-box h2 {
        font-size: 2rem !important;
        line-height: 3rem !important;
        margin: 15px 0 !important;
    }
}



/* Wer Sie erwartet - Neu & Edel */
.target-group-inlay {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 50px;
    margin: 40px auto;
    max-width: 1100px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.highlight-label {
    display: inline-block;
    color: #e67e5f;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.target-group-inlay p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

/* Ticket Karten - Breiter & Hochwertiger */
.ticket-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ticket-card {
    flex: 1;
    min-width: 380px; /* Erhöhte Breite */
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 50px 40px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ticket-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.ticket-card.highlighted {
    border: 2px solid #e67e5f;
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e67e5f;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
}

.ticket-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.ticket-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e67e5f;
    margin-bottom: 30px;
}

/* Listen-Reinigung & Styling */
.ticket-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ticket-card li {
    background: none !important; /* Entfernt die braunen Flächen definitiv */
    position: relative !important;
    padding-left: 35px !important;
    margin-bottom: 15px !important;
    font-size: 1.1rem;
    line-height: 1.5;
}

.ticket-card li::before {
    content: '' !important;
    position: absolute !important;
    left: 0;
    top: 19px;
    color: #e67e5f;
    font-weight: bold;
    font-size: 1.3rem;
}
/**/
	
.timeline-axis {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #eee;
    transform: translateX(-50%);
}

.axis-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #e67e5f;
}

/* Sanftes Umfärben der Karten */
.timeline-content {
    background: #fff;
    transition: all 0.6s ease;
    border: 1px solid #f0f0f0;
    opacity: 0.7;
    transform: scale(0.95);
    /* Sicherstellung der Lesbarkeit */
    color: #333 !important; 
}

/* Zustand nach Aktivierung durch Scrollen */
.timeline-item.active .timeline-content {
    background: #fffafa !important;
    border-color: #e67e5f !important;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(230, 126, 95, 0.1);
}

/* Expliziter Schutz gegen weiße Schrift bei Hover */
.timeline-item.active .timeline-content:hover,
.timeline-item.active .timeline-content * {
    color: #333 !important;
}

.timeline-item.active .timeline-content h3 {
    color: #1a1a1a !important;
}

.timeline-item.active .timeline-content .timeline-tag-date {
    color: #e67e5f !important;
}

.timeline-dot {
    transition: background 0.4s ease;
}

.timeline-item.active .timeline-dot {
    background: #e67e5f !important;
}
.highlight-text {
    position: relative;
    font-weight: 600;
    color: #1a1a1a;
    padding: 2px 4px;
    background: rgba(230, 126, 95, 0.1); /* Sanftes Orange */
    border-bottom: 2px solid #e67e5f; /* Ihr Branding-Orange */
    border-radius: 4px;
    display: inline-block;
}
.price-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e67e5f; /* Ihr Branding-Orange */
    background: rgba(230, 126, 95, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    margin-top: 10px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(230, 126, 95, 0.2);
}

.price-note::before {
    content: "✓";
    font-weight: 900;
}

.booking-notice {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    color: #ff9d7e;
    border: 1px solid #ff9d7e;
    background: rgba(255, 157, 126, 0.05);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 0.8s ease-out;
}
.booking-notice a {
	color: #ff9d7e;
	text-decoration: none;
}

.booking-notice-container {
    text-align: center;
    margin: 4rem 0 3rem 0; /* Abstand oben und unten */
}

.booking-notice {
    display: inline-block;
    padding: 0.8rem 2rem;
    color: #ff9d7e;
    border: 1px solid #ff9d7e;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Spezifische Formatierung für das Partner-Modul */
.hero-partners.shifted-down {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.hero-partners .partner-mini-grid {
    display: grid;
    /* Dies erzwingt die kleinen Kacheln wie auf der Startseite */
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.25rem;
    justify-content: center;
}

.hero-partners .logo-tile {
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.hero-partners .logo-tile img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.hero-partners .logo-tile:hover {
    transform: translateY(-3px);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .hero-partners .partner-mini-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }
}

/*Widmung*/
/* Container-Setup */
.section-white {
    background-color: #ffffff;
    padding: 80px 0; /* Leicht reduziert für Mobile */
}

.dedication-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Kompakterer Abstand zwischen den Einträgen */
    align-items: center;
    padding: 0 20px;
}

/* Desktop Layout */
.dedication-entry {
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    width: 100%;
}

.dedication-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 20px 20px 0px #f4f4f4;
}

.dedication-text {
    padding-left: 30px;
}

.dedication-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 1rem;
}

.dedication-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.lifespan {
    font-size: 1.2rem;
    color: #c4a47c;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
}

/* Mobile Optimierung (Smartphone) */
@media (max-width: 768px) {
    .dedication-entry {
        grid-template-columns: 1fr; /* Stapelt Bild und Text */
        gap: 30px;
    }

    .dedication-image img {
        height: 250px; /* Flacheres Querformat auf Mobile */
        box-shadow: 10px 10px 0px #f4f4f4; /* Kleinerer Schatten für kleine Screens */
    }

    .dedication-text {
        padding-left: 0; /* Hebt Einrückung auf Mobile auf für volle Breite */
    }

    .dedication-text h2 {
        font-size: 2.2rem; /* Passende Größe für Mobile */
    }

    .description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .dedication-entry {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dedication-image img {
        height: 200px; /* Stark reduzierte Höhe */
        width: 100%;
        object-fit: contain; /* Garantiert, dass das komplette Foto sichtbar ist */
        background-color: #f4f4f4; /* Optional: Füllt leere Ränder dezent auf */
        box-shadow: 10px 10px 0px #eeeeee;
    }

    .dedication-text {
        padding-left: 0;
    }

    .dedication-text h2 {
        font-size: 2rem;
    }

    .lifespan {
        margin-bottom: 1rem;
    }
}

/* Tablet-Anpassung (unter 1024px) */
@media (max-width: 1024px) {
    .dedication-entry {
        grid-template-columns: 1fr; /* Einspaltig */
        gap: 40px;
        max-width: 600px;
        text-align: center;
    }

    .description {
        margin: 0 auto;
    }

    .dedication-image img {
        height: 450px;
        box-shadow: 15px 15px 0px #f4f4f4; /* Kleinerer Schatten mobil */
    }
}

/* Smartphone-Anpassung (unter 480px) */
@media (max-width: 480px) {
    .section-white {
        padding: 60px 0;
    }

    .dedication-text h2 {
        font-size: 2.2rem;
    }

    .dedication-image img {
        height: 230px;
    }

    .dedication-wrapper {
        gap: 60px;
    }
}
/**/
	
/*Medien und Netzwerk*/
.partner-header {
    background-color: #0a2342;
    padding: 0px 0 0px 0;
    text-align: center; /* Zentriert Hero-Inhalt */
}


.partner-logos-area {
    background-color: #0a2342;
    padding: 0 0 100px 0;
    margin-top: 1px;
    margin-bottom:1px;
}

/* Zentriert die Titel/Badges über den Logos */
.partner-logos-area .slot-header-box {
    text-align: center;
    margin-bottom: 40px;
}

.partner-logos-area h2, 
.partner-logos-area p {
    color: #ffffff;
}

.logo-item {
    background: #ffffff;
    padding: 30px;
}

.logo-item img {
    max-height: 70px;
    width: auto;
}

/* Nur auf dieser spezifischen Sektion wirksam */
/* Erzwingt den Umbruch für alle Elemente im Container */
.partner-logos-area .logo-grid-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important; /* Streng linksbündig */
    gap: 30px !important;
}

/* Verhindert, dass das Logo-Modul interne Flex-Eigenschaften beibehält */
.partner-logos-area .logo-grid-wrapper > * {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Platzhalter Design */
.partner-logos-area .logo-placeholder span, .logo-placeholder span {
    display: inline-block;
    padding: 15px 30px;
    border: 1px dashed #ddd;
    border-radius: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
}
.partner-logos-area .hero-partners.shifted-down {
  max-width: 1200px;
  margin: 2rem auto;
    margin-right: auto;
    margin-left: auto;
  padding: 0 0px;
}
@media (max-width: 768px) {
    /* Behält Linksbündigkeit auch auf Mobile bei */
    .partner-logos-area .logo-grid-wrapper {
        align-items: flex-start !important;
        padding-left: 10px;
    }
}
/*Location*/
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.location-card {
    background: #ffffff;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.location-card .slot-header-box {
    text-align: left;
    margin-bottom: 30px;
}

.location-card h2 {
    color: #0a2342;
    margin-top: 10px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.location-list li strong {
    color: #0a2342;
    display: block;
    margin-bottom: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Header Zentrierung */
.partner-section .container-1600 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-quick-access {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
}

.location-quick-access p {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.maps-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 30px;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.maps-link:hover {
    background: #ffffff;
    color: #0a2342;
}

/* Footer Fixierung (Einfachste Lösung) */
/* Footer Styling */
.footer-address {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    
}

.footer-address p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-address a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-address a:hover {
    opacity: 1;
}
/* Erhält das Design und optimiert nur die mobile Darstellung linksbündig */
@media (max-width: 768px) {
    .location-page .container-1600 {
        text-align: left !important;
    }

    .location-page .slot-header-box {
        text-align: left !important;
        align-items: flex-start !important;
    }

    /* Reduziert die Titelgröße auf Smartphones ohne das Design zu brechen */
    .location-page .title-main {
        font-size: 2.2rem !important;
        text-align: left !important;
    }

    .location-page h2 {
        font-size: 1.8rem !important;
        text-align: left !important;
    }

    /* Hält die Quick-Access Box linksbündig */
    .location-page .location-quick-access {
        align-items: flex-start !important;
        text-align: left !important;
        background: rgba(255, 255, 255, 0.05); /* Behält die Formatierung bei */
        padding: 20px !important;
    }

    /* Verhindert das Umbrechen der Kacheln falls nötig */
    .location-card {
        padding: 30px !important;
        margin-bottom: 20px;
    }
}
/* Sichtbarkeit der Zieladresse und Einrückung des Contents */
.location-page .location-card p, 
.location-page .location-list {
    color: #333 !important; /* Stellt sicher, dass die Adresse sichtbar ist */
    margin-left: 20px !important; /* Einrückung des Textes/der Liste */
    text-align: left !important;
}

/* Spezifische Formatierung für die Zieladresse */


/* Harmonisierung der Abstände unter dem Titel */
.location-page h2 {
    margin-bottom: 10px !important;
    text-align: left !important;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .location-page .location-card p, 
    .location-page .location-list {
        margin-left: 15px !important; /* Etwas weniger Einrückung auf dem Smartphone */
        font-size: 0.95rem !important;
    }

    .location-page .title-main {
        font-size: 2rem !important;
        text-align: left !important;
    }
}

/*Schirmherrschaft*/
.schirmherrschaft-page .patron-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 120px;
}

/* Foto bedeutend größer */
.schirmherrschaft-page .patron-image {
    flex: 0 0 580px;
}

.schirmherrschaft-page .patron-image img {
    width: 100%;
    height: auto;
    display: block;
}

.schirmherrschaft-page .image-caption {
    margin-top: 15px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #bbb;
}

/* Kompakter Textblock linksbündig */
.schirmherrschaft-page .patron-content {
    flex: 1;
    max-width: 600px;
}

.schirmherrschaft-page .slot-header-box {
    margin-bottom: 0 !important;
    padding: 0;
}

.schirmherrschaft-page .badge-accent {
    display: inline-block;
    padding: 2px 10px;
    background: #e3724d;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.schirmherrschaft-page .modern-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.85;
    color: #002147;
    margin: 20px 0 0 0 !important;
    padding: 0;
    letter-spacing: -0.04em;
}

.schirmherrschaft-page .description-modern {
    margin-top: 10px;
}

.schirmherrschaft-page .description-modern p {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .schirmherrschaft-page .patron-row {
        flex-direction: column;
        gap: 40px;
    }

    .schirmherrschaft-page .patron-image {
        width: 100%;
        max-width: 580px;
    }
}
/* Container für die Text-Einheit */
.schirmherrschaft-page .patron-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Name: Behält seine Position */
.schirmherrschaft-page .modern-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: #002147;
    margin: 0 0 15px 0 !important;
}

/* Funktion & Fließtext: Hier wird die bündige Achse erzeugt */
.schirmherrschaft-page .patron-function {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
    margin: 0 0 25px 0 !important; /* Kein negativer Margin mehr */
    padding: 0 0 0 25px; /* Einzug für den Text */
    border-left: 2px solid #e3724d; /* Linie steht links vom Text */
    max-width: 550px;
}

/* Fließtext: Wird durch Padding exakt unter die Linie der Funktion geschoben */
.schirmherrschaft-page .description-modern p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin: 0 !important;
    padding-left: 27px; /* Summe aus Border (2px) + Padding (25px) der Funktion oben */
}
/* Fließtext-Optimierung */
.schirmherrschaft-page .description-modern p {
    font-size: 1.05rem;
    line-height: 1.75; /* Mehr Zeilenabstand für bessere Lesbarkeit */
    color: #444; /* Etwas weicheres Anthrazit statt hartem Schwarz */
    margin: 0 !important;
    padding-left: 27px; /* Exakt bündig mit der Linie der Funktion darüber */
    max-width: 550px; /* Begrenzt die Zeilenlänge (goldener Schnitt) */
    text-align: justify; /* Blocksatz für eine saubere rechte Kante */
    hyphens: auto; /* Verhindert große Lücken im Blocksatz */
}

/* Optional: Den ersten Buchstaben oder den ersten Satz leicht hervorheben */
.schirmherrschaft-page .description-modern p::first-line {
    font-weight: 500;
    color: #002147;
}

/* Globaler Abstand für Absätze im Inhaltsbereich */
main p, 
.content-area p {
    margin-bottom: 1.5em; /* Schafft vertikalen Rhythmus */
    line-height: 1.75;
}

main p a {
	color: #444;
}
main p a:hover {
	text-decoration: none;
}
/* Letzter Absatz in einem Container benötigt keinen Abstand nach unten */
main p:last-child, 
.content-area p:last-child {
    margin-bottom: 0;
}

/* Spezifische Korrektur für die Schirmherrschaft-Seite, um bündig zu bleiben */
.schirmherrschaft-page .description-modern p {
    margin-bottom: 1.5em !important;
    padding-left: 27px;
}

.schirmherrschaft-page .patron-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #e3724d;
    border: 1px solid #e3724d;
    border-radius: 2px;
    line-height: 1;
    width: fit-content;
}

/* Optional: Falls die Badge bündig mit der vertikalen Linie sein soll */
.schirmherrschaft-page .patron-badge {
    margin-left: 0; 
}
/**/
	/* Globale Formatierung für alle Listen NUR im Main-Bereich */
/* Spezifische Korrektur für Listen im Textfluss */
main ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 25px 0 !important;
    max-width: 100%; /* Verhindert das Einrücken des gesamten Containers */
}

main ul li {
    position: relative !important;
    padding: 12px 0 12px 40px !important; /* Erzeugt Platz NUR für den Punkt */
    margin-left: 0 !important; /* Stoppt das Verschieben der gesamten Zeile */
    color: #0a2342 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Positionierung des Quadrats exakt am linken Rand */
main ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important; /* Punkt startet ganz links */
    top: 18px !important;
    width: 12px !important;
    height: 12px !important;
    background-color: #e67e5f !important;
    border-radius: 2px !important;
}

/* Hover-Effekt in #e67e5f */
main ul li:hover {
    color: #e67e5f !important;
    transition: all 0.3s ease !important;
}

main ul li a {
	color: #000;
}
main ul li a:hover {
	text-decoration: none;
}
/* Einrückung nur auf der Schirmherrschaft-Seite */
body.schirmherrschaft-page main h3, 
body.schirmherrschaft-page main ul {
    margin-left: 30px !important;
    max-width: calc(100% - 30px) !important;
}

/* --- Radikaler Responsive Fix für Header & Partner --- */

@media (max-width: 1100px) {
    /* 1. Haupt-Container aufbrechen */
    .hero-inner.align-top {
        display: block !important; /* Hebt Flexbox auf */
        width: 100% !important;
        padding: 20px !important;
    }

    /* 2. Hero-Card (Links) auf volle Breite */
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 40px 0 !important;
    }

    .hero-card {
        width: 100% !important;
        padding: 30px 20px !important;
        box-sizing: border-box !important;
    }

    /* 3. Partner-Box (Rechts) einfangen */
    .hero-partners.flush-top.shifted-down {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important; /* Falls es vorher absolute war */
        top: 0 !important;
        left: 0 !important;
        transform: none !important; /* Hebt alle Verschiebungen auf */
        margin: 0 !important;
    }

    /* 4. Das Logo-Gitter korrigieren */
    .partner-mini-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .logo-tile img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* 5. Die drei Info-Boxen (Lösungen entdecken etc.) untereinander */
    .value-grid {
        display: block !important;
    }

    .value-card {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}
/* --- Globaler Responsive Reset für überbreite Elemente --- */

@media (max-width: 1024px) {
    /* 1. Container & Sektionen */
    .hero-inner, 
    .container-wide, 
    .container-1600,
    .stat-rings-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
    }

    /* 2. Hero Bereich (Header) */
    .hero-content, 
    .hero-partners {
        width: 100% !important;
        margin: 0 0 30px 0 !important;
        transform: none !important; /* Entfernt Verschiebungen */
    }

    .hero-card {
        width: 100% !important;
        padding: 25px !important;
        box-sizing: border-box !important;
    }

    .hero-card h1 {
        font-size: 1.8rem !important;
        word-wrap: break-word !important;
    }

    /* 3. Partner Logos */
    .partner-mini-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .logo-tile {
        width: 100% !important;
    }

    /* 4. Ihre Mitwirkung (Engagement-Karten) */
    .offer-grid-flat {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .offer-card-flat {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .offer-card-flat h3 {
        font-size: 1.5rem !important;
    }

    /* 5. Stat-Ringe & Feature-Sektionen */
    .stat-rings-grid, 
    .feature-row {
        flex-direction: column !important;
    }

    .feature-image, 
    .feature-text {
        width: 100% !important;
        padding: 0 !important;
    }
}

/* Fix für extrem kleine Screens (Text-Überlauf verhindern) */
@media (max-width: 480px) {
    h2.title-main, 
    .hero-card h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
}

/* --- Schirmherrschaft: Abstände & Typografie Fix --- */

/* 1. Header-Bereich komprimieren */
.schirmherrschaft-page .hero {
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
}

/* 2. Container-Abstand nach oben reduzieren */
body.schirmherrschaft-page main {
    padding-top: 10px !important;
    margin-top: 0 !important;
}

/* 3. Profil-Reihe: Abstand über dem Foto entfernen */
.patron-row {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 60px !important;
}

/* 4. Name (H2/H3): Kleiner und näher am Foto */
.patron-row h2, 
.patron-row h3,
body.schirmherrschaft-page h2 {
    font-size: 2.2rem !important; /* Name kleiner */
    margin-top: 15px !important;  /* Weniger Abstand zum Foto */
    margin-bottom: 10px !important;
    text-align: left !important;
}

/* 5. Bildunterschrift (Heiko Kleve Text unter Foto) */
.patron-row span, 
.patron-row p:first-of-type {
    margin-top: 5px !important;
}

/* 6. Textblock unter dem Namen näher rücken */
.patron-row .feature-text {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Speziell für Heiko Kleve (falls eigene ID vorhanden) */
#heiko-kleve-section {
    padding-top: 0 !important;
}

/* Spezifischer Fix für Schirmherrschaft Bild-Container */
@media (max-width: 1024px) {
    .schirmherrschaft-page .patron-image {
        flex: 0 0 100% !important; /* Breite auf 100% statt 580px */
        max-width: 100% !important;
        margin-bottom: 15px !important; /* Weniger Abstand unter dem Bild */
    }

    .schirmherrschaft-page .patron-row {
        margin-top: 0 !important;
        padding-top: 0 !important;
        gap: 10px !important; /* Rückt Name und Foto näher zusammen */
    }

    .schirmherrschaft-page h1 {
        font-size: 1.8rem !important; /* Haupttitel kleiner */
        margin-bottom: 20px !important;
    }

    .schirmherrschaft-page h2, 
    .schirmherrschaft-page h3 {
        font-size: 1.4rem !important; /* Namen der Personen kleiner */
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    /* Alle ul im main-Bereich auf Mobile wie feature-list stylen */
    main ul, 
    main ul.feature-list {
        list-style-type: none !important;
        list-style-image: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    main ul li {
        position: relative !important;
        padding-left: 30px !important; /* Platz für das Quadrat */
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        list-style: none !important;
        text-align: left;
    }

    /* Das Quadrat-Icon */
    main ul li::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        top: 21px !important; /* Vertikale Ausrichtung */
        width: 10px !important;
        height: 10px !important;
        background-color: #e67e5f !important;
        border-radius: 2px !important;
        display: block !important;
    }
}

/* --- Smartphone-Optimierung für .footer-simple --- */
@media (max-width: 768px) {
    .footer-simple {
        padding: 40px 0 !important;
        text-align: center !important;
    }

    .footer-simple .container-1600 {
        padding: 0 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* CTA Bereich */
    .footer-cta {
        margin-bottom: 0px !important;
        width: 100% !important;
    }

    .cta-content h2 {
        font-size: 2rem !important;
        line-height: 2.4rem !important;
        margin-bottom: 10px !important;
    }

    /* Adresse & Route */
    .footer-address {
        margin-bottom: 40px !important;
    }

    .footer-address p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .footer-address a {
        display: inline-block !important;
        padding: 10px 20px !important;
        border: 1px solid #e67e5f !important;
        border-radius: 4px !important;
        color: #e67e5f !important;
        text-decoration: none !important;
    }

    /* Copyright & Links sortieren */
    .footer-bottom {
        width: 100% !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-top: 25px !important;
        display: flex !important;
        flex-direction: column-reverse !important; /* Links über Copyright */
        gap: 20px !important;
    }

    .footer-links {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
    }

    .footer-links a {
        font-size: 0.9rem !important;
    }

    .footer-bottom p {
        font-size: 0.8rem !important;
        opacity: 0.6 !important;
        margin: 0 !important;
    }
}

.place-holder {
    display: inline-block !important;
    padding: 20px 30px !important;
    border: 1px dashed #e67e5f !important; /* Akzentfarbe statt Grau für mehr Wertigkeit */
    border-radius: 4px !important;
    margin-top: 15px !important;
    background-color: rgba(230, 126, 95, 0.05) !important; /* Ganz leichter Hintergrund-Schimmer */
    line-height: 1.6 !important;
}

/* Smartphone-Anpassung */
@media (max-width: 768px) {
    .place-holder {
        padding: 15px !important;
        font-size: 0.95rem !important;
        margin-top: 20px !important;
    }
}


@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        padding: 0 10px !important;
    }
    
    .pricing-card {
        padding: 30px 20px !important;
    }
}
/* --- Portfolio Cards Design --- */
.portfolio-cards-area {
    margin-top: 0px;
    padding-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0a1d37;
}

.portfolio-card p {
    color: #666;
    margin-bottom: 30px;
    min-height: 80px;
    line-height: 1.6;
}

.badge-accent {
    background: rgba(230, 126, 95, 0.1);
    color: #e67e5f;
    margin-bottom: 20px;
}

.badge-dark {
    background: rgba(10, 29, 55, 0.1);
    color: #0a1d37;
    margin-bottom: 20px;
}

.card-info-text {
    font-weight: bold;
    color: #0a1d37;
    padding: 12px 0;
}

.portfolio-quote {
    text-align: left;
    margin-top: 50px;
    font-style: italic;
    color: #0a1d37;
    font-size: 1.1rem;
    max-width: 800px;
    margin-right: auto;
}

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-card {
        padding: 30px 20px;
    }
}

/* --- Spezifische Button-Styles für das Portfolio (kein Konflikt mit Global-Styles) --- */
.portfolio-card .btn-main {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e67e5f;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 95, 0.3);
    border: none;
}

.portfolio-card .btn-main:hover {
    background-color: #d46d50;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 95, 0.4);
    color: #ffffff; /* Sicherstellen, dass Text weiß bleibt */
}

.portfolio-card .btn-outline {
    display: inline-block;
    padding: 13px 33px; /* Etwas weniger wegen Border-Dicke */
    background-color: transparent;
    color: #e67e5f;
    border: 2px solid #e67e5f;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-card .btn-outline:hover {
    background-color: #e67e5f;
    color: #ffffff;
    transform: translateY(-2px);
}
/* --- Prominente CTA Box für Cannobe --- */
.cta-highlight-box {
    margin-top: 60px;
    background: #0a1d37; /* Dunkelblau als Kontrast */
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(10, 29, 55, 0.2);
}

.cta-content h2 {
    color: #ffffff !important;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #e67e5f;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cta-large:hover {
    background-color: #ffffff;
    color: #0a1d37;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cta-highlight-box {
        padding: 40px 20px;
    }
    .cta-content h2 {
        font-size: 1.6rem;
    }
}

/*Navigation neu*/

/* --- Navigation Refactoring --- */
.nav {
    background: #ffffff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

/* Dropdown Grundzustand */
.nav-links li {
    position: relative;
}

.nav-links li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    border-radius: 4px;
    display: none; /* Versteckt */
    z-index: 10;
}

/* Dropdown anzeigen bei Hover */
.nav-links li:hover > ul {
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: #0a1d37;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e67e5f;
}

.nav-links li ul li a {
    padding: 8px 20px;
    display: block;
} 

/* --- Ausschließliche Formatierung Smartphone-Navigation --- */
@media (max-width: 1100px) {
    
    /* Navigations-Container */
    .nav-links {
        display: none; /* Grundzustand */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 5px 0; /* Schlankere Polsterung */
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        z-index: 9999;
        max-height: 85vh;
        overflow-y: auto;
    }

    /* Sichtbarkeit bei .active oder .open-nav */
    .nav-links.active,
    .nav.open-nav .nav-links {
        display: flex !important;
    }

    /* Einzelne Menüpunkte */
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f8f8f8; /* Sehr zarte Trennlinie */
    }

    .nav-links li a {
        padding: 0px 25px; /* Kompakterer vertikaler Abstand */
        font-size: 0.9rem; /* Zierlichere Schrift */
        color: #0a1d37 !important;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        display: block;
        font-weight: 500;
    }

    /* Das Dropdown (Cannobe etc.) */
    .dropdown-menu {
        position: static;
        display: block; /* Direkt untereinander anzeigen */
        background: #fafafa; /* Minimaler Kontrast */
        padding: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
    }

    .dropdown-menu li a {
        padding: 10px 40px; /* Weiter eingerückt */
        font-size: 0.85rem;
        text-transform: none; /* Unterpunkte nicht in Caps für Eleganz */
        color: #666 !important;
        border-bottom: none;
    }

    /* Burger-Button (Zartere Linien) */
    .nav-toggle span {
        width: 28px; /* Etwas kürzer */
        height: 2px; /* Dünnere Linien */
        background: #0a2342;
        margin: 4px 0; /* Ausgewogener Abstand */
    }
    @media (max-width: 1100px) {
    /* Reduziert die massive Höhe der Menüpunkte */
    .nav-links li a {
        padding: 8px 20px !important; /* Deutlich flacher */
        line-height: 1.2 !important;
        border-bottom: 1px solid #f0f0f0;
        color: #0a2342 !important;
    }

    /* Kompakteres Untermenü */
    .dropdown-menu {
        padding: 0 !important;
    }

    .dropdown-menu li a {
        padding: 6px 35px !important; /* Kleinerer Abstand für Cannobe & Co */
        font-size: 0.85rem !important;
    }

    /* Verhindert unnötigen Leerraum am Ende der Liste */
    .nav-links {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}


 @media (max-width: 1100px) {
    /* Alle vererbten Flex- und Abstandsregeln neutralisieren */
    .nav-links, .nav-links li, .nav-links li a {
        display: block !important;
        margin: 0 !important;
        min-height: 0 !important;
        height: auto !important;
        border: none !important;
    }

    /* Container: Dunkelblauer Hintergrund */
    .nav-links {
        padding: 0 !important;
        background: #0a2342 !important; 
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    /* Hauptpunkte: Weiße Schrift auf Blau */
    .nav-links li a {
        padding: 10px 20px !important; 
        font-size: 0.85rem !important;
        color: #ffffff !important; 
        line-height: 1 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    /* Einheitlicher Hover für Haupt- und Unterpunkte */
    .nav-links li a:active, 
    .nav-links li a:hover,
    .dropdown-menu li a:active,
    .dropdown-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: #FF7E52 !important; /* Text wird beim Hover orange */
    }

    /* Markierung der aktuellen Seite */
    .nav-links li.active-page > a,
    .dropdown-menu li.active-page a {
        color: #FF7E52 !important;
        font-weight: 700 !important;
        border-left: 3px solid #FF7E52 !important; /* Kleiner vertikaler Akzent-Strich */
        padding-left: 17px !important; /* Ausgleich für den Strich */
    }

    /* Untermenü: Dezent abgesetzt */
    .dropdown-menu {
        display: block !important;
        background: rgba(0, 0, 0, 0.15) !important; 
        padding: 5px 0 !important;
    }

    /* Cannobe & Ideen... direkt in Orange (Standardzustand) */
    .dropdown-menu li a {
        padding: 8px 35px !important;
        font-size: 0.85rem !important;
        color: #FF7E52 !important; 
        border-bottom: none !important;
        text-transform: none !important;
    }
}

}

/*Video*/
/* Responsives Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Format */
    height: 0;
    overflow: hidden;
    border-radius: 0px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Liste & PDF Icon */
.feature-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-text ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.5;
}

.feature-text ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF7E52; /* Dein Orange */
    font-weight: bold;
}

.feature-text ul li img {
    vertical-align: middle;
    margin-left: 5px;
}
.feature-image.video-mode {
    height: auto !important;
}
/* Nur für die Video-Sektion */
.feature-image.video-mode {
    height: auto !important;
    align-self: flex-start !important; /* Richtet nur das Video oben bündig aus */
}

/* Responsives Video-Verhältnis */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 1100px) {
    .feature-text, 
    .feature-text p, 
    .feature-text h2 {
        text-align: left !important;
    }
}
@media (max-width: 1100px) {
    .feature-text p {
        margin-bottom: 1.5em !important;
        text-align: left !important;
    }
    
    /* Letzten Absatz ohne Abstand für sauberes Ende */
    .feature-text p:last-child {
        margin-bottom: 0 !important;
    }
}
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    
}

#vision .feature-image {
	border-radius: 0!important;
	box-sizing: content-box;
}

/* Reset & Formatiere Portrait-Video */
.video-container.portrait-video {
    all: unset !important;
    display: block !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

.video-container.portrait-video video {
    all: unset !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-height: 700px !important;
    aspect-ratio: 478 / 850 !important;
    border-radius: 12px !important;
}

/* Reset & Formatiere Querformat-Video */
/* Responsive Begrenzung für große Monitore */
#leo {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    max-width: 1200px !important; /* Begrenzt die Breite auf Desktop */
    margin: 0 auto !important; /* Zentriert das Video */
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
}

#leo video {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

/* Mobile Anpassung */
@media (max-width: 1100px) {
    #leo {
        max-width: 100% !important;
    }
}
/**/
	
/*Über mich Foto*/
.subpage-hero .hero-layout {
    display: flex;
    align-items: center; 
    justify-content: center; 
    gap: 50px;
    padding: 60px 20px;
}

.subpage-hero .hero-portrait img {
    max-width: 300px;
    height: auto;
    display: block;
}

.subpage-hero .hero-text-content {
    max-width: 700px;
    text-align: left;
}

@media (max-width: 1100px) {
    .subpage-hero .hero-layout {
        flex-direction: column;
        align-items: center;    /* Zentriert das Bild horizontal */
        justify-content: center;
        text-align: center;      /* Zentriert den Text */
        gap: 30px;
    }

    .subpage-hero .hero-text-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;    /* Zentriert Badge und Heading im Container */
    }

    .subpage-hero .hero-portrait img {
        max-width: 90%; 
        width: 400px;
        margin: 0 auto;         /* Zusätzliche Absicherung für die Zentrierung */
    }
}

/* Einheitliche Breite für beide Portrait-Container */
.subpage-hero .hero-portrait img,
.vita-layout .vita-portrait img {
    width: 300px; /* Exakt gleiche Breite für beide Bilder */
    height: auto;
    display: block;
}

/* Spezifische Anordnung für Vita (Bild links, Text rechts) */
.vita-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
    padding: 40px 0;
}

.vita-portrait {
    flex-shrink: 0;
}

.vita-text-content {
    flex: 1;
    text-align: left;
}

/* Mobile Anpassung für beide Bilder (Zentriert & Größer) */
@media (max-width: 1100px) {
    .subpage-hero .hero-layout,
    .vita-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .subpage-hero .hero-portrait img,
    .vita-layout .vita-portrait img {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .subpage-hero .hero-text-content,
    .vita-text-content {
        text-align: center;
    }
}

.feature-image {
    height: auto !important;
    background: transparent !important;
}

.feature-image img {
    display: block !important;
}

.feature-image .image-caption {
    display: block !important;
    margin-top: 10px !important;
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.25em !important;
    color: #bbb !important;
    background: transparent !important;
}
.feature-image {
    height: auto !important;
    overflow: visible !important;
    box-shadow: none !important;
    background: transparent !important;
}

.feature-image img {
    border-radius: 50px !important;
}

.feature-image .image-caption {
    display: block !important;
    margin-top: 15px !important;
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.25em !important;
    color: #bbb !important;
}

.feature-image .image-caption {
    margin-top: 15px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #bbb;
}
/* Passions Section */
/* Passion Area - Karten-Look analog zu Portfolio */
.passions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.passion-item {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.passion-item:hover {
    transform: translateY(-5px);
}

.passion-item h4 {
    font-size: 1.2rem;
    color: #002d5b;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.passion-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #e68a6b;
}

.passion-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Reduzierung der Abstände zwischen den Sektionen */
.passions-area {
    padding: 40px 0;
}

.elegant-divider {
    margin: 20px auto;
}

.portfolio-cards-area {
    padding-top: 20px;
}

/* Profil & Engagement Styles */
.caesura-box {
    background: #fdfdfd;
    border-left: 4px solid #e68a6b;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.caesura-text p {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 500;
    margin: 15px 0;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.focus-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.focus-card.highlight {
    background: #fffaf9;
    border-color: #e68a6b;
}

.focus-card h4 {
    color: #002d5b;
    margin-bottom: 15px;
}

.engagement-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .engagement-layout { flex-direction: column; text-align: center; }
}
/* Container & Grid */
.passions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding: 20px 0;
}

/* Einzelne Karte */
.passion-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.passion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Überschrift in der Karte */
.passion-item h4 {
    font-size: 1.25rem;
    color: #002d5b; /* Dunkelblau aus Screenshot */
    margin-bottom: 15px;
    font-weight: 700;
}

/* Der kleine Akzent-Strich unter h4 */
.passion-item h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #e68a6b; /* Akzentfarbe aus Screenshot */
    margin: 10px auto 0;
}

/* Text in der Karte */
.passion-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Elegantes Engagement Layout */
.engagement-elegant-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Ungleiche Gewichtung für mehr Dynamik */
    gap: 30px;
    margin-top: 40px;
}

.engagement-main {
    background: #fff;
    border: 1px solid rgba(230, 138, 107, 0.2); /* Dezenter Akzentrahmen */
}

.engagement-press {
    background: #fdfdfd;
    justify-content: center;
}

.card-action {
    margin-top: 25px;
}

@media (max-width: 992px) {
    .engagement-elegant-layout {
        grid-template-columns: 1fr;
    }
}

/* Einheitliche Button-Formatierung */
.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--accent-warm); /* Nutzung der Variable aus deinem Screenshot */
    color: var(--accent-warm);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--accent-warm);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 138, 107, 0.2);
}

/* Anpassung für die Engagement-Cards */
.engagement-elegant-layout .btn-text {
    color: var(--accent-warm);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.engagement-elegant-layout .btn-text:hover {
    gap: 12px;
}

span.normal {
	font-style: normal!important;
}


/*Cannobe*/
/* Cannobe Logo Integration */
.hero-logo-small {
    width: 240px !important;
    height: auto !important;
    display: block;
    margin: 20px auto !important; /* Zentriert durch auto links/rechts */
}

@media (max-width: 768px) {
    .hero-logo-small {
        width: 110px !important;
        margin: 15px auto !important;
    }
}


/* --- PATRON GRID SYSTEM (Übersicht) --- */
.patron-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.patron-card {
    background: #ffffff;
    border: 1px solid rgba(10, 35, 66, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.patron-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 35, 66, 0.12);
    border-color: var(--accent-warm);
}

.patron-card-image {
    width: 100%;
    aspect-ratio: 1 / 1.1; /* Leichtes Hochformat für Portraits */
    object-fit: cover;
    background: #f4f4f4;
}

.patron-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.patron-card-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-deep);
    margin-bottom: 8px;
    line-height: 1.2;
}

.patron-card-function {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* Drückt den Button nach unten */
}

.patron-card-action {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-warm);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.patron-card-action::after {
    content: '→';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.patron-card:hover .patron-card-action::after {
    transform: translateX(5px);
}

/* --- MODAL / LIGHTBOX (Detailansicht) --- */
.bio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 35, 66, 0.85); /* Dark Overlay */
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bio-modal.is-visible {
    display: flex;
    opacity: 1;
}

.bio-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bio-modal.is-visible .bio-modal-content {
    transform: scale(1);
}

.bio-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--primary-deep);
    cursor: pointer;
    z-index: 10;
    line-height: 0.8;
    transition: color 0.2s;
}

.bio-modal-close:hover {
    color: var(--accent-warm);
}

.bio-modal-image-col {
    flex: 0 0 40%;
    background: #f0f0f0;
}

.bio-modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-modal-text-col {
    flex: 1;
    padding: 50px;
    overflow-y: auto;
}

.bio-modal-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-deep);
    margin-bottom: 10px;
    line-height: 1.1;
}

.bio-modal-function {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    border-left: 3px solid var(--accent-warm);
    padding-left: 15px;
    margin-bottom: 30px;
}

.bio-modal-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.bio-modal-description p {
    margin-bottom: 1.5em;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .bio-modal-content {
        flex-direction: column;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .bio-modal-image-col {
        flex: 0 0 250px; /* Feste Höhe für Bild mobil */
        height: 250px;
    }
    
    .bio-modal-text-col {
        padding: 30px;
        overflow-y: visible; /* Scrollen übernimmt der Hauptcontainer */
    }
    
    .bio-modal-close {
        top: 15px;
        right: 15px;
        background: rgba(255,255,255,0.8);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}