/* ==============================
   IMPORT GOOGLE FONTS
============================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Merriweather:wght@700&display=swap');

/* ==============================
   GLOBAL: BODY & TEXT
============================== */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #222222;
  background-color: #ffffff;
}

/* ==============================
   HEADINGS
============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #003366;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.75em; }
h4 { font-size: 1.5em; }
h5 { font-size: 1.25em; }
h6 { font-size: 1em; }

/* ==============================
   LINKS
============================== */
a {
  color: #0066cc;
  text-decoration: none;
}
a:hover, a:focus {
  color: #004499;
  text-decoration: underline;
}

/* ==============================
   NAVIGATION / HORIZONTAL MENU
============================== */

/* Header Hintergrund */
.container-header {
  background-color: #ffffff !important;
  border-bottom: 1px solid #ddd;
}

/* Hauptmenü-Links */
.container-header .mod-menu li a {
  color: #003366 !important;
  font-weight: 600;
  padding: 0.5em 1em;
  line-height: 1.2;
  text-decoration: none;
}

/* Hover / aktiv */
.container-header .mod-menu li a:hover,
.container-header .mod-menu li.current > a,
.container-header .mod-menu li.active > a {
  color: #ff6600 !important;
  background-color: transparent !important;
}

/* Untermenüs: nur Grundlayout, JS regelt das Dropdown */
.container-header .mod-menu li ul {
  background-color: #ffffff;
  border: 1px solid #ddd;
  min-width: 200px;
  padding: 0;
  margin: 0;
}

/* Untermenü-Links */
.container-header .mod-menu li ul li a {
  padding: 0.6em 1em;
  color: #003366 !important;
  white-space: nowrap;
}

.container-header .mod-menu li ul li a:hover {
  background-color: #f5f5f5;
  color: #ff6600 !important;
}

/* Mobile Menü Toggle (Burger) */
.navbar-toggler {
  color: #003366 !important;
}
.navbar-toggler-icon {
  filter: invert(20%);
}

/* ==============================
   BUTTONS
============================== */
.btn, button, .button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  color: #ffffff;
  background-color: #0066cc;
  border: none;
  padding: 0.75em 1.5em;
  cursor: pointer;
}
.btn:hover, button:hover, .button:hover {
  background-color: #004499;
}

/* ==============================
   PARAGRAPHS / LISTS / TABLES
============================== */
p { margin-bottom: 1em; font-size: 1em; }
ul, ol { margin-bottom: 1em; }
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
}
table th, table td {
  border: 1px solid #dddddd;
  padding: 0.75em;
}
table th {
  background-color: #f5f5f5;
  color: #003366;
}

/* ==============================
   FOOTER
============================== */
footer, .site-footer {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.875em;
  color: #555555;
  background-color: #f8f8f8;
  padding: 2em 0;
}
