/* -----------------------------------------------------
   1. Fonts & Global Settings
------------------------------------------------------ */

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2'),
         url('fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.woff2') format('woff2'),
         url('fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* -----------------------------------------------------
   2. Links
------------------------------------------------------ */

a {
    color: #0056A6 !important; /* Hauptfarbe Blau */
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #003F7D !important; /* Dunkleres Blau */
    text-decoration: underline;
}

/* -----------------------------------------------------
   3. Header & Navigation
------------------------------------------------------ */

header {
    background: #003F7D; /* Dunkelblau */
    color: white;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    display: block;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    font-weight: bold;
    color: white !important;
}

.nav-links li a:hover {
    color: #66A3FF !important;
}

/* Hamburger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #66A3FF;
    margin: 4px;
    transition: all 0.3s ease;
}

/* Animation für Hamburger */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.burger.toggle .line2 {
    opacity: 0;
}
.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* -----------------------------------------------------
   4. Main Content
------------------------------------------------------ */

main {
    flex: 1;
    padding: 120px 15px 100px;
}

/* Sections */
section {
    margin: 80px auto;
    padding: 40px;
    background: white;
    max-width: 850px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}

h1, h2 {
    font-weight: bold;
    color: #003F7D;
}

h1 {
    font-size: 2.6em;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.0em;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    font-size: 1.1em;
}

/* Images */
img {
    display: block;
    max-width: 100%;
    border-radius: 10px;
    margin: 15px auto;
    transition: transform 0.25s ease;
}

img:hover {
    transform: scale(1.05);
}

/* -----------------------------------------------------
   5. Intro Section
------------------------------------------------------ */

.intro-section {
    background: linear-gradient(135deg, #e3f0ff, #ffffff);
    border-left: 6px solid #0056A6;
    text-align: center;
    padding: 70px 30px;
}

.intro-section h1 {
    color: #0056A6;
}

.intro-section p {
    font-size: 1.25em;
}

/* -----------------------------------------------------
   6. Kontakt
------------------------------------------------------ */

/* Kontaktbereich ohne Karte */
.kontakt-wrapper {
    display: block;       /* statt nebeneinander */
}

.map-container,
.map-hinweis {
    display: none;        /* vollständig ausblenden */
}
/* -----------------------------------------------------
   7. Footer – zentriert, über blauem Rand
------------------------------------------------------ */

footer {
    position: fixed;
    bottom: 8px; /* sitzt exakt über dem blauen Balken */
    left: 0;
    width: 100%;
    background: rgba(51, 51, 51, 0.95);
    color: white;
    padding: 12px 0;
    text-align: center;
    z-index: 1500;
}

footer p {
    margin: 0;
    padding: 0;
    text-align: center;
}

footer a {
    color: #66A3FF !important;
    margin: 0 6px;
}