/* Globale Variablen */
:root {
    --bg-black: #050505;
    --bg-darkblue: #0b1120;
    --text-white: #f8fafc;
    --text-black: #0f172a;
    --accent-blue: #3b82f6;
    --accent-blue-hover: #2563eb;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { line-height: 1.6; overflow-x: hidden; }

/* !important hinzugefuegt damit bg-white, bg-darkblue wirklich immer ueberschreiben */
.bg-black { background-color: var(--bg-black) !important; color: var(--text-white) !important; }
.bg-darkblue { background-color: var(--bg-darkblue) !important; color: var(--text-white) !important; }
.bg-white { background-color: #ffffff !important; color: var(--text-black) !important; }
.text-white { color: var(--text-white) !important; }
.text-black { color: var(--text-black) !important; }
.text-blue { color: var(--accent-blue) !important; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.fullscreen { min-height: 100vh; }
.d-flex-center { display: flex; align-items: center; justify-content: center; flex-direction: column; }
.pt-nav { padding-top: 80px; }
.hero-title { font-size: 5rem; font-weight: 900; line-height: 1.1; letter-spacing: -2px; }
.massive-title { font-size: 4rem; font-weight: 900; text-transform: uppercase; letter-spacing: 5px; }
.section-title { font-size: 3rem; font-weight: 700; margin-bottom: 2rem; position: relative; }

/* Grid und Flex anpassen */
.row { display: flex; flex-wrap: wrap; margin: -15px; align-items: stretch; }
.col-6 { width: 50%; padding: 15px; display: flex; flex-direction: column; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.align-items-center { align-items: center; }

/* Navigation */
.navbar {
    position: fixed; top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
}
.navbar .logo { font-size: 2rem; font-weight: 900; color: var(--text-white); }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: 0.3s; }
.nav-links a:hover { color: var(--accent-blue) !important; }

/* Hamburger Menu CSS */
.menu-toggle { display: none; font-size: 2rem; cursor: pointer; color: var(--text-white); }
@media (max-width: 768px) { 
    .menu-toggle { display: block; }
    .nav-links { 
        position: absolute; top: 100%; left: 0; width: 100%; 
        background: rgba(5, 5, 5, 0.98); border-top: 1px solid rgba(255,255,255,0.1);
        flex-direction: column; align-items: center; padding: 20px 0; gap: 20px;
        transform: translateY(-150%); transition: transform 0.3s ease; z-index: -1; 
        opacity: 0; pointer-events: none;
    }
    .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

.scroll-indicator { margin-top: 50px; opacity: 0.7; }
.icon-container { margin-top: 30px; }
.card { padding: 40px 30px; border-radius: 15px; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(255,255,255,0.1); }
.card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); border-color: var(--accent-blue); }

.info-card { padding: 30px; border-radius: 15px; background: #f8fafc; }
.info-card p { font-size: 1.1rem; margin-bottom: 15px; }
.rounded-img { width: 100%; border-radius: 20px; }
.shadow { box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.image-hover { transition: transform 0.5s ease; }
.image-hover:hover { transform: scale(1.03); }
.timeline { border-left: 3px solid var(--accent-blue); padding-left: 20px; margin-top: 20px; }
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item::before { content: ''; position: absolute; left: -29px; top: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--accent-blue); border: 4px solid white; }
.timeline-item h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 5px; }
.timeline-item .date { display: inline-block; padding: 5px 10px; background: var(--bg-darkblue); color: white; border-radius: 5px; font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; }
.btn-blue { background: var(--accent-blue); color: white; padding: 15px 30px; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-blue:hover { background: var(--accent-blue-hover); }
.text-center { text-align: center; } .mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 1.5rem; } .mt-5 { margin-top: 3rem; } .mb-3 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 1.5rem; } .mb-5 { margin-bottom: 3rem; } .w-100 { width: 100%; } .rounded { border-radius: 15px; }
@media (max-width: 768px) { .col-6 { width: 100%; } .hero-title { font-size: 3rem; } .massive-title { font-size: 2.5rem; } }

/* Spezifische Kontaktseiten-Styles */
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link { display: flex; align-items: center; text-decoration: none; padding: 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.05); }
.contact-link:hover { background: rgba(59, 130, 246, 0.15); transform: translateX(8px); border-color: var(--accent-blue); }
.contact-icon { background: var(--accent-blue); color: #fff; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; font-size: 1.2rem; transition: transform 0.3s; }
.contact-link:hover .contact-icon { transform: scale(1.1) rotate(5deg); }
.contact-link span { font-size: 1.05rem; font-weight: 500; color: #fff; }
.map-container { overflow: hidden; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
