/* --- style.css --- */
/* Bestehenden Inhalt beibehalten und Folgendes ergänzen/anpassen: */

/* --- GRUNDEINSTELLUNGEN & VARIABLEN --- */
:root {
    --primary-blue: #009EE0; 
    --primary-dark: #007bb0;
    --accent-red: #E3000F;
    --accent-red-hover: #c2000d;
    --text-dark: #333333;
    --text-grey: #666666;
    --bg-light: #f4f6f8;
    --white: #ffffff;
    --container-width: 1200px;
    --border-radius: 3px;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--text-dark); line-height: 1.6; background-color: var(--white); font-size: 16px; display: flex; flex-direction: column; min-height: 100vh;}

/* --- TYPOGRAFIE --- */
h1, h2, h3, h4 { font-weight: 700; margin-bottom: 0.5rem; line-height: 1.2; }
h2 { font-size: 2.2rem; text-align: center; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; }
h3 { font-size: 1.3rem; color: var(--primary-blue); } /* H3 angepasst für Lesbarkeit */
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* --- HELFER KLASSEN --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 5rem 0; }
.bg-light { background-color: var(--bg-light); }
.bg-blue { background-color: var(--primary-blue); color: var(--white); }
.bg-blue h3 { color: var(--white); } /* Fix für H3 auf blauem Grund */
.text-white { color: var(--white) !important; }

.divider { height: 4px; width: 80px; background: linear-gradient(90deg, var(--primary-blue) 50%, var(--accent-red) 50%); margin: 1rem auto 2rem; }
.divider-white { background: var(--white); }
.section-intro { text-align: center; max-width: 700px; margin: 0 auto 3rem; color: var(--text-grey); font-size: 1.1rem; }

/* --- WAHLPROGRAMM SPEZIFISCH --- */
.program-point { background: var(--white); border-left: 4px solid var(--primary-blue); padding: 30px; margin-bottom: 30px; box-shadow: var(--shadow); border-radius: var(--border-radius); }
.program-point h3 { margin-bottom: 15px; display: flex; align-items: center; }
.program-point p { margin-bottom: 15px; }
.program-point p:last-child { margin-bottom: 0; }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 12px 30px; border-radius: var(--border-radius); font-weight: 700; text-transform: uppercase; border: none; cursor: pointer; font-size: 0.9rem; transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary { background-color: var(--primary-blue); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 158, 224, 0.3); }
.btn-red { background-color: var(--accent-red); color: var(--white); }
.btn-red:hover { background-color: var(--accent-red-hover); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(227, 0, 15, 0.3); }
.full-width { width: 100%; text-align: center; }

/* --- HEADER --- */
.header-top-bar { background-color: #f8f8f8; border-bottom: 1px solid #eee; padding: 8px 0; font-size: 0.85rem; color: var(--text-grey); }
.top-bar-content { display: flex; justify-content: flex-end; gap: 20px; }
.top-bar-content i { color: var(--primary-blue); margin-right: 5px; }

header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; border-top: 4px solid var(--primary-blue); }

.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: var(--container-width); margin: 0 auto; position: relative; }
.logo img { height: 70px; width: auto; display: block; }
nav ul { display: flex; gap: 30px; }
nav a { font-weight: 500; font-size: 1rem; text-transform: uppercase; position: relative; }
nav a:hover, nav a.active { color: var(--primary-blue); }
nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--accent-red); transition: width 0.3s; }
nav a:hover::after { width: 100%; }
.mobile-menu-toggle { display: none; }

/* --- HERO SECTION --- */
.hero { height: 80vh; min-height: 500px; background: url('IMG_4597.jpeg') no-repeat center center/cover; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0, 158, 224, 0.8), rgba(0, 123, 176, 0.6)); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero h1 { font-size: 4rem; margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.subtitle { display: block; font-size: 1.5rem; font-weight: 400; margin-bottom: 2.5rem; color: #fff; text-shadow: 0 1px 5px rgba(0,0,0,0.8); }
.hero-buttons { display: flex; gap: 15px; justify-content: center; }

/* --- PAGE HEADER (für Unterseiten) --- */
.page-header { background-color: var(--primary-blue); padding: 60px 0; color: white; text-align: center; margin-bottom: 0; }
.page-header h1 { margin: 0; font-size: 2.5rem; }

/* --- AKTUELLES --- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.news-card { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; border-bottom: 3px solid transparent; }
.news-card:hover { transform: translateY(-5px); border-bottom-color: var(--accent-red); }
.news-img-wrapper { position: relative; height: 200px; overflow: hidden; }
.news-img { width: 100%; height: 100%; object-fit: cover; }
.news-badge { position: absolute; top: 15px; right: 15px; background: var(--primary-blue); color: var(--white); padding: 5px 12px; font-size: 0.75rem; font-weight: 700; border-radius: 20px; text-transform: uppercase; }
.news-body { padding: 25px; }
.news-date { display: block; font-size: 0.85rem; color: var(--text-grey); margin-bottom: 10px; }
.news-title { font-size: 1.25rem; color: var(--primary-blue); margin-bottom: 15px; }
.news-hidden-text { display: none; margin-bottom: 15px; margin-top: 15px; padding-top: 15px; border-top: 1px solid #eee; }
.read-more-btn { background: none; border: none; padding: 0; color: var(--text-dark); font-weight: 600; font-size: 0.9rem; cursor: pointer; display: inline-flex; align-items: center; font-family: inherit; }
.read-more-btn i { margin-left: 5px; color: var(--accent-red); transition: transform 0.3s; }

/* --- FRAKTION --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.member-card { background: var(--white); text-align: center; border: 1px solid #eee; border-radius: var(--border-radius); transition: 0.3s; }
.member-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.member-img-container { height: 320px; width: 100%; background-color: #ddd; overflow: hidden; }
.member-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.member-card:hover .member-img { transform: scale(1.05); }
.member-info { padding: 20px; }
.member-name { color: var(--primary-blue); margin-bottom: 5px; font-weight: 700; font-size: 1.2rem;}
.member-role { display: block; font-weight: 700; color: var(--accent-red); font-size: 0.85rem; text-transform: uppercase; margin-bottom: 10px; }
.member-desc { font-size: 0.9rem; color: var(--text-grey); margin-bottom: 15px; }
.member-social a { display: inline-block; color: var(--text-grey); font-size: 1.1rem; margin: 0 5px; }
.member-social a:hover { color: var(--primary-blue); }

/* --- THEMEN --- */
.topics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.topic-item { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); padding: 30px; border-radius: var(--border-radius); text-align: center; transition: 0.3s; }
.topic-item:hover { background: var(--white); transform: translateY(-5px); }
.topic-item:hover h3, .topic-item:hover p, .topic-item:hover .topic-icon { color: var(--text-dark); }
.topic-icon { font-size: 2.5rem; margin-bottom: 15px; color: var(--white); }
.topic-item h3 { margin-bottom: 10px; color: var(--white); }
.topic-item p { font-size: 0.95rem; opacity: 0.9; }

/* --- KONTAKT --- */
.contact-wrapper { display: flex; justify-content: center; padding-bottom: 2rem; }
.contact-info-box { background-color: var(--primary-blue); color: var(--white); padding: 40px; width: 100%; max-width: 800px; border-radius: var(--border-radius); box-shadow: var(--shadow); }
.contact-info-box h3 { color: var(--white); margin-bottom: 25px; text-align: center; font-size: 1.8rem; }
.contact-info-box p { margin-bottom: 30px; opacity: 0.95; text-align: center; font-size: 1.1rem; }
.contact-list { max-width: 500px; margin: 0 auto; }
.contact-list li { display: flex; margin-bottom: 25px; align-items: center; }
.contact-list i { font-size: 1.4rem; margin-right: 20px; color: var(--accent-red); background: var(--white); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.contact-list a { color: var(--white); text-decoration: underline; }

/* --- FOOTER --- */
footer { background-color: #222; color: #bbb; padding: 60px 0 20px; font-size: 0.9rem; margin-top: auto;}
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; border-left: 3px solid var(--primary-blue); padding-left: 10px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--primary-blue); margin-left: 5px; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; color: #666; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-container { display: flex; justify-content: space-between; align-items: center; }
    .logo { margin-bottom: 0; }
    .logo img { height: 50px; } 
    .mobile-menu-toggle { display: block; font-size: 2rem; color: var(--primary-blue); cursor: pointer; padding: 5px; z-index: 1001; }
    nav { position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--white); z-index: 1000; }
    nav ul { display: none; flex-direction: column; gap: 0; width: 100%; box-shadow: 0 10px 15px rgba(0,0,0,0.1); border-top: 2px solid var(--primary-blue); padding: 0; margin: 0; }
    nav ul.active { display: flex; animation: slideDown 0.3s ease forwards; }
    nav li { width: 100%; text-align: center; }
    nav a { display: block; padding: 15px 0; border-bottom: 1px solid #f0f0f0; width: 100%; }
    nav a::after { display: none; }
    nav a:hover { background-color: var(--bg-light); color: var(--primary-blue); }
    .hero h1 { font-size: 2.2rem; }
    .subtitle { font-size: 1rem; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-col h4 { border-left: none; padding-left: 0; border-bottom: 2px solid var(--primary-blue); display: inline-block; padding-bottom: 5px;}
    .contact-info-box { padding: 25px; }
    .contact-info-box h3 { font-size: 1.5rem; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}