/* ===== MODERN STYLES - FRASSILS BIKE & TRAVEL BLOG ===== */
:root {
    --mindgruen: #60bba8;
    --orange: #fd6200;
    --dark-text: #2c3e50;
    --headline-color: #2c3e50;
    --secondary-bg: #f8f9fa;
    --bs-body-bg: #ffffff;
    --bs-body-color: #6c757d;
    --bs-border-color: #dee2e6;
}

/* ===== NAVIGATION IMPROVEMENTS ===== */
.navbar {
    background: rgba(26, 42, 37, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--mindgruen);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--mindgruen) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--mindgruen) !important;
}

.navbar-toggler {
    border-color: var(--mindgruen);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2862, 180, 137, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== FOOTER IMPROVEMENTS ===== */
.footer {
    background: linear-gradient(135deg, var(--mindgruen) 0%, #2a5a4d 100%) !important;
    color: white !important;
    border-top: 4px solid var(--orange);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    margin-top: 4rem;
}

.footer h5 {
    color: white !important;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255,255,255,0.8) !important;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--orange) !important;
    transform: translateX(3px);
}

.footer .text-muted {
    color: rgba(255,255,255,0.6) !important;
}

/* === GLOBAL ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--mindgruen);
    }
    50% {
        box-shadow: 0 0 20px var(--mindgruen), 0 0 30px var(--mindgruen);
    }
}

/* === SHARED COMPONENTS === */
.footer-transition {
    height: 3rem;
    background: linear-gradient(to bottom, var(--bs-body-bg), var(--mindgruen));
    margin: 0 -15px;
}

/* KRITISCHE BUTTON-FIXES MIT HÃ–CHSTER PRIORITÃ„T */
.btn-primary-modern,
a.btn-primary-modern,
button.btn-primary-modern,
.post-actions .btn-primary-modern {
    background: linear-gradient(135deg, var(--mindgruen), #2a8a65) !important;
    border: 2px solid var(--mindgruen) !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(62, 180, 137, 0.3) !important;
}

.btn-primary-modern:hover,
a.btn-primary-modern:hover,
button.btn-primary-modern:hover,
.post-actions .btn-primary-modern:hover {
    background: linear-gradient(135deg, var(--orange), #e66a41) !important;
    border-color: var(--orange) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.5) !important;
}

.btn-secondary-modern,
a.btn-secondary-modern,
button.btn-secondary-modern {
    background: linear-gradient(135deg, var(--orange), #e66a41) !important;
    border: 2px solid var(--orange) !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3) !important;
}

.btn-secondary-modern:hover,
a.btn-secondary-modern:hover,
button.btn-secondary-modern:hover {
    background: linear-gradient(135deg, var(--mindgruen), #2a8a65) !important;
    border-color: var(--mindgruen) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(62, 180, 137, 0.5) !important;
}

/* ===== HOMEPAGE STYLES ===== */
.home-container {
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.home-container .hero-section {
    height: 100vh;
    background: linear-gradient(135deg, var(--mindgruen) 0%, var(--orange) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.home-container .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,800 1000,1000"/><polygon fill="rgba(255,255,255,0.05)" points="0,700 1000,500 1000,700 0,900"/></svg>');
    background-size: cover;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, white, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    display: block;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ALLE ANDEREN BUTTONS MIT !IMPORTANT */
.cta-button,
a.cta-button {
    background: linear-gradient(135deg, var(--mindgruen), #2a8a65) !important;
    color: white !important;
    border: 2px solid var(--mindgruen) !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    font-family: 'Nunito', sans-serif !important;
    box-shadow: 0 4px 15px rgba(62, 180, 137, 0.4) !important;
}

.cta-button:hover,
a.cta-button:hover {
    background: linear-gradient(135deg, var(--orange), #e66a41) !important;
    border-color: var(--orange) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.6) !important;
}

.cta-button.secondary,
a.cta-button.secondary {
    background: linear-gradient(135deg, var(--orange), #e66a41) !important;
    border-color: var(--orange) !important;
    color: white !important;
}

.cta-button.secondary:hover,
a.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--mindgruen), #2a8a65) !important;
    border-color: var(--mindgruen) !important;
    color: white !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Stats Section */
.stats-section {
    background: var(--bs-body-bg);
    padding: 5rem 0;
    margin-top: -2rem;
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 6px solid var(--mindgruen);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:nth-child(2) {
    border-left-color: var(--orange);
    border-left-width: 6px;
}

.stat-card:nth-child(3) {
    border-left-color: var(--mindgruen);
    border-left-width: 6px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--mindgruen), var(--orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(62, 180, 137, 0.25);
    border-left-width: 8px;
}

.stat-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(255, 127, 80, 0.25);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--mindgruen), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, var(--orange), #e66a41);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Homepage Stats - unterschiedlich zu anderen Seiten */
.home-container .stat-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--headline-color);
    margin-bottom: 0.5rem;
    display: block;
}

.home-container .stat-label {
    font-family: 'Nunito', sans-serif;
    color: #999;
    font-size: 1.1rem;
    display: block;
}

/* Section Titles fÃ¼r alle Container */
.section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--headline-color);
    text-align: center;
    margin-bottom: 1rem;
    display: block !important;
    line-height: 1.2;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    background: var(--bs-body-bg);
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

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

.feature-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.feature-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--mindgruen), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card:hover .feature-overlay {
    opacity: 0.9;
}

.feature-overlay-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-content {
    padding: 2rem;
}

.feature-category {
    display: inline-block;
    background: var(--mindgruen);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-category.travel {
    background: var(--orange);
}

.feature-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--headline-color);
    margin-bottom: 1rem;
}

.feature-excerpt {
    color: var(--bs-body-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.5rem;
}

/* FEATURE LINKS MIT !IMPORTANT */
.feature-link,
a.feature-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: linear-gradient(135deg, var(--mindgruen), #2a8a65) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(62, 180, 137, 0.4) !important;
    border: 2px solid transparent !important;
}

.feature-link:hover,
a.feature-link:hover {
    background: linear-gradient(135deg, var(--orange), #e66a41) !important;
    color: white !important;
    transform: translateX(8px) translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.6) !important;
    border-color: var(--orange) !important;
}

.feature-link.travel,
a.feature-link.travel {
    background: linear-gradient(135deg, var(--orange), #e66a41) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4) !important;
}

.feature-link.travel:hover,
a.feature-link.travel:hover {
    background: linear-gradient(135deg, var(--mindgruen), #2a8a65) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(62, 180, 137, 0.6) !important;
    border-color: var(--mindgruen) !important;
}

.cta-section {
    background: linear-gradient(135deg, var(--mindgruen), var(--orange));
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(255,255,255,0.1)" cx="200" cy="300" r="100"/><circle fill="rgba(255,255,255,0.05)" cx="800" cy="700" r="150"/></svg>');
    animation: float 15s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== BLOG SEITE STYLES ===== */
.blog-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--mindgruen) 0%, #2a4a3d 100%);
    position: relative;
    overflow-x: hidden;
}


.blog-content {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.blog-container .hero-section {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-container .hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
    line-height: 1.2;
}

.blog-container .hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: white;
    display: block;
}

.search-box {
    max-width: 500px;
    margin: 0 auto 4rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.search-input:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(62, 180, 137, 0.3);
}

.featured-section {
    margin-bottom: 5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.featured-main:hover {
    transform: translateY(-10px) scale(1.02);
}

.featured-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 3rem 2rem 2rem;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.featured-excerpt {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.featured-secondary {
    display: grid;
    gap: 1.5rem;
}

.featured-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--mindgruen);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(62, 180, 137, 0.2);
    border-color: var(--mindgruen);
}

.featured-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.featured-card-content {
    padding: 1.5rem;
}

.featured-card-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--headline-color);
}

.posts-section {
    background: linear-gradient(to bottom, var(--bs-body-bg) 0%, var(--bs-body-bg) 70%, var(--mindgruen) 100%);
    margin: 0 -15px;
    padding: 4rem 15px 6rem 15px;
    border-radius: 40px 40px 0 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.post-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--orange);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 127, 80, 0.15);
    border-color: var(--orange);
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mindgruen), var(--orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.post-card:hover::before {
    transform: scaleX(1);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--headline-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-excerpt {
    color: var(--bs-body-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
}

/* READ MORE BUTTONS MIT !IMPORTANT */
.read-more-btn,
a.read-more-btn,
button.read-more-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: linear-gradient(135deg, var(--mindgruen), #2a8a65) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    font-family: 'Nunito', sans-serif !important;
    box-shadow: 0 4px 15px rgba(62, 180, 137, 0.3) !important;
}

.read-more-btn:hover,
a.read-more-btn:hover,
button.read-more-btn:hover {
    transform: translateX(5px) !important;
    background: linear-gradient(135deg, var(--orange), #e66a41) !important;
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4) !important;
    color: white !important;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--bs-body-color);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ===== TRAININGSTAGEBUCH STYLES ===== */
.training-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--orange) 0%, #d45a2a 100%);
    position: relative;
    overflow-x: hidden;
}

.training-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: rgba(26, 42, 37, 0.3);
    z-index: 1;
}

.training-content {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.training-container .hero-section {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.training-container .hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
    line-height: 1.2;
}

.training-container .hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    display: block;
}

.controls-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.search-input, .year-select {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    min-width: 200px;
}

.search-input:focus, .year-select:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 127, 80, 0.3);
}

.dashboard-section {
    margin-bottom: 4rem;
}

.progress-card {
    border-left-color: var(--mindgruen) !important;
}

.progress-bar-custom {
    height: 25px;
    background: var(--bs-border-color);
    border-radius: 50px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--mindgruen), #2a8a65);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    transition: width 1s ease-out;
    min-width: 60px;
}

/* SPEZIFISCHE DASHBOARD STAT-VALUE STYLES */
.dashboard-section .stat-value {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem !important;
    font-weight: 800;
    color: var(--headline-color);
    margin-bottom: 0.5rem;
}

.latest-tour-card {
    border-left-color: var(--mindgruen) !important;
}

.tour-link {
    color: var(--mindgruen);
    text-decoration: none;
    font-weight: 600;
}

.tour-link:hover {
    color: var(--orange);
}

.tours-section {
    background: linear-gradient(to bottom, var(--bs-body-bg) 0%, var(--bs-body-bg) 80%, var(--mindgruen) 100%);
    margin: 0 -15px;
    padding: 3rem 15px 5rem 15px;
    border-radius: 40px 40px 0 0;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--mindgruen);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(62, 180, 137, 0.2);
    border-color: var(--mindgruen);
    color: inherit;
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tour-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--headline-color);
    margin: 0;
    flex-grow: 1;
    display: block;
    line-height: 1.3;
}

.tour-date {
    font-size: 0.875rem;
    color: #999;
    white-space: nowrap;
    margin-left: 1rem;
}

.tour-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.tour-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--bs-body-color);
}

.tour-stat-icon {
    color: var(--orange);
    font-size: 1rem;
}

.strava-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FC4C02;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== TOUR DETAIL SEITE STYLES ===== */
.tour-detail-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--mindgruen) 0%, #2a5a4d 100%);
    position: relative;
    overflow-x: hidden;
}

.tour-content {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.tour-detail-container .hero-section {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tour-detail-container .hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
    line-height: 1.2;
}

.tour-detail-container .hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: white;
    display: block;
}


.tour-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.tour-detail-container .tour-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
    line-height: 1.2;
}

.tour-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-button {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: var(--dark-text);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: white;
    transform: translateX(-5px);
    color: var(--dark-text);
}

.main-content {
    background: var(--bs-body-bg);
    margin: 0 -15px;
    padding: 3rem 15px;
    border-radius: 40px 40px 0 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-section {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--mindgruen);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-header {
    padding: 1.5rem;
    background: rgba(62, 180, 137, 0.1);
    border-bottom: 1px solid var(--bs-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--headline-color);
    margin: 0;
}

.map-controls {
    display: flex;
    gap: 0.5rem;
}

.map-control-btn {
    background: transparent;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    padding: 0.5rem;
    color: var(--bs-body-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-control-btn:hover,
.map-control-btn.active {
    background: var(--mindgruen);
    color: white;
}

.map-container {
    height: 400px;
    background: var(--secondary-bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.description-section {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--orange);
    border-radius: 20px;
    padding: 2rem;
}

.description-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--headline-color);
    margin-bottom: 1.5rem;
}

.description-text {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--bs-body-color);
    white-space: pre-wrap;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--orange);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 2rem;
}

.stats-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--headline-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(62, 180, 137, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(62, 180, 137, 0.2);
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* TOUR DETAIL STAT-VALUE (anders als Dashboard) */
.stat-value {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: var(--headline-color);
    font-size: 1.1rem;
}

.stat-icon {
    color: var(--orange);
    font-size: 1rem;
}

.strava-card {
    background: linear-gradient(135deg, #FC4C02, #e63900);
    color: white;
    border: none;
    text-align: center;
}

.strava-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
}

.related-tours {
    margin-top: 3rem;
}

.related-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--headline-color);
    text-align: center;
    margin-bottom: 2rem;
}

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

.related-tour-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--mindgruen);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(62, 180, 137, 0.2);
    color: inherit;
}

.related-tour-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--headline-color);
    margin-bottom: 0.5rem;
}

.related-tour-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #999;
}

/* ===== POST SHOW STYLES ===== */
.post-category {
    margin-bottom: 1rem;
}

.post-meta-header {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 1.5rem;
}

.post-meta-header .post-date,
.post-meta-header .reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.post-main-content {
    background: var(--bs-body-bg);
    margin: 0 -15px;
    padding: 4rem 15px;
    border-radius: 40px 40px 0 0;
}

.post-content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.post-article {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--mindgruen);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.post-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-excerpt-section {
    padding: 2rem;
    background: rgba(62, 180, 137, 0.1);
    border-bottom: 1px solid var(--bs-border-color);
}

.post-excerpt-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--bs-body-color);
    margin: 0;
    font-style: italic;
}

.post-body {
    padding: 3rem;
    font-family: 'Nunito', sans-serif;
    line-height: 1.8;
    color: var(--bs-body-color);
}

.post-body h1, .post-body h2, .post-body h3, .post-body h4 {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--headline-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-body h1 { font-size: 2.5rem; }
.post-body h2 { font-size: 2rem; }
.post-body h3 { font-size: 1.5rem; }
.post-body h4 { font-size: 1.2rem; }

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.post-body blockquote {
    border-left: 4px solid var(--orange);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: rgba(255, 127, 80, 0.1);
    border-radius: 8px;
    font-style: italic;
}

.post-body ul, .post-body ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-footer {
    padding: 2rem 3rem;
    border-top: 1px solid var(--bs-border-color);
    background: rgba(62, 180, 137, 0.05);
}

.post-tags {
    margin-bottom: 2rem;
}

.post-tags h4 {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--headline-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-actions {
    display: flex;
    justify-content: center;
}

.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--orange);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

/* Sidebar Cards - PrimÃ¤r (mintgrÃ¼n) fÃ¼r "Ãœber diesen Artikel" */
.sidebar-card:first-child {
    border-left-color: var(--mindgruen) !important;
}

.sidebar-card:first-child .info-item {
    background: rgba(62, 180, 137, 0.1);
    border: 1px solid rgba(62, 180, 137, 0.2);
}

/* Sidebar Cards - SekundÃ¤r (orange) fÃ¼r "Ã„hnliche Artikel" */
.sidebar-card:nth-child(2) {
    border-left-color: var(--orange) !important;
}

.sidebar-card:nth-child(2) .related-post-card {
    background: rgba(255, 127, 80, 0.1);
    border: 1px solid rgba(255, 127, 80, 0.2);
}

.sidebar-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--headline-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.article-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(62, 180, 137, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(62, 180, 137, 0.2);
}

.info-label {
    font-family: 'Nunito', sans-serif;
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-value {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    text-align: right;
    flex: 1;
    color: var(--headline-color);
    font-size: 1rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 127, 80, 0.1);
    border: 1px solid rgba(255, 127, 80, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.2);
    color: inherit;
}

.related-post-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.related-post-content {
    flex-grow: 1;
}

.related-post-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--headline-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.related-post-date {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN FÃœR POST SHOW ===== */
@media (max-width: 992px) {
    .post-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .post-meta-header {
        gap: 1rem;
        font-size: 1rem;
    }

    .post-body {
        padding: 2rem 1.5rem;
    }

    .post-footer {
        padding: 1.5rem;
    }

    .post-body h1 { font-size: 2rem; }
    .post-body h2 { font-size: 1.7rem; }
    .post-body h3 { font-size: 1.3rem; }
}
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .back-button {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .blog-container .hero-title {
        font-size: 2.5rem;
    }

    .training-container .hero-title {
        font-size: 2.5rem;
    }

    .tour-detail-container .tour-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .controls-section {
        flex-direction: column;
        align-items: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .tour-meta {
        gap: 1rem;
        font-size: 1rem;
    }

    .map-container {
        height: 300px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== TRAVEL/REISEN SEITE STYLES ===== */
/* ===== TRAVEL/REISEN SEITE STYLES ===== */
.travel-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%);
    position: relative;
    overflow-x: hidden;
}

.travel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: rgba(26, 42, 60, 0.3);
    z-index: 1;
}

.travel-content {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.travel-container .hero-section {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.travel-container .hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
    line-height: 1.2;
}

.travel-container .hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    display: block;
}
.travel-container .search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    min-width: 300px; /* Mindestbreite für längeren Text */
}

.travel-container .search-box {
    max-width: 600px; /* Größere max-width als die anderen Seiten */
    margin: 0 auto 4rem;
    position: relative;
}

@media (max-width: 768px) {
    .travel-container .search-input {
        min-width: 280px;
        font-size: 1rem;
    }

    .travel-container .search-box {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Weltkarte Section */
.world-map-section {
    margin-bottom: 4rem;
}

.map-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid #4a90e2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.map-header {
    padding: 1.5rem 2rem;
    background: rgba(74, 144, 226, 0.1);
    border-bottom: 1px solid var(--bs-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--headline-color);
    margin: 0;
}

.map-legend {
    display: flex;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--bs-body-color);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid;
}

.legend-item.visited .legend-dot {
    background-color: var(--mindgruen);
    border-color: #2a8a65;
}

.legend-item.planned .legend-dot {
    background-color: var(--orange);
    border-color: #e66a41;
}

.world-map {
    height: 500px;
    background: #e8f4fd;
    position: relative;
}

/* Geplante Trips Section */
.planned-trips-section {
    margin-bottom: 4rem;
}

.planned-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.planned-trip-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid var(--orange);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.planned-trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 127, 80, 0.2);
}

.trip-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.planned-trip-card:hover .trip-image img {
    transform: scale(1.1);
}

.trip-content {
    padding: 2rem;
}

.trip-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trip-status.planned {
    background: var(--mindgruen);
    color: white;
}

.trip-status.wishlist {
    background: var(--orange);
    color: white;
}

.trip-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--headline-color);
    margin-bottom: 1rem;
}

.trip-description {
    color: var(--bs-body-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trip-timeframe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Reports Section */
.reports-section {
    background: linear-gradient(to bottom, var(--bs-body-bg) 0%, var(--bs-body-bg) 80%, #4a90e2 100%);
    margin: 0 -15px;
    padding: 4rem 15px 6rem 15px;
    border-radius: 40px 40px 0 0;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.report-card {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid #4a90e2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.15);
    border-color: #4a90e2;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, var(--mindgruen));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.report-card:hover::before {
    transform: scaleX(1);
}

.report-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.report-card:hover .report-image img {
    transform: scale(1.1);
}

.report-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.8), rgba(62, 180, 137, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-card:hover .report-overlay {
    opacity: 1;
}

.report-overlay-link {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.report-overlay-link:hover {
    transform: scale(1.2);
    color: white;
}

.report-content {
    padding: 2rem;
}

.report-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.report-date,
.report-locations {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--headline-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.report-excerpt {
    color: var(--bs-body-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
}

/* Responsive Design für Travel */
@media (max-width: 768px) {
    .travel-container .hero-title {
        font-size: 2.5rem;
    }

    .world-map {
        height: 350px;
    }

    .map-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .planned-trips-grid {
        grid-template-columns: 1fr;
    }

    .reports-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Fix für alle Such-Inputs - dunkle Schrift auf hellem Hintergrund */
.search-input,
.year-select {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    color: #2c3e50 !important; /* Dunkle Schrift */
    min-width: 200px;
}

.search-input::placeholder,
.year-select::placeholder {
    color: #6c757d !important; /* Dunkelgraue Placeholder */
    opacity: 0.8;
}

.search-input:focus,
.year-select:focus {
    outline: none;
    transform: translateY(-2px);
    color: #2c3e50 !important; /* Dunkle Schrift beim Fokus */
}

/* Spezielle Anpassungen für verschiedene Container */
.blog-container .search-input,
.training-container .search-input,
.training-container .year-select,
.travel-container .search-input {
    color: #2c3e50 !important;
    background: rgba(255,255,255,0.98) !important;
}

.travel-container .search-input {
    min-width: 300px;
}

.travel-container .search-box {
    max-width: 600px;
}


/* ===== REPORT SHOW STYLES ===== */
.report-detail-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%);
    position: relative;
}


.report-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.report-detail-container .hero-section {
    height: auto;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.report-detail-container .hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
    line-height: 1.2;
}

.report-meta-header {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1.5rem;
}

.report-meta-header .report-date,
.report-meta-header .report-locations,
.report-meta-header .report-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.report-main-content {
    background: var(--bs-body-bg);
    margin: 0 -15px;
    padding: 4rem 15px;
    border-radius: 40px 40px 0 0;
}

.report-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.report-article {
    background: var(--secondary-bg);
    border: 1px solid var(--bs-border-color);
    border-left: 4px solid #4a90e2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.report-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.report-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-excerpt-section {
    padding: 2rem;
    background: rgba(74, 144, 226, 0.1);
    border-bottom: 1px solid var(--bs-border-color);
}

.report-excerpt-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--bs-body-color);
    margin: 0;
    font-style: italic;
}

.route-map-section {
    margin: 2rem;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.route-map-header {
    padding: 1.5rem;
    background: rgba(74, 144, 226, 0.1);
    border-bottom: 1px solid var(--bs-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.route-map-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--headline-color);
    margin: 0;
}

.route-legend {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.route-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--bs-body-color);
}

.route-legend .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.route-legend .legend-item.start .legend-dot {
    background-color: #28a745;
}

.route-legend .legend-item.end .legend-dot {
    background-color: #dc3545;
}

.route-legend .legend-item.overnight .legend-dot {
    background-color: #4a90e2;
}

.route-legend .legend-item.transit .legend-dot {
    background-color: #ffc107;
}

.route-map {
    height: 400px;
    background: #e8f4fd;
}

.report-body {
    padding: 3rem;
    font-family: 'Nunito', sans-serif;
    line-height: 1.8;
    color: var(--bs-body-color);
}

.report-body h1, .report-body h2, .report-body h3, .report-body h4 {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--headline-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.report-body h1 { font-size: 2.5rem; }
.report-body h2 { font-size: 2rem; }
.report-body h3 { font-size: 1.5rem; }
.report-body h4 { font-size: 1.2rem; }

.report-body p {
    margin-bottom: 1.5rem;
}

.report-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.report-footer {
    padding: 2rem 3rem;
    border-top: 1px solid var(--bs-border-color);
    background: rgba(74, 144, 226, 0.05);
}

.report-actions {
    display: flex;
    justify-content: center;
}

.report-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.report-sidebar .sidebar-card:first-child {
    border-left-color: #4a90e2 !important;
}

.report-sidebar .sidebar-card:first-child .info-item {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.report-sidebar .sidebar-card:nth-child(2) {
    border-left-color: var(--mindgruen) !important;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(62, 180, 137, 0.1);
    border: 1px solid rgba(62, 180, 137, 0.2);
    border-radius: 12px;
}

.location-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-marker.start {
    background-color: #28a745;
    color: white;
}

.location-marker.end {
    background-color: #dc3545;
    color: white;
}

.location-marker.overnight {
    background-color: #4a90e2;
    color: white;
}

.location-marker.transit {
    background-color: #ffc107;
    color: #333;
}

.location-info {
    flex-grow: 1;
}

.location-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--headline-color);
    margin: 0 0 0.25rem 0;
}

.location-details {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 0.5rem 0;
}

.location-notes {
    font-size: 0.85rem;
    color: var(--bs-body-color);
    margin: 0;
    font-style: italic;
}

.report-sidebar .sidebar-card:nth-child(3) {
    border-left-color: var(--orange) !important;
}

.related-reports {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-report-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 127, 80, 0.1);
    border: 1px solid rgba(255, 127, 80, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.2);
    color: inherit;
}

.related-report-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.related-report-content {
    flex-grow: 1;
}

.related-report-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--headline-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.related-report-date {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

/* Responsive Design für Report Show */
@media (max-width: 992px) {
    .report-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .route-map-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .route-legend {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .report-detail-container .hero-title {
        font-size:2rem;
   }

   .report-meta-header {
       gap: 1rem;
       font-size: 0.9rem;
       flex-direction: column;
       align-items: center;
   }

   .report-body {
       padding: 2rem 1.5rem;
   }

   .report-footer {
       padding: 1.5rem;
   }

   .route-map {
       height: 300px;
   }

   .report-body h1 { font-size: 2rem; }
   .report-body h2 { font-size: 1.7rem; }
   .report-body h3 { font-size: 1.3rem; }


}
