body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

hr {
    border: none;
    border-top: 2px solid #0078d4;
    margin: 20px 0;
}

.hero-header {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: #000 url('/assets/img/background.png');
    background-size: cover;
    background-position: center top;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.header-bar,
.hero-content {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    box-sizing: border-box;
    padding: 10px 0;
    border-radius: 16px;
    top: 0;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo {
    height: 30px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 18px;
}

.nav-btn {
    background: #181c20;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn:hover,
.nav-btn:focus {
    background: #0078d4;
    color: #fff;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 110px;
    padding-left: 40px;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: bold;
    margin: 0 0 16px 0;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-content h2 {
    font-size: 40px;
    font-weight: 500;
    margin: 0 0 32px 0;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #0078d4;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    margin-top: 16px;
    border: none;
}

.hero-btn:hover {
    background: #005fa3;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}

.main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0 20px;
    box-sizing: border-box;
    flex: 1 0 auto;
}

.section {
    margin-bottom: 64px;
}

.stationen-section h2,
.ueberuns-section h2,
.kontakt-section h2 {
    font-size: 36px;
    text-align: center;
    color: #0078d4;
    border-bottom: solid 2px #0078d4;
    margin-bottom: 32px;
}

.stationen-boxen {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.station-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
    padding: 32px 24px 24px 24px;
    flex: 1 1 300px;
    min-width: 260px;
    max-width: 340px;
    height: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.15s ease;
}

.station-box:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(0, 120, 212, 0.10);
}

.station-img {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.station-img img {
    width: 250px;
    height: auto;
    object-fit: cover;
}

.station-link,
.link {
    margin-top: auto;
    color: #0078d4;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.station-link:hover,
.link:hover {
    color: #005fa3;
}

.station-box h3 {
    margin-top: 0;
    color: #0078d4;
}

.ueberuns-flex {
    display: flex;
    gap: 0;
    align-items: stretch;
    flex-wrap: wrap;
}

.ueberuns-img {
    padding: 0;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(135deg, #0078d4 60%, #005fa3 100%);
    box-shadow: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
}

.ueberuns-img img {
    width: 250px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transform: rotate(-90deg);
}

.ueberuns-box {
    background: #fff;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
    padding: 32px 24px;
    max-width: 100%;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ueberuns-list {
    margin: 24px 0 0 0;
    padding: 0;
    list-style: none;
}

.ueberuns-list li {
    margin-bottom: 10px;
    color: #222;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ueberuns-list i {
    color: #0078d4;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0078d4 60%, #005fa3 100%);
    border-radius: 22px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
    padding: 64px 24px;
    margin-bottom: 64px;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 32px 0;
    letter-spacing: 1px;
    color: #fff;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: #fff;
    color: #0078d4;
    font-size: 22px;
    font-weight: 700;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    border: none;
    margin-top: 8px;
}

.cta-btn:hover {
    background: #e6f0fa;
    color: #005fa3;
    transform: translateY(-2px) scale(1.03);
}

.footer {
    background: #111;
    color: #fff;
    padding: 48px 0 24px 0;
    margin-top: 64px;
    flex-shrink: 0;
}

.footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 16px;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    margin-bottom: 24px;
}

.footer-col h3 {
    margin-top: 0;
    color: #0078d4;
    border-bottom: solid 2px #0078d4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul a:hover {
    color: #0078d4;
}

.footer-bottom {
    text-align: center;
    color: #aaa;
    font-size: 15px;
    margin-top: 24px;
    letter-spacing: 2px;
    border-top: 1px solid #222;
    padding-top: 16px;
}

/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Header-Bar und Logo Animation */
.header-bar, .logo {
    opacity: 0;
    animation: fadeIn 1s ease 0.2s forwards;
}

.logo {
    animation-delay: 0.5s;
}

/* Stationen-Boxen Animation */
.stationen-boxen .station-box {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(.23,1.02,.62,.98) forwards;
}
.stationen-boxen .station-box:nth-child(1) { animation-delay: 0.2s; }
.stationen-boxen .station-box:nth-child(2) { animation-delay: 0.35s; }
.stationen-boxen .station-box:nth-child(3) { animation-delay: 0.5s; }
.stationen-boxen .station-box:nth-child(4) { animation-delay: 0.65s; }
.stationen-boxen .station-box:nth-child(5) { animation-delay: 0.8s; }
.stationen-boxen .station-box:nth-child(6) { animation-delay: 0.95s; }

/* Buttons sanfte Animation */
.hero-btn, .cta-btn, .nav-btn {
    /* ...existing code... */
    transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px 0 rgba(0, 120, 212, 0.08);
}
.hero-btn:hover, .cta-btn:hover, .nav-btn:hover {
    /* ...existing code... */
    box-shadow: 0 6px 24px 0 rgba(0, 120, 212, 0.18);
    transform: translateY(-2px) scale(1.06);
}

/* Footer Animation */
.footer {
    opacity: 0;
    animation: fadeIn 1.2s ease 0.8s forwards;
}

/* Allgemeine Übergänge */
a, .link, .station-link {
    transition: color 0.2s, background 0.2s;
}

/* Post-Header Animation */
.post-header {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Text Section Animation */
.text {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

hr {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.post-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.post-footer {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

@media (max-width: 1300px) {

    .header-bar,
    .hero-content,
    .main-content,
    .footer-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .ueberuns-flex {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .ueberuns-img {
        border-radius: 18px 18px 0 0;
        width: 100%;
        min-width: unset;
        height: 120px;
        justify-content: center;
    }

    .ueberuns-img img {
        width: 200px;
        height: auto;
        transform: rotate(0deg);
    }

    .ueberuns-box {
        border-radius: 0 0 18px 18px;
    }

    .header-bar {
        flex-direction: column;
        gap: 18px;
        margin-top: 18px;
        padding: 0 8px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .hero-content {
        margin-top: 40px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }
}


.text {
    line-height: 1.6;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.post-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 36px;
    margin: 0 0 10px 0;
    color: #0078d4;
}

.post-header p {
    font-size: 18px;
    color: #4f5961;
    margin: 0;
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.post-content {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.post-content h2 {
    font-size: 28px;
    color: #0078d4;
    margin-top: 30px;
}

.post-footer {
    margin-top: 100px;
    border-top: solid 1px #0078d4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    color: #4f5961;
}

.post-footer i {
    margin-right: 10px;
    color: #0078d4;
}

