/* --- Variablen --- */
:root {
    --color-blue: #003399;      /* Official Blue */
    --color-blue-dark: #002266;
    --color-gold: #ffcc00;      /* German Flag Gold */
    --color-grey-light: #f4f4f4;
    --color-text: #333333;
    --color-white: #ffffff;
    
    --font-main: 'Roboto', sans-serif;
    
    --radius: 4px;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    background-color: var(--color-grey-light);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* --- Official Bar --- */
.official-bar { background-color: var(--color-text); color: #ccc; font-size: 0.8rem; padding: 5px 0; }
.official-bar .container { display: flex; justify-content: space-between; }
.lang-switch a { color: #fff; margin-left: 10px; font-weight: bold; }
.lang-switch a.active { color: var(--color-gold); }

/* --- Header --- */
.info-header {
    background-color: var(--color-white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--color-gold);
    position: sticky; top: 0; z-index: 1000;
}

.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 700; color: var(--color-text); display: flex; flex-direction: column; line-height: 1; }
.blue-dot { color: var(--color-blue); }
.subtitle { font-size: 0.7rem; font-weight: 400; color: #666; letter-spacing: 1px; margin-top: 3px; }

.clean-nav ul { display: flex; gap: 30px; align-items: center; }
.clean-nav a { font-weight: 500; font-size: 0.95rem; color: var(--color-text); }
.clean-nav a:hover, .clean-nav a.active { color: var(--color-blue); }

.btn-blue { background-color: var(--color-blue); color: var(--color-white) !important; padding: 8px 20px; border-radius: var(--radius); font-weight: bold; }
.btn-blue:hover { background-color: var(--color-blue-dark); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 3px; background-color: var(--color-text); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease; border-left: 5px solid var(--color-blue);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid #eee; padding-bottom: 10px; }

/* --- Hero Search --- */
.hero-search {
    background-color: var(--color-blue);
    padding: 80px 0;
    text-align: center;
    color: var(--color-white);
}
.hero-container { max-width: 700px; margin: 0 auto; padding: 0 20px; }
.hero-search h1 { font-size: 2.5rem; margin-bottom: 10px; }
.hero-search p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

.search-box { display: flex; background: var(--color-white); padding: 5px; border-radius: var(--radius); margin-bottom: 20px; }
.search-box input { flex: 1; border: none; padding: 15px; font-size: 1rem; outline: none; border-radius: var(--radius); }
.search-box button { background-color: var(--color-gold); color: var(--color-text); border: none; padding: 0 30px; font-weight: bold; border-radius: var(--radius); cursor: pointer; }
.search-box button:hover { background-color: #e6b800; }

.quick-links { font-size: 0.9rem; }
.quick-links a { color: var(--color-gold); text-decoration: underline; margin-left: 10px; }

/* --- Topic Grid --- */
.section-padding { padding: 60px 0; }
.section-header { margin-bottom: 40px; }
.section-header h2 { font-size: 2rem; color: var(--color-text); margin-bottom: 10px; }
.line-blue { width: 50px; height: 4px; background-color: var(--color-blue); }

.topic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.topic-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 3px solid transparent; transition: 0.3s; }
.topic-card:hover { transform: translateY(-5px); border-top-color: var(--color-blue); }
.icon { font-size: 2.5rem; margin-bottom: 15px; }
.topic-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--color-blue); }
.topic-card p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }
.topic-card a { color: var(--color-text); font-weight: bold; font-size: 0.9rem; }

/* --- Timeline (Guide) --- */
.page-title { text-align: center; margin-bottom: 50px; }
.page-title h1 { font-size: 2.5rem; color: var(--color-blue); }

.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline-item { display: flex; gap: 20px; margin-bottom: 40px; }
.step-number { width: 40px; height: 40px; background-color: var(--color-blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
.step-content h3 { color: var(--color-text); margin-bottom: 10px; }
.info-box { background-color: #fff3cd; padding: 20px; border-radius: var(--radius); margin-top: 40px; border: 1px solid #ffeeba; }

/* --- Stories --- */
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.story-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 4px solid var(--color-gold); }
.avatar-placeholder { width: 50px; height: 50px; background-color: var(--color-blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 15px; }
.story-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.role { font-size: 0.85rem; color: #777; margin-bottom: 15px; display: block; }
.quote { font-style: italic; color: #555; }

/* --- Contact & Banner --- */
.checklist-banner { background-color: var(--color-white); padding: 50px 0; border: 1px solid #ddd; margin-top: 50px; }
.banner-content { display: flex; justify-content: space-between; align-items: center; }
.banner-content h3 { font-size: 1.5rem; margin-bottom: 5px; }
.btn-outline { border: 2px solid var(--color-blue); color: var(--color-blue); padding: 10px 25px; border-radius: var(--radius); font-weight: bold; transition: 0.3s; }
.btn-outline:hover { background-color: var(--color-blue); color: #fff; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.faq-link { background-color: var(--color-white); padding: 20px; border-radius: var(--radius); margin-top: 20px; border: 1px solid #eee; }
.official-form { background-color: var(--color-white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: var(--radius); font-family: var(--font-main); }
.btn-submit { width: 100%; background-color: var(--color-blue); color: #fff; padding: 15px; border: none; border-radius: var(--radius); font-weight: bold; cursor: pointer; }
.btn-submit:hover { background-color: var(--color-blue-dark); }

/* --- Legal --- */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; box-shadow: var(--shadow); }
.legal-doc h1 { color: var(--color-blue); margin-bottom: 20px; }
.legal-doc h3 { margin-top: 30px; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

/* --- Footer --- */
.info-footer { background-color: var(--color-white); border-top: 1px solid #ddd; padding: 50px 0; margin-top: auto; text-align: center; }
.f-brand h4 { color: var(--color-blue); font-weight: 700; margin-bottom: 5px; }
.f-links a { color: #666; margin: 0 15px; font-size: 0.9rem; }
.copyright { margin-top: 20px; font-size: 0.8rem; color: #999; }

@media (max-width: 992px) {
    .clean-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-search h1 { font-size: 2rem; }
    .search-box { flex-direction: column; }
    .banner-content, .contact-wrapper { flex-direction: column; gap: 20px; text-align: center; }
    .contact-wrapper { text-align: left; grid-template-columns: 1fr; }
}