 /* ---------------------------------------------
   Globale Variablen
--------------------------------------------- */
:root {
    --accent: #b3d9ff;
    --bg-dark: #0b2247;
    --text-light: #ffffff;
}

/* ---------------------------------------------
   Globaler Seitenstil
--------------------------------------------- */
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* ---------------------------------------------
   Header / Logo / Navigation
--------------------------------------------- */

/* Header-Bereich */
header {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Firmenname */
.company-name {
    font-size: 3em;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-left: 20px;
    flex-grow: 1;
}

/* EINHEITLICHE NAVIGATION – NUR DIESE BLEIBT */
.navbar {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    padding: 0.75rem 0;
    z-index: 50;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0;
}

.navbar a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color 0.25s ease;
}

.navbar a:hover,
.navbar a:focus {
    color: var(--accent);
}

/* Unterstreichung beim Hover */
.navbar a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.navbar a:hover::after,
.navbar a:focus::after {
    width: 100%;
}

/* ---------------------------------------------
   Hauptinhalt
--------------------------------------------- */
main {
    padding: 40px;
}

/* Slogan-Texte */
.slogan-section p {
    font-size: 1.5em;
    font-style: italic;
    margin: 20px 0;
    padding: 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    color: var(--text-light);
}

/* Illustration */
.illustration {
    margin-top: 50px;
}

/* ---------------------------------------------
   Logo / Symbolbereich
--------------------------------------------- */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    color: var(--accent);
    font-size: 1.5em;
    font-weight: bold;
}

.logo-service {
    color: var(--text-light);
    font-size: 1.2em;
    display: block;
    line-height: 1;
}

.arrow {
    font-size: 3em;
    color: var(--accent);
    margin: 0 15px;
}

/* ---------------------------------------------
   Footer
--------------------------------------------- */
footer {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.5);
}
