/* 
 * Styles für Schalt Kreis Symposium & Auwerkfest
 * Farbschema:
 * - Symposium: Dunkelblau (#1e3d59) - Struktur, Stabilität, Technik
 * - Auwerkfest: Orange/Gelb (#ff6e40, #ffc13b) - Energie, Kreativität, Festlichkeit
 * - Hintergrund: Helles Beige (#f5f0e1) - Warme, einladende Basis
 */

:root {
    /* Hauptfarben Symposium */
    --symposium-dark: #1e3d59;
    --symposium-medium: #2c5982;
    --symposium-light: #3a77ac;
    --symposium-accent: #5693ca;
    --symposium-bg: #f5f0e1;
    
    /* Hauptfarben Auwerkfest */
    --auwerkfest-primary: #ff6e40;
    --auwerkfest-secondary: #ffc13b;
    --auwerkfest-light: #ffebcc;
    --auwerkfest-bg: #ffe8d9;
    
    /* Allgemeine Farben */
    --text-dark: #333333;
    --text-light: #ffffff;
    --gray-light: #f0f0f0;
    --gray-medium: #e0e0e0;
    --gray-dark: #777777;
    
    /* Textfarben mit hohem Kontrast */
    --text-high-contrast: #222222;
    --text-medium-contrast: #444444;
}

/* Barrierefreiheit */
.skip-link {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--text-light);
    color: var(--symposium-dark);
    padding: 10px 15px;
    z-index: 1100;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: bold;
}

.skip-link:focus {
    outline: 3px solid var(--auwerkfest-primary);
}

/* Grundlegende Stile */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--symposium-bg);
    line-height: 1.6;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--symposium-dark);
}

.divider {
    width: 50px;
    margin: 1.5rem auto;
    border-top: 3px solid var(--symposium-dark);
}

/* Navigation */
.navbar {
    background-color: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.navbar.navbar-scrolled {
    background-color: var(--symposium-dark);
    border-bottom: 2px solid var(--symposium-light);
    box-shadow: 0 2px 10px rgba(30, 61, 89, 0.3);
}

.navbar-dark .navbar-brand {
    color: var(--text-light);
    font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--text-light);
}

/* Aktive Navigationspunkte */
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--text-light);
    font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background-color: var(--symposium-light);
}

.auwerkfest-link {
    color: var(--auwerkfest-primary) !important;
    position: relative;
}

.auwerkfest-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background-color: var(--auwerkfest-primary);
    opacity: 0.7;
    display: none;
}

/* Spezielle Hervorhebung für aktiven Auwerkfest-Link */
.navbar-dark .navbar-nav .auwerkfest-link.active {
    color: var(--auwerkfest-secondary) !important;
}

.navbar-dark .navbar-nav .auwerkfest-link.active::after {
    background-color: var(--auwerkfest-secondary);
    opacity: 1;
}

/* Hero-Bereich */
.hero-section {
    background: url('../images/title.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 61, 89, 0.7); /* Dunkle Überlagerung für bessere Lesbarkeit */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: bold;
}

.hero-section h2 {
    font-weight: 500;
}

/* Titel-Connector Design */
.title-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1rem;
    width: 80%;
    max-width: 500px;
}

.connector-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,255,255,0));
    flex-grow: 1;
    position: relative;
}

.connector-line:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--auwerkfest-secondary);
    border-radius: 50%;
    top: -2px;
}

.connector-line:first-child:before {
    right: 30%;
}

.connector-line:last-child:before {
    left: 30%;
}

.connector-dot {
    width: 10px;
    height: 10px;
    background-color: var(--auwerkfest-primary);
    border-radius: 50%;
    margin: 0 15px;
    position: relative;
}

.connector-dot:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    top: -4px;
    left: -4px;
}

.subtitle {
    font-weight: 400;
    color: var(--auwerkfest-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.auwerkfest-badge {
    display: inline-block;
    background-color: var(--auwerkfest-primary);
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 8px rgba(255, 110, 64, 0.3);
    transform: rotate(-2deg);
    position: relative;
    z-index: 2;
}

.auwerkfest-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: var(--auwerkfest-secondary);
    border-radius: 2rem;
    z-index: -1;
    transform: rotate(2deg);
}

.btn-primary {
    background-color: var(--auwerkfest-secondary);
    border-color: var(--auwerkfest-secondary);
    color: var(--text-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--auwerkfest-primary);
    border-color: var(--auwerkfest-primary);
    color: var(--text-light);
}

/* Feature-Box Styles */
.feature-box {
    background-color: var(--symposium-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--symposium-dark);
    height: 100%;
}

.feature-box p {
    margin-bottom: 0;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

/* Concept Tagcloud Styles */
.concept-tagcloud {
    margin: 2rem auto;
    padding: 1.5rem;
    max-width: 800px;
    line-height: 2.2;
}

.tag-item {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin: 0.3rem;
    background-color: rgba(30, 61, 89, 0.08);
    color: var(--text-medium-contrast);
    border-radius: 20px;
    font-size: 0.9rem;
}

.tag-item.tag-medium {
    background-color: rgba(30, 61, 89, 0.12);
    font-size: 1rem;
    font-weight: 500;
}

.tag-item.tag-large {
    background-color: rgba(30, 61, 89, 0.15);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--symposium-dark);
}

/* Subtle Feature Cards */
.subtle-features {
    margin: 2.5rem auto 1rem;
    max-width: 100%;
}

.subtle-feature-card {
    display: flex;
    align-items: flex-start;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 2px solid var(--symposium-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.subtle-icon {
    font-size: 1.4rem;
    line-height: 1;
    margin-right: 0.8rem;
    color: var(--symposium-medium);
    display: inline-block;
    opacity: 0.8;
}

.subtle-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--symposium-dark);
}

.subtle-content p {
    font-size: 0.9rem;
    color: var(--text-medium-contrast);
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .subtle-features .row {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

/* Cosmos Category Styles */
.cosmos-category {
    background-color: var(--text-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid var(--gray-medium);
    overflow: hidden;
    position: relative;
}

.cosmos-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--symposium-medium), var(--symposium-light));
}

.category-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--symposium-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-icon {
    font-size: 1.8rem;
    display: inline-block;
}

.cosmos-list {
    list-style-type: none;
    padding-left: 0;
}

.cosmos-list li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--gray-medium);
    position: relative;
    padding-left: 0.5rem;
}

.cosmos-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cosmos-list li::before {
    content: '›';
    position: absolute;
    left: -12px;
    color: var(--symposium-medium);
    font-weight: bold;
    font-size: 1.2rem;
}

.cosmos-list li strong {
    color: var(--symposium-dark);
    font-weight: 600;
}

.cosmos-note {
    color: var(--gray-dark);
    font-size: 1rem;
}

.bg-light {
    background-color: #f8f8f8;
}

/* Zeitleiste für das Programm */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 4px;
    background-color: var(--symposium-medium);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 150px;
}

.timeline-date {
    position: absolute;
    left: 0;
    width: 100px;
    text-align: right;
}

.timeline-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--symposium-dark);
}

.timeline-date .weekday {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.timeline-content {
    background-color: var(--text-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid var(--gray-medium);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 20px;
    width: 30px;
    height: 4px;
    background-color: var(--symposium-medium);
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--symposium-dark);
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-dark);
}

.timeline-events {
    list-style-type: none;
    padding-left: 0;
}

.timeline-events li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--gray-medium);
    color: var(--text-dark);
}

.timeline-events li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Spezielles Styling für den Auwerkfest-Tag in der Zeitleiste */
.auwerkfest-item .timeline-date .day {
    color: var(--auwerkfest-primary);
    font-size: 1.7rem;
}

.auwerkfest-item .timeline-content {
    background-color: var(--auwerkfest-bg);
    border: 2px solid var(--auwerkfest-primary);
}

.auwerkfest-item .timeline-content::before {
    background-color: var(--auwerkfest-primary);
}

.auwerkfest-item .timeline-content h3 {
    color: var(--auwerkfest-primary);
}

.auwerkfest-badge-small {
    display: inline-block;
    background-color: var(--auwerkfest-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    transform: rotate(-2deg);
}

/* Auwerkfest-Bereich */
.auwerkfest-section {
    background-color: var(--auwerkfest-bg);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--auwerkfest-primary);
    border-bottom: 5px solid var(--auwerkfest-primary);
}

.auwerkfest-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="10" fill="%23FFC13B"/><circle cx="70" cy="50" r="15" fill="%23FFC13B"/><circle cx="40" cy="80" r="12" fill="%23FFC13B"/></svg>');
    background-size: 300px 300px;
    opacity: 0.15;
}

.auwerkfest-content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    border: 1px solid var(--auwerkfest-primary);
}

.auwerkfest-section .section-heading {
    color: var(--auwerkfest-primary);
}

.auwerkfest-divider {
    border-top-color: var(--auwerkfest-primary);
    width: 80px;
}

.auwerkfest-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.auwerkfest-highlights {
    list-style-type: none;
    padding-left: 0;
}

.auwerkfest-highlights li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.auwerkfest-highlights li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--auwerkfest-primary);
    font-weight: bold;
}

.auwerkfest-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.auwerkfest-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--auwerkfest-primary), var(--auwerkfest-secondary));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(255, 110, 64, 0.3);
    position: relative;
    overflow: hidden;
}

.auwerkfest-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
}

.auwerkfest-date {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Veranstaltungsort */
.location-info {
    padding: 2rem;
    background-color: var(--text-light);
    border-radius: 0.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-medium);
}

.location-info h3 {
    color: var(--symposium-dark);
    margin-bottom: 1.5rem;
}

.location-info address, 
.location-info p {
    color: var(--text-dark);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--gray-medium);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
}

.fake-map {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    color: var(--gray-dark);
    background: linear-gradient(135deg, var(--gray-medium), var(--gray-light));
}

/* Kontaktformular */
.contact-form {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-medium);
}

.form-control {
    border: 1px solid var(--gray-medium);
    padding: 0.75rem;
    background-color: var(--gray-light);
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--symposium-medium);
    box-shadow: 0 0 0 0.2rem rgba(30, 61, 89, 0.1);
    background-color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--symposium-dark);
    color: var(--text-light);
    padding: 3rem 0 2rem;
    border-top: 2px solid var(--symposium-light);
}

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

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    margin: 0 0.3rem;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--auwerkfest-primary);
    color: var(--text-light);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2rem;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .hero-section {
        padding: 8rem 0 5rem;
    }
    
    .timeline::before {
        left: 60px;
    }
    
    .timeline-item {
        padding-left: 90px;
    }
    
    .timeline-date {
        width: 50px;
    }
    
    .timeline-content::before {
        left: -20px;
        width: 20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .timeline-date {
        position: relative;
        left: auto;
        width: auto;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .timeline-date .day, 
    .timeline-date .weekday {
        display: inline-block;
        margin-right: 0.5rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .auwerkfest-content {
        padding: 2rem;
    }
    
    .auwerkfest-circle {
        width: 200px;
        height: 200px;
        font-size: 1.5rem;
        margin: 2rem auto;
    }
}

/* About Section - Verbesserte Lesbarkeit */
.text-muted {
    color: var(--text-dark) !important;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    line-height: 1.8;
}

/* Hero-Aktionen im Schaltkreis-Stil */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 5;
}

.action-item {
    display: flex;
    justify-content: center;
}

.circuit-badge, .circuit-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--auwerkfest-primary), var(--auwerkfest-secondary));
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    border: none;
    min-width: 200px;
}

.circuit-badge {
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%);
}

.circuit-button {
    clip-path: polygon(5% 0%, 100% 0%, 95% 50%, 100% 100%, 5% 100%, 0% 50%);
}

.circuit-text {
    position: relative;
    z-index: 2;
}

.circuit-badge:before, .circuit-button:before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    z-index: 1;
}

.circuit-badge:before {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.circuit-button:before {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.circuit-badge:after, .circuit-button:after {
    content: '';
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.circuit-badge:after {
    width: 30px;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.circuit-button:after {
    width: 30px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.circuit-button:hover {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .circuit-badge, .circuit-button {
        min-width: 250px;
    }
}

/* Künstler-Plattformen Bereich */
.platform-card {
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gray-medium);
    background-color: var(--text-light);
}

.platform-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-medium);
}

.platform-header h3 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.platform-icon {
    font-size: 1.5rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.platform-content {
    padding: 1.5rem;
}

.platform-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.platform-features li {
    margin-bottom: 0.7rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px dashed var(--gray-medium);
    position: relative;
    padding-left: 1.5rem;
}

.platform-features li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.platform-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.platform-info {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.platform-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.location-dot::before {
    content: '📍';
}

.date-icon::before {
    content: '📅';
}

/* Spezifische Styling für die zwei Plattformen */
.auwerkfest-platform .platform-header {
    background: linear-gradient(90deg, var(--auwerkfest-primary), var(--auwerkfest-secondary));
    color: white;
}

.auwerkfest-platform .platform-badge {
    background-color: white;
    color: var(--auwerkfest-primary);
}

.auwerkfest-platform .platform-features li::before {
    color: var(--auwerkfest-primary);
}

.dtd-platform .platform-header {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: white;
}

.dtd-platform .platform-badge {
    background-color: white;
    color: #6a11cb;
}

.dtd-platform .platform-features li::before {
    color: #6a11cb;
}

/* Connection Bereich */
.connection-section {
    background-color: var(--text-light);
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-medium);
}

.connection-line {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.connection-point {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--auwerkfest-primary), #6a11cb);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.connection-info {
    margin-top: 1.5rem;
}

.connection-feature {
    text-align: center;
    padding: 1rem;
    background-color: var(--gray-light);
    border-radius: 0.5rem;
    height: 100%;
}

.connection-feature .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.connection-feature h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--symposium-dark);
}

.connection-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

.artist-note {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* Frei-Raum-Programm Styling */
.program-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.timeline-sketch {
    margin: 1rem 0;
    text-align: center;
}

.timeline-icon {
    max-width: 100%;
    height: auto;
}

.co-creation-hint {
    background-color: rgba(255, 193, 59, 0.15);
    border-left: 3px solid var(--auwerkfest-secondary);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.hint-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.co-creation-hint p {
    margin: 0;
    font-size: 0.95rem;
}

.event-time {
    display: inline-block;
    font-weight: 700;
    color: var(--symposium-dark);
    min-width: 75px;
}

.event-title {
    font-weight: 600;
    color: var(--symposium-dark);
    margin-right: 0.5rem;
}

.event-desc {
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-style: italic;
}

.special-day-note {
    background-color: rgba(255, 110, 64, 0.15);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.auwerkfest-link-inline {
    color: var(--auwerkfest-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px dotted var(--auwerkfest-primary);
}

.auwerkfest-link-inline:hover {
    color: var(--auwerkfest-secondary);
    border-bottom-color: var(--auwerkfest-secondary);
}

.program-footnote {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--gray-light);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px dashed var(--gray-medium);
    border-bottom: 2px dashed var(--gray-medium);
}

.footnote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.program-footnote p {
    max-width: 650px;
    margin: 0 auto;
    font-style: italic;
    color: var(--gray-dark);
}

.footnote-text {
    font-style: normal;
    color: var(--text-high-contrast);
    letter-spacing: 0.01em;
    line-height: 1.5;
}

/* Veranstaltungsort Erweiterungen */
.location-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.highlight-badge {
    display: inline-block;
    background-color: var(--symposium-light);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
}

.location-facts {
    margin-top: 1rem;
}

.fact-card {
    background-color: var(--text-light);
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    height: 100%;
    border: 1px solid var(--gray-medium);
}

.fact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--symposium-dark);
}

.fact-card h4 {
    color: var(--symposium-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.fact-list {
    list-style-type: none;
    padding-left: 0;
}

.fact-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px dashed var(--gray-light);
}

.fact-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.fact-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--symposium-medium);
}

.location-transport {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px dashed var(--gray-medium);
}

.transport-options {
    margin-top: 1.5rem;
}

.transport-card {
    background-color: var(--text-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    border: 1px solid var(--gray-medium);
}

.transport-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.transport-card h5 {
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.transport-card p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* Spezielle Styling für Transportoptionen */
.car-option .transport-icon {
    color: var(--symposium-dark);
}

.bus-option .transport-icon {
    color: #3a77ac;
}

.bike-option .transport-icon {
    color: #50b83c;
}

.scooter-option .transport-icon {
    color: var(--auwerkfest-primary);
}

.circuit-text-link {
    position: relative;
    color: var(--symposium-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 0 0.3rem;
    transition: all 0.2s ease;
}

.circuit-text-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--symposium-light);
    transition: all 0.2s ease;
}

.circuit-text-link:hover {
    color: var(--auwerkfest-primary);
}

.circuit-text-link:hover::before {
    background-color: var(--auwerkfest-primary);
    height: 3px;
}

/* Kontakt & Anmeldung Bereich */
.contact-info-box {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-medium);
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.registration-card {
    background-color: var(--symposium-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-medium);
}

.registration-header {
    background: linear-gradient(90deg, var(--symposium-medium), var(--symposium-light));
    color: var(--text-light);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reg-icon {
    font-size: 2rem;
}

.registration-header h4 {
    margin: 0;
    font-weight: 600;
}

.registration-content {
    padding: 1.5rem;
}

.registration-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.ticket-info {
    background-color: var(--auwerkfest-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    position: relative;
    border: 1px dashed var(--auwerkfest-primary);
}

.ticket-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(90deg, var(--auwerkfest-primary), var(--auwerkfest-secondary));
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.1rem;
}

.ticket-info p {
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.contact-direct {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid var(--gray-medium);
}

.contact-direct h4 {
    color: var(--symposium-dark);
    margin-bottom: 1rem;
}

.email-link {
    position: relative;
    display: inline-block;
    color: var(--symposium-dark);
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--symposium-medium), var(--auwerkfest-primary));
    transform: scaleX(0.7);
    transform-origin: center;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--auwerkfest-primary);
}

.email-link:hover::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .contact-info-box {
        padding: 1.5rem;
    }
    
    .registration-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .ticket-badge {
        position: relative;
        top: 0;
        left: 0;
        display: inline-flex;
        margin-bottom: 1rem;
    }
}

/* Künstlerhutgeld-Info */
.artist-support-info {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--auwerkfest-secondary);
    position: relative;
    padding-left: 3rem;
}

.support-icon {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 2rem;
    color: var(--auwerkfest-secondary);
}

.artist-support-info p {
    font-size: 0.95rem;
    margin-top: 0;
}

@media (max-width: 768px) {
    .artist-support-info {
        padding-left: 0;
        text-align: center;
    }
    
    .support-icon {
        position: static;
        display: block;
        margin-bottom: 0.5rem;
    }
}

/* Slideshow Section */
.slideshow-section {
    padding: 0 0 3rem 0;
    margin-bottom: 0;
    margin-top: -1rem;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slideshow-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--symposium-dark);
    position: relative;
    z-index: 2;
}

.slides-wrapper {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 300px;
}

.slide {
    min-width: calc(33.333% - 10px);
    height: 100%;
    margin: 0 5px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .slide {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .slide {
        min-width: calc(100% - 10px);
    }
    
    .slides-wrapper {
        height: 250px;
    }
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

.slideshow-nav button {
    background-color: rgba(30, 61, 89, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}

.slideshow-nav button:hover {
    background-color: rgba(30, 61, 89, 0.7);
}

/* Slideshow-Dots-Stile wurden entfernt, da sie nicht mehr benötigt werden */

@media (max-width: 992px) {
    .slide {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .slide {
        min-width: calc(100% - 10px);
    }
    
    .slides-wrapper {
        height: 250px;
    }
}

/* Supporters Section */
.supporter-link {
    display: inline-block;
}

.supporter-logo {
    max-width: 100%;
    height: auto;
    /* Default: monochrome strip; color returns on link hover/focus (see below). */
    filter: grayscale(100%);
    transition: filter 0.35s ease;
}

/*
 * Supporter logos: restore full color when the user hovers or focuses the link
 * (keyboard users get the same feedback as mouse users).
 */
.supporter-link:hover .supporter-logo,
.supporter-link:focus-visible .supporter-logo {
    filter: grayscale(0%);
}
