@charset "UTF-8";

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans_Var.woff2") format('woff2');
  font-weight: 100 900;
  font-style: normal;
}

.header {
  padding: 10px;
  text-align: center;
  background: #1455C0;
  color: white;
  font-size: 30px;
  background-image: url("../images/lejsonnenaufgangcrop.jpeg");
  background-size: cover;        /* fills the area */
  background-position: center;   /* keeps center visible */
  background-repeat: no-repeat;
  position: relative;
  color: white;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
}

.header * {
  position: relative; /* bring text above overlay */
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  background-color: #E7E7E7;
}

main {
	background-color: white;
}

.webtitle {
  font-weight: 900;
	font-size: 40px;
	margin-top: 0px;
	margin-bottom: 5px;
}

.websubtitle {
	font-size: 20px;
	margin-top: 0px;
	margin-bottom: 10px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}



.footer {
	padding: 10px;
	text-align: center;
	background: lightgray;
	
}



main {
	padding: 5px;
}

h1, h2, p {
  margin: 0;
}

h1 {
  margin-bottom: 5px;
}

h2 {
  margin-bottom: 5px;
}

p {
  margin-top: 0;
  display: block;
}

.defaulttext {
	padding-top: 1px;
	padding-bottom: 1px;
}

.smol {
	font-size: 10px;
}

.interlink {
	
}

.exterlink {
	
}
/*NAVIGATION DESIGN*/

/* =========================
   NAVIGATION
========================= */

.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #333333;
  font-size: 16px;

  display: flex;
  justify-content: center;

  position: relative;
  z-index: 1000;

  overflow: visible; /* IMPORTANT: allows dropdown to extend */
}

.nav li {
  position: relative; /* needed for absolute dropdown positioning */
}

.nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 10px 14px;
  text-decoration: none;
}

.nav li a:hover {
  background-color: #111111;
}

.nav li a.active {
  background-color: #ffffff;
  color: #333333;
}

/* =========================
   DROPDOWN
========================= */

.nav .dropdown-content {
  display: none;
  position: absolute;

  top: 100%;
  left: 0;

  list-style: none;
  margin: 0;
  padding: 0;

  min-width: 200px;
  background-color: #333333;

  z-index: 2000;
}

/* Dropdown links */
.nav .dropdown-content li a {
  display: block;
  padding: 10px 14px;
  color: white;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
}

/* Hover effect inside dropdown */
.nav .dropdown-content li a:hover {
  background-color: #111111;
}

/* Show dropdown on hover */
.nav .dropdown:hover .dropdown-content {
  display: block;
}

.nav .dropdown-content li a.active {
  background-color: #1455C0;
  color: white;
}

.nav .dropdown-content li a.active:hover {
  background-color: #0f4499;
  color: white;
}

/*PAYPAL DONATION LINK DESIGN*/

.paypal-link {
  font-weight: bold;
  text-decoration: none;
}

.paypal-link .pay {
  color: blue; /* deep but not harsh */
}

.paypal-link .pal {
  color: dodgerblue; /* softer light blue */
}

.paypal-link:hover {
  opacity: 0.8;
}

.headingtwo {
	padding-top: 10px;
}

/*TABLE FORMATTING FOR DEFAULT TABLE STYLE*/

.classictable {
  border: 2px solid black;
  border-collapse: collapse;
}

/* HEADER */
.classictable th {
  background-color: #e0e0e0;
  border: 2px solid black;   /* restore full bold border */
  padding: 8px;
  text-align: left;
}

/* CELLS */
.classictable td {
  border: 1px solid black;
  border-left: 2px solid black;   /* bold verticals */
  border-right: 2px solid black;
  padding: 8px;
}

/* =========================
   JUMPLIST (anchor navigation)
========================= */

.jumplist {
  list-style: none;
  margin: 0;              /* no space above/below */
  padding: 0;             /* no left indent */

  display: flex;
  flex-wrap: wrap;
  gap: 8px;               /* spacing between items */
}

/* list items (optional, keeps it clean) */
.jumplist li {
  margin: 0;
  padding: 0;
}

/* links */
.jumplist a {
  display: block;
  text-decoration: none;

  color: #1455C0;
  background-color: #e0e0e0;

  padding: 6px 10px;
  border-radius: 4px;

  font-size: 14px;
}

/* hover */
.jumplist a:hover {
  background-color: #1455C0;
  color: white;
}

/* optional: active/current section (if you ever use it) */
.jumplist a.active {
  background-color: #1455C0;
  color: white;
}