/* ==================================================
RESET & BASIS
================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: "Source Sans Pro", sans-serif;
font-size: 20px;
line-height: 1.6;
color: #454545;
background: linear-gradient(135deg, #c0c0c0 0%, #757575 100%);
min-height: 100vh;
}

/* ==================================================
LAYOUT
================================================== */

.container {
max-width: 1400px;
margin: 0 auto;
background: #ffffff;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content {
padding: 3rem 2rem;
}

.center {
text-align: center;
}

/* ==================================================
HEADER
================================================== */

header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            text-align: center;
            padding: 2rem 0 0; 
            }


h1 {
font-family: "Playfair Display", serif;
font-size: 3rem;
font-weight: 700;
letter-spacing: 2px;
margin-bottom: 0.5rem;
}

h1 a {
color: #ffffff;
text-decoration: none;
}

h1 a:hover {
opacity: 0.8;
}

.subtitle {
font-size: 1.1rem;
font-weight: 300;
opacity: 0.9;
}

.header-image {
width: 100%;
display: block;
}

/* ==================================================
BLOCKQUOTE KREATIV
================================================== */

blockquote {
            background: #f9f9f9;
            border-left: 10px solid #ccc;
            margin: 0.8em 10px;
            padding: 0.8em 20px;
            quotes: "“" "”" "“" "”";
        }

        blockquote:before {
            color: #ccc;
            content: open-quote;
            font-size: 4em;
            line-height: 0.05em;
            margin-right: 0.25em;
            vertical-align: -0.4em;
        }

        blockquote p {
            margin: 0;
            display: block;
        }


/* ==================================================
NAVIGATION
================================================== */

nav {
background: #2a5298;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
margin-top: 2rem; /* Abstand zwischen Menü und Textzeile darüber */
}

nav ul {
list-style: none;
display: flex;
justify-content: center;
flex-wrap: wrap;
}

nav a {
display: block;
padding: 1rem 1.2rem;
color: #ffffff;
text-decoration: none;
font-size: 0.95rem;
transition: background 0.3s, transform 0.2s;
}

nav a:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}

nav .current_page_item a {
background: rgba(255, 255, 255, 0.2);
font-weight: 600;
}

/* ==================================================
TYPOGRAFIE
================================================== */

h4 {
font-family: "Playfair Display", serif;
font-size: 1.5rem;
color: #1e3c72;
text-align: center;
margin-bottom: 2rem;
padding-bottom: 2rem;
position: relative;
}

h2 {
font-family: "Playfair Display", serif;
font-size: 2.5rem;
color: #1e3c72;
text-align: center;
margin-bottom: 2rem;
padding-bottom: 2rem;
position: relative;
}

h2::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: linear-gradient(90deg, #667eea, #764ba2);
}

.section-title {
text-align: center;
font-size: 1.4rem;
font-weight: 600;
margin: 2rem 0 1rem;
color: #1e3c72;
}

/* ==================================================
BOXEN
================================================== */

.box {
max-width: 1000px;
width: 90%;
margin: 2rem auto;
background: #ffffff;
border: 1px solid #ccc;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.box h2 {
font-size: 26px;
margin-bottom: 15px;
}

.box a {
color: #2a5298;
text-decoration: none;
}

.box a:hover {
color: #667eea;
}

.box ul {
list-style: none;
}

.box ul li {
padding: 0.4rem 0;
border-bottom: 1px solid #eee;
}

.box ul li:last-child {
border-bottom: none;
}

/* ==================================================
GRIDS & MEDIEN
================================================== */

.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}

.grid img {
width: 100%;
display: block;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;   /* <<< begrenzt die Größe */
    margin: 3rem auto;  /* <<< Abstand + Zentrierung */
}

.intro-grid img,
.intro-grid video {
    width: 100%;
    max-height: 300px;  /* <<< Bilder/Videos kleiner */
    object-fit: cover;
    border-radius: 8px;
}

/*.intro-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
}

.intro-grid img,
.intro-grid video {
width: 100%;
border-radius: 6px;
}*/

/* ==================================================
TABELLEN
================================================== */

table {
width: 100%;
border-collapse: collapse;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

th {
background: linear-gradient(135deg, #1e3c72, #2a5298);
color: #ffffff;
padding: 1.2rem;
text-align: left;
}

td {
padding: 1rem;
border-bottom: 1px solid #e5e5e5;
}

tr:hover {
background: #f8f9fa;
}

/* ==================================================
Logo
================================================== */

.logo h1 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.logo h3 {
    line-height: 1.6;   /* <<< mehr Luft */
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

/* ==================================================
FOOTER
================================================== */

footer {
background: #1e3c72;
color: #ffffff;
text-align: center;
padding: 2rem;
font-size: 0.9rem;
}

footer a {
color: #a0b3e8;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}

/* ==================================================
RESPONSIVE
================================================== */

@media (max-width: 850px) {
.intro-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
h1 {
font-size: 2rem;
}

```
h2 {
    font-size: 1.8rem;
}

nav ul {
    flex-direction: column;
}
```

}

@media (max-width: 500px) {
.content {
padding: 2rem 1rem;
}
}
