﻿  
  /* Globale Variablen */
:root {
    --primary-color: #1A365D; /* Dunkles Bodensee-Blau */
    --secondary-color: #822727; /* Wein-Rot */
    --accent-color: #2B6CB0;
    --bg-color: #F7FAFC;
    --text-color: #2D3748;
    --text-light: #718096;
    --white: #FFFFFF;
    --border-radius: 12px;
    --transition: 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}
.logo img { color: var(--secondary-color); width:100px; margin-top:60px;}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover { color: var(--accent-color); }

/* Hero Sektion */
.hero {
    background: linear-gradient(rgba(26, 54, 93, 0.75), rgba(26, 54, 93, 0.75)), 
                url('https://images.unsplash.com/photo-1549887552-cb1071d3e5ca?auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--white);
    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #631c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

/* Sektions-Titel */
.section-title {
    text-align: center;
    margin: 80px 0 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Profil des Gästeführers */
.guide-profile {
    display: flex;
    gap: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    margin-bottom: 60px;
    align-items: center;
}

.guide-image {
    align-self: flex-start; /* Schiebt das Bild an den oberen Rand */
    /* eventuell noch einen kleinen Abstand nach oben geben, falls gewünscht: */
    /* margin-top: 10px; */ 
}

.guide-image img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.guide-info h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.guide-badge {
    display: inline-block;
    background: rgba(130, 39, 39, 0.1);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.guide-contact {
    margin-top: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Touren-Auflistung */
.tours-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.tour-card {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    /*transform: translateY(-5px);*/
}

.tour-card.reverse {
    flex-direction: row-reverse;
}

/* Image Slider */
.tour-slider {
    flex: 1;
    position: relative;
    min-height: 350px;
    overflow: hidden;
	align-self: flex-start;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active { opacity: 1; z-index: 1; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-btn.prev { left: 15px; }
.slider-btn.next { right: 15px; }

/* Touren-Details */
.tour-details {
    flex: 1;
    padding-top: 0px;
	padding-right: 40px;
	padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-details h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tour-meta {
    list-style: none;
    margin: 25px 0;
    background: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

.tour-meta li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 5px;
}
.tour-meta li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-left: 25px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

/* Responsive Design */
@media (max-width: 850px) {
    .guide-profile {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .tour-card, .tour-card.reverse {
        flex-direction: column;
    }
    .tour-slider {
        min-height: 250px;
    }
    .nav-wrapper {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 { font-size: 2.5rem; }
	
	/* HIERZUFUEGEN: Hebt die Fixierung auf Mobilgeräten auf */
    header {
        position: relative;
    }
    body {
        padding-top: 0;
    }
	
	/* HIERZUFUEGEN: Schiebt den Article-Header unter das fixierte mobile Menü */
    .article-header {
        margin-top: 140px; /* Falls der Text immer noch leicht verdeckt ist, erhöhe diesen Wert schrittweise (z.B. auf 160px oder 180px) */
    }
	/* Richtet das Dropdown auf kleinen Bildschirmen an der rechten Kante aus */
    .dropdown-menu {
        left: auto !important;
        right: 0 !important;
    }
	
}





/* Breadcrumbs */
.breadcrumbs {
    padding: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Tour Hero Image auf der Detailseite */
.tour-detail-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
    margin-bottom: 50px;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(26,54,93,0.3), rgba(26,54,93,0.9));
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
    color: var(--white);
}
.tour-category {
    background: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}
.tour-hero-overlay h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
}
.tour-hero-overlay .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 2-Spalten Layout (Grid) */
.tour-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* Linke Spalte Formatierung */
.tour-main-info h2, .tour-main-info h3 {
    color: var(--primary-color);
    margin: 30px 0 15px;
}
.tour-main-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.highlight-list {
    list-style: none;
    margin-bottom: 30px;
}
.highlight-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* Slider auf Detailseite anpassen */
.detail-slider {
    border-radius: var(--border-radius);
    height: 400px;
    margin-top: 20px;
}

/* Rechte Spalte (Sticky Sidebar) */
.tour-sidebar {
    position: relative;
}
.booking-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px; /* Bleibt beim Scrollen am oberen Bildschirmrand stehen */
}
.booking-card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--bg-color);
    padding-bottom: 10px;
}
.tour-meta-list {
    list-style: none;
    margin-bottom: 25px;
}
/*
.tour-meta-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.95rem;
}
*/


.tour-meta li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start; /* Sorgt dafür, dass Label und Text oben auf gleicher Höhe starten */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 12px; 
    gap: 15px; /* Fester Abstand zwischen der linken und rechten Spalte */
}

/* Die letzte Zeile hat keinen Rahmen - das hast du schon richtig drin, ich führe es der Vollständigkeit halber auf */
.tour-meta li:last-child { 
    border-bottom: none; 
    margin-bottom: 0; 
    padding-bottom: 0; 
}

/* NEU: Wir geben dem Label eine feste Spaltenbreite */
.tour-meta li strong {
    flex-shrink: 0; /* Verhindert, dass der Browser das Label bei Platzmangel zusammenquetscht */
    width: 160px; /* Feste Breite für die linke Seite. Du kannst den Wert je nach Längstem Wort (z.B. "Teilnehmeranzahl:") anpassen */
}


.tour-meta-list li span {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    width: 120px;
}
.guide-mini-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-color);
    border-radius: 8px;
}
.guide-mini-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.guide-mini-profile a {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 3px;
}
.full-width {
    display: block;
    width: 100%;
    text-align: center;
}

/* Responsive für Detailseite */
@media (max-width: 900px) {
    .tour-content-wrapper {
        grid-template-columns: 1fr; /* Alles in einer Spalte auf dem Handy */
    }
    .tour-hero-overlay h1 {
        font-size: 2rem;
    }
    .booking-card {
        position: static; /* Sticky auf Handys deaktivieren */
    }
}



/* Ergänzungen für die Übersichtsseite */
.filter-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

#searchInput, #ortFilter {
    padding: 12px 20px;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    outline: none;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.guide-card {
	
	display: flex;
    flex-direction: column; /* Richtet die Inhalte (Bild, Name, Ort, Button) untereinander aus */
    height: 100%;           /* Sorgt dafür, dass alle Karten in einer Reihe gleich hoch sind */
	
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

/*
.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
*/

.guide-card img {
    max-width: 100%;
    height: auto;
    display: block; /* Verhindert einen kleinen ungewollten Abstand nach unten */
}

.guide-card .btn {
    margin-top: auto;       /* Schiebt den Button automatisch ganz nach unten */
    align-self: center;     /* Zentriert den Button horizontal (falls gewünscht, sonst weglassen) */
    width: 100%;            /* Macht den Button so breit wie die Karte (sieht oft sauberer aus) */
    box-sizing: border-box; /* Verhindert, dass der Button bei 100% Breite über den Rand ragt */
}

.guide-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 10px 0;
}



/* Hero Section */
.hero-section {
    /* 1. Das Bild einbinden */
    /* Ersetze 'img/dein-foto.jpg' durch den Pfad zu deinem Bild */
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('Home_neu.JPG');
    
    /* 2. Damit das Bild immer den Bereich ausfüllt, ohne zu verzerren */
    background-size: cover; 
    
    /* 3. Damit das Bild immer zentriert bleibt */
    background-position: center; 
    
    /* 4. Höhe des Bereichs (kannst du anpassen) */
    height: 500px; 
    
    /* Zentriert den Text über dem Bild */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}
.feature-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}
.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Intro Bereich */
.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}




 /* ==========================================================================
           BEIBEHALTENE ELEMENTE (Aus der Startseite für Konsistenz)
           ========================================================================== */
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }

        nav ul li {
            position: relative;
        }

		/*
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
            min-width: 200px;
            z-index: 1000;
            border-radius: 4px;
            padding: 10px 0;
        }
		*/
		/* Lösung für das lange Dropdown-Menü (30+ Einträge) */
			.dropdown-menu {
				max-height: 65vh;                  /* Begrenzt die Höhe auf 65% des sichtbaren Bildschirms */
				overflow-y: auto;                  /* Aktiviert die vertikale Scrollbar, wenn nötig */
				-webkit-overflow-scrolling: touch;  /* Aktiviert flüssiges "Momentum"-Scrollen auf iPhones/iOS */
			}

			/* Optional: Macht die Scrollbar in modernen Browsern etwas schmaler und schicker */
			.dropdown-menu::-webkit-scrollbar {
				width: 6px;
			}
			.dropdown-menu::-webkit-scrollbar-track {
				background: #f1f1f1;
				border-radius: 4px;
			}
			.dropdown-menu::-webkit-scrollbar-thumb {
				background: #ccc;
				border-radius: 4px;
			}
			.dropdown-menu::-webkit-scrollbar-thumb:hover {
				background: #999;
			}
		
		

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu li a {
            color: #333;
            padding: 10px 20px;
            display: block;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

        .dropdown-menu li a:hover {
            background-color: #f5f5f5;
        }

        .show-dropdown {
            display: block;
        }

        .dropdown-toggle::after {
            content: " ▼";
            font-size: 0.7em;
            vertical-align: middle;
        }

        /* ==========================================================================
           MODERNES NEWS-DETAIL LAYOUT (Zeitgemäß & Clean)
           ========================================================================== */
        :root {
            --primary-color: #007BFF;
            --text-main: #2d3748;
            --text-muted: #718096;
            --bg-light: #f7fafc;
            --border-color: #e2e8f0;
        }

        body {
            color: var(--text-main);
            background-color: #fff;
        }

        /* Hero / Header für den Artikel */
        .article-header {
            padding: 60px 0 40px 0;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(to bottom, var(--bg-light), #ffffff);
        }

        .meta-wrapper {
            display: flex;
            gap: 15px;
            align-items: center;
            font-size: 0.9em;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .category-badge {
            background-color: rgba(0, 123, 255, 0.1);
            color: var(--primary-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .article-header h1 {
            font-size: 2.5em;
            line-height: 1.2;
            margin: 0 0 20px 0;
            color: #1a202c;
        }

        /* Zwei-Spalten Layout: Hauptinhalt & Sidebar */
        .article-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            margin: 40px 0 60px 0;
        }

        /* Haupt-Content */
        .article-main-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .article-body {
            font-size: 1.15em;
            line-height: 1.75;
        }

        .article-body p {
            margin-bottom: 25px;
        }

        .article-body .lead {
            font-size: 1.3em;
            font-weight: 500;
            color: #1a202c;
            line-height: 1.6;
        }

        /* Zitat-Box / Callout */
        .article-quote {
            border-left: 4px solid var(--primary-color);
            padding: 15px 25px;
            margin: 35px 0;
            background-color: var(--bg-light);
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .sidebar-widget {
            background-color: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .sidebar-widget h4 {
            margin: 0 0 15px 0;
            font-size: 1.2em;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 8px;
        }

        /* Autor Box */
        .author-box {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #cbd5e0;
            object-fit: cover;
        }

        .author-info h5 {
            margin: 0 0 3px 0;
            font-size: 1.05em;
        }
        
        .author-info p {
            margin: 0;
            font-size: 0.85em;
            color: var(--text-muted);
        }

        /* Verwandte Beiträge */
        .related-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .related-list li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--border-color);
        }

        .related-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .related-list a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 500;
            display: block;
            margin-bottom: 5px;
            transition: color 0.2s;
        }

        .related-list a:hover {
            color: var(--primary-color);
        }

        .related-date {
            font-size: 0.8em;
            color: var(--text-muted);
        }

        /* Back Button */
        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            text-decoration: none;
            margin-bottom: 20px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .btn-back:hover {
            color: var(--primary-color);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .article-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .article-main-img {
                height: 300px;
            }
            .article-header h1 {
                font-size: 2em;
            }
        }
		
		
		
		  /* ==========================================================================
           FIXIERTE NAVIGATION & BASIS-STYLES
           ========================================================================== */
        header {
            position: fixed;      
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2000;        
            background-color: #ffffff; 
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
        }

        body {
            padding-top: 70px;    
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }

        nav ul li {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
            min-width: 200px;
            z-index: 1000;
            border-radius: 4px;
            padding: 10px 0;
        }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu li a {
            color: #333;
            padding: 10px 20px;
            display: block;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

        .dropdown-menu li a:hover {
            background-color: #f5f5f5;
        }

        .show-dropdown {
            display: block;
        }

        .dropdown-toggle::after {
            content: " ▼";
            font-size: 0.7em;
            vertical-align: middle;
        }

        .logo {
            position: relative;
            z-index: 2001;
        }

        :root {
            --primary-color: #007BFF;
            --text-main: #2d3748;
            --text-muted: #718096;
            --bg-light: #f7fafc;
            --border-color: #e2e8f0;
        }

        body {
            color: var(--text-main);
            background-color: #fff;
        }

        /* ==========================================================================
           ARTICLE LAYOUT
           ========================================================================== */
        .article-header {
            position: relative;
            z-index: 1; 
            padding: 60px 0 40px 0;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(to bottom, var(--bg-light), #ffffff);
        }

        .meta-wrapper {
            display: flex;
            gap: 15px;
            align-items: center;
            font-size: 0.9em;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .category-badge {
            background-color: rgba(0, 123, 255, 0.1);
            color: #dddddd;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .article-header h1 {
            font-size: 2.5em;
            line-height: 1.2;
            margin: 0 0 20px 0;
            color: #1a202c;
        }

        .article-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            margin: 40px 0 60px 0;
        }

        .article-main-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .article-body {
            font-size: 1.15em;
            line-height: 1.75;
        }

        .article-body p {
            margin-bottom: 25px;
        }

        .article-quote {
            border-left: 4px solid var(--primary-color);
            padding: 15px 25px;
            margin: 35px 0;
            background-color: var(--bg-light);
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }

        /* ==========================================================================
           YOUTUBE COOKIE WALL (Zwei-Klick-Lösung)
           ========================================================================== */
        .video-container {
            margin: 35px 0;
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Seitenverhältnis */
            background-color: #1a202c;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Der Platzhalter-Sperrbildschirm über dem Video */
        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            text-align: center;
            color: #ffffff;
            z-index: 10;
            box-sizing: border-box;
        }

        .video-placeholder h4 {
            margin: 0 0 10px 0;
            font-size: 1.3em;
        }

        .video-placeholder p {
            font-size: 0.9em;
            color: #a0aec0;
            max-width: 400px;
            margin: 0 0 20px 0;
            line-height: 1.4;
        }

        .btn-load-video {
            background-color: #FF0000; /* YouTube Rot */
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            font-size: 0.95em;
            transition: background-color 0.2s, transform 0.1s;
        }

        .btn-load-video:hover {
            background-color: #cc0000;
            transform: scale(1.03);
        }

        /* SIDEBAR & FOOTER */
        .sidebar {
            position: sticky;
            top: 90px; 
            height: fit-content;
        }

        .sidebar-widget {
            background-color: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .sidebar-widget h4 {
            margin: 0 0 15px 0;
            font-size: 1.2em;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 8px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: inherit;
            text-decoration: none;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        /* ==========================================================================
           COOKIE CONSENT WIDGET (Unten Rechts fixiert)
           ========================================================================== */
        
        /* Der kleine permanente Trigger-Button unten rechts */
        .cookie-trigger {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #2d3748;
            color: #ffffff;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 9998;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3em;
            transition: transform 0.2s, background-color 0.2s;
        }

        .cookie-trigger:hover {
            transform: scale(1.1);
            background-color: #1a202c;
        }

        /* Das ausfahrbare/einblendbare Einstellungsfenster */
        .cookie-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: none; 
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .cookie-modal {
            background-color: #ffffff;
            border-radius: 12px;
            max-width: 500px;
            width: 100%;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            animation: slideUp 0.25s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .cookie-modal h3 { margin-top: 0; font-size: 1.3em; }
        .cookie-modal p { font-size: 0.9em; line-height: 1.5; color: #4a5568; margin-bottom: 20px; }

        .cookie-options {
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            padding: 12px 0;
            margin-bottom: 20px;
        }

        .cookie-option-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .cookie-option-item input[type="checkbox"] {
            margin-top: 4px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .cookie-text label { font-weight: 600; font-size: 0.95em; cursor: pointer; }
        .cookie-text span { display: block; font-size: 0.8em; color: var(--text-muted); }

        .cookie-buttons { display: flex; gap: 10px; justify-content: flex-end; }
        
        .cookie-btn {
            padding: 9px 18px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.85em;
            cursor: pointer;
            border: none;
        }

        .cookie-btn-essential { background-color: #e2e8f0; color: #4a5568; }
        .cookie-btn-accept { background-color: var(--primary-color); color: #ffffff; }

        @media (max-width: 992px) {
            .article-layout { grid-template-columns: 1fr; }
            .footer-content { flex-direction: column; text-align: center; }
            .footer-links { justify-content: center; }
        }
		
		
		
		.hero-section {
    /* Wichtig für das HTML-Hintergrundbild */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Layout & Abstände */
    padding: 100px 0; /* Bestimmt die Höhe des Heros (oben/unten) */
    text-align: center;
    color: #ffffff; /* Weißer Text für maximalen Kontrast */
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Macht den Text noch lesbarer */
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Beispiel-Styles für den Button, falls noch nicht vorhanden */
.btn-primary {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}



/* Erweiterung für den flexiblen Header mit Hintergrundbild */
.article-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0; /* Mehr Platz nach oben/unten, damit man das Bild sieht */
    color: #ffffff;  /* Textfarbe wird weiß für besseren Kontrast */
}

/* Dunkles Overlay über dem Bild für perfekte Lesbarkeit des Textes */
.article-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% Abdunkelung - Wert anpassbar */
    z-index: 1;
}

/* Schützt den Inhalt, damit er ÜBER dem dunklen Schleier liegt */
.article-header .container {
    position: relative;
    z-index: 2;
}

/* Anpassung der Textelemente im Header an den dunklen Hintergrund */
.article-header h1 {
    color: #ffffff !important;
    margin-top: 15px;
}

.article-header .btn-back {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.article-header .btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
}


  
  
  
  
  
  
  
  
  
  
  
  
  
  .tour-sprungziel
  {
	  scroll-margin-top: 100px; /* Höhe deines Headers */
  }
  
  
  
  
  
  
  
  /* Styles für das JS-Pulldown-Menü */
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }

        nav ul li {
            position: relative;
        }

        /* Das Dropdown-Menü (standardmäßig ausgeblendet) */
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
            min-width: 200px;
            z-index: 1000;
            border-radius: 4px;
            padding: 10px 0;
        }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu li a {
            color: #333;
            padding: 10px 20px;
            display: block;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

        .dropdown-menu li a:hover {
            background-color: #f5f5f5;
        }

        /* Klasse wird per JavaScript umgeschaltet */
        .show-dropdown {
            display: block;
        }

        /* Visueller Indikator für das Dropdown */
        .dropdown-toggle::after {
            content: " ▼";
            font-size: 0.7em;
            vertical-align: middle;
        }

        /* NEU: Styles für den News-Bereich */
        .news-section {
            margin: 50px 0;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .news-section h2 {
            text-align: center;
            margin-bottom: 30px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .news-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .news-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .news-image {
            width: 100%;
            height: 180px;
            background-color: #eaeaea; /* Fallback-Farbe falls kein Bild da ist */
            object-fit: cover;
        }

        .news-content {
            padding: 20px;
        }

        .news-date {
            font-size: 0.85em;
            color: #777;
            margin-bottom: 8px;
            display: block;
        }

        .news-card h3 {
            margin: 0 0 10px 0;
            font-size: 1.3em;
        }

        .news-card p {
            margin: 0 0 15px 0;
            color: #555;
            line-height: 1.5;
        }

        .news-link {
            color: #007BFF; /* Beispiel-Farbe für Links, an deine styles.css anpassen */
            text-decoration: none;
            font-weight: bold;
        }

        .news-link:hover {
            text-decoration: underline;
        }
		
		
		
		
		
		
	
        /* Spezifisches Styling für die Sponsoren-Seite */
        .sponsor-intro {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .sponsor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .sponsor-card {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .sponsor-card:hover {
            transform: translateY(-5px);
        }

        .sponsor-card img {
            max-width: 100%;
            height: 100px;
            object-fit: contain; /* Sorgt dafür, dass Logos nicht verzerrt werden */
            margin-bottom: 15px;
        }

        .links-section {
            background: var(--bg-color);
            padding: 40px;
            border-radius: var(--border-radius);
        }

        .link-list {
            list-style: none;
            padding: 0;
        }

        .link-list li {
            margin-bottom: 15px;
        }

        .link-list a {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .link-list a:hover {
            color: var(--secondary-color);
        }
    