/* ========================================
   B-NOW SCHMITTEN - MAIN STYLESHEET
   Gemeinsames Stylesheet für alle Seiten
======================================== */

/* ========================================
   DESIGN SYSTEM VARIABLES
======================================== */
:root {
    /* Colors */
    --petrol-dark: #006b7d;
    --petrol-main: #0089a8;
    --petrol-light: #00a3c7;

    --accent-orange: #ff6b35;
    --purple-gradient-start: #667eea;
    --purple-gradient-end: #764ba2;
    --pink-gradient-start: #f093fb;
    --pink-gradient-end: #f5576c;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;

    /* Spacing Scale (8px base) */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 2.5rem;
    --space-6: 3rem;
    --space-8: 4rem;
    --space-12: 6rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Container */
    --container-max: 1280px;
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ========================================
   HEADER (Global)
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-3) var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #0089a8;
}

.logo-accent {
    color: #0089a8;
}

.nav {
    display: flex;
    gap: var(--space-6);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--gray-600);
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0089a8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0089a8;
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-contact {
    background: var(--accent-orange);
    color: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   FOOTER (Global)
======================================== */
.footer {
    background: #0089a8;
    color: var(--white);
    padding: var(--space-8) var(--space-4) var(--space-4);
}

.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-6);
}

.footer-logo {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

/* ========================================
   SECTION BASE (Global)
======================================== */
.section {
    padding: var(--space-12) var(--space-4);
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.section-badge {
    display: inline-block;
    background: #0089a8;
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.section-title {
    font-size: var(--text-5xl);
    color: #0089a8;
    margin-bottom: var(--space-3);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   CARDS (Global)
======================================== */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-5);
    transition: all 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #0089a8;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #0089a8;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.card-title {
    font-size: var(--text-2xl);
    color: #0089a8;
    margin-bottom: var(--space-2);
}

.card-text {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   BUTTONS (Global)
======================================== */
.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--text-lg);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ========================================
   ANIMATIONS (Global)
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   HOMEPAGE SPECIFIC STYLES
======================================== */

/* Hero Section (Homepage only) */
.hero {
    margin-top: 72px;
    background: linear-gradient(135deg, #006b7d 0%, #0089a8 100%);
    padding: var(--space-12) var(--space-4) var(--space-12);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-bottom: var(--space-12);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: var(--text-6xl);
    color: var(--white);
    margin-bottom: var(--space-3);
    max-width: 800px;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.hero-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.hero-buttons {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.countdown {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-4);
    background: var(--accent-orange);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.countdown-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: var(--space-1);
}

.countdown-value {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: var(--text-3xl);
    font-weight: 700;
}

/* Success Section (Homepage only) */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-4);
}

/* Team Section (Homepage only) */
.section-team {
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.team-photo {
    height: 280px;
    background: linear-gradient(135deg, #00a3c7, #0089a8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-6xl);
    color: var(--white);
    font-weight: 700;
}

.team-info {
    padding: var(--space-4);
}

.team-name {
    font-size: var(--text-xl);
    color: #0089a8;
    margin-bottom: var(--space-1);
}

.team-role {
    font-size: var(--text-sm);
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.team-bio {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: var(--text-sm);
}

/* Youth Section (Homepage only) */
.section-youth {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.youth-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4);
}

.youth-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-4);
}

.youth-card h3 {
    font-size: var(--text-2xl);
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.reason-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.reason-item:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.reason-icon {
    font-size: var(--text-3xl);
    flex-shrink: 0;
}

.reason-content strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.reason-content p {
    color: var(--gray-600);
    font-size: var(--text-sm);
}

.card-challenge {
    background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
    color: var(--white);
}

.card-challenge h3 {
    color: var(--white);
}

.challenge-text {
    line-height: 1.7;
    margin-bottom: var(--space-3);
    opacity: 0.95;
}

.challenge-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.challenge-box strong {
    display: block;
    margin-bottom: var(--space-1);
}

.connect-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.connect-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.connect-btn:hover {
    background: var(--white);
    border-color: #0089a8;
    transform: translateX(4px);
}

.connect-btn-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    flex-shrink: 0;
}

.connect-btn-text strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 2px;
}

.connect-btn-text small {
    color: var(--gray-600);
    font-size: var(--text-xs);
}

.connect-note {
    color: var(--gray-600);
    font-size: var(--text-sm);
    font-style: italic;
    margin-top: var(--space-2);
}

.card-jugendparlament {
    background: linear-gradient(135deg, var(--pink-gradient-start), var(--pink-gradient-end));
    color: var(--white);
}

.jp-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.jp-icon {
    font-size: var(--text-5xl);
}

.jp-header h3 {
    color: var(--white);
    margin: 0;
}

.jp-description {
    line-height: 1.7;
    margin-bottom: var(--space-3);
    opacity: 0.95;
}

.jp-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.jp-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
}

.jp-feature span {
    font-size: var(--text-xl);
}

.jp-button {
    display: inline-block;
    background: var(--white);
    color: var(--pink-gradient-end);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

.jp-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.jp-footer {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: var(--text-sm);
    opacity: 0.9;
}

.youth-quote {
    background: var(--white);
    border-left: 4px solid var(--accent-orange);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    box-shadow: var(--shadow-md);
    margin-top: var(--space-6);
}

.youth-quote-author {
    margin-top: var(--space-3);
    font-style: normal;
    font-weight: 700;
    color: #0089a8;
}

/* Issues Section (Homepage only) */
.section-issues {
    background: #0089a8;
    color: var(--white);
}

.section-issues .section-badge {
    background: var(--accent-orange);
}

.section-issues .section-title {
    color: var(--white);
}

.section-issues .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3);
}

.issue-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    transition: all 0.2s ease;
}

.issue-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.issue-icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-2);
}

.issue-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.issue-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* News & Press Section (Homepage only) */
.section-news {
    background: var(--gray-50);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.news-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-4);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #0089a8;
}

.news-date {
    font-size: var(--text-sm);
    color: #0089a8;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.news-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-2);
}

.news-title {
    font-size: var(--text-xl);
    color: #0089a8;
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.news-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-3);
    flex-grow: 1;
}

.news-link {
    color: #0089a8;
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
}

.news-link:hover {
    color: #006b7d;
    transform: translateX(4px);
}

.news-card-highlight {
    background: linear-gradient(135deg, #0089a8, #00a3c7);
    color: var(--white);
    border: none;
}

.news-card-highlight .news-title {
    color: var(--white);
}

.news-card-highlight .news-excerpt {
    color: rgba(255, 255, 255, 0.9);
}

.news-card-highlight .news-link {
    color: var(--white);
    font-weight: 700;
}

/* Press Section (Homepage only) */
.press-section {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.press-title {
    font-size: var(--text-3xl);
    color: #0089a8;
    margin-bottom: var(--space-4);
    text-align: center;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4);
}

.press-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.press-item:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.press-logo {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    flex-shrink: 0;
}

.press-info strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 2px;
}

.press-info p {
    color: var(--gray-600);
    font-size: var(--text-sm);
}

.press-contact {
    background: #0089a8;
    color: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}

.press-contact h4 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-1);
}

.press-contact p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-press {
    background: var(--white);
    color: #0089a8;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-press:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Participation Section (Homepage only) */
.participation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.participation-title {
    font-size: var(--text-5xl);
    color: #0089a8;
    margin-bottom: var(--space-3);
}

.participation-text {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.action-btn {
    background: var(--white);
    border: 2px solid #0089a8;
    color: #0089a8;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: #0089a8;
    color: var(--white);
    transform: translateX(4px);
}

.action-arrow {
    font-size: var(--text-xl);
}

.testimonial {
    background: var(--gray-50);
    border-left: 4px solid var(--accent-orange);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    margin-top: var(--space-2);
    font-style: normal;
    font-weight: 600;
    color: #0089a8;
    font-size: var(--text-sm);
}

/* ========================================
   SUBPAGE SPECIFIC STYLES (Kernthemen etc.)
======================================== */

/* Page Hero (Subpages only) */
.page-hero {
    margin-top: 72px;
    background: linear-gradient(135deg, #006b7d 0%, #0089a8 100%);
    padding: var(--space-8) var(--space-4);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.page-hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.page-title {
    font-size: var(--text-5xl);
    color: var(--white);
    margin-bottom: var(--space-3);
}

.page-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    line-height: 1.7;
}

/* Content Wrapper with Sidebar (Subpages) */
.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-8);
    align-items: start;
}

/* Sidebar Navigation (Subpages) */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-nav {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-4);
}

.sidebar-title {
    font-size: var(--text-lg);
    color: #0089a8;
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--gray-200);
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    color: var(--gray-600);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--gray-50);
    color: #0089a8;
    transform: translateX(4px);
}

/* Theme Sections (Kernthemen page) */
.theme-section {
    margin-bottom: var(--space-12);
    scroll-margin-top: 100px;
}

.theme-section:last-child {
    margin-bottom: 0;
}

.theme-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 3px solid #0089a8;
}

.theme-icon {
    width: 80px;
    height: 80px;
    background: #0089a8;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-5xl);
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.theme-header-content h2 {
    font-size: var(--text-4xl);
    color: #0089a8;
    margin-bottom: var(--space-2);
}

.theme-header-content .theme-tagline {
    font-size: var(--text-lg);
    color: var(--gray-600);
    font-weight: 500;
}

.theme-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.theme-text {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.8;
}

.theme-text p {
    margin-bottom: var(--space-3);
}

.theme-text p:last-child {
    margin-bottom: 0;
}

/* Highlight Boxes (Subpages) */
.theme-highlight {
    background: var(--gray-50);
    border-left: 4px solid var(--accent-orange);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin: var(--space-4) 0;
}

.theme-highlight h4 {
    font-size: var(--text-xl);
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.theme-highlight p {
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Stats Grid (Subpages) */
.theme-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-3);
    margin: var(--space-5) 0;
}

.stat-box {
    background: var(--white);
    border: 2px solid #0089a8;
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    text-align: center;
}

.stat-number {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: var(--text-4xl);
    font-weight: 700;
    color: #0089a8;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 600;
}

/* Action Items (Subpages) */
.theme-actions {
    background: linear-gradient(135deg, #0089a8, #00a3c7);
    color: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius-2xl);
    margin-top: var(--space-5);
}

.theme-actions h4 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
    color: var(--white);
}

.action-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.action-list li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
}

.action-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--white);
    color: #0089a8;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA Section (Subpages) */
.cta-section {
    background: linear-gradient(135deg, #006b7d, #0089a8);
    color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    margin-top: var(--space-12);
}

.cta-section h3 {
    font-size: var(--text-4xl);
    color: var(--white);
    margin-bottom: var(--space-3);
}

.cta-section p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--white);
    color: #0089a8;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--text-lg);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

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

@media (max-width: 1024px) {
    /* Homepage adjustments */
    .hero-title {
        font-size: var(--text-5xl);
    }

    .youth-grid,
    .participation-grid {
        grid-template-columns: 1fr;
    }

    /* Subpage adjustments */
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        margin-bottom: var(--space-6);
    }

    .sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: var(--space-3);
    }

    .sidebar-links {
        flex-direction: row;
        white-space: nowrap;
    }

    .page-title {
        font-size: var(--text-4xl);
    }

    /* Global adjustments */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Hide navigation on mobile */
    .nav {
        display: none;
    }

    /* Homepage mobile */
    .hero {
        padding: var(--space-8) var(--space-4) var(--space-6);
        min-height: auto;
    }

    .hero-container {
        padding-bottom: 0;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .countdown {
        position: static;
        margin-top: var(--space-6);
        display: inline-block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .success-grid,
    .team-grid,
    .issues-grid {
        grid-template-columns: 1fr;
    }

    .news-grid,
    .press-grid {
        grid-template-columns: 1fr;
    }

    .press-contact {
        flex-direction: column;
        text-align: center;
    }

    .btn-press {
        width: 100%;
    }

    /* Subpage mobile */
    .page-hero {
        padding: var(--space-6) var(--space-4);
    }

    .page-title {
        font-size: var(--text-3xl);
    }

    .theme-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .theme-header-content h2 {
        font-size: var(--text-3xl);
    }

    .theme-stats {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }

    /* Global mobile */
    .section-title {
        font-size: var(--text-4xl);
    }

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