/* Allgemeines Layout */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    margin: 40px;
    background-color: #fffff;
    color: #fffff;
}

/* Überschriften */
h1 {
    color:white;
    font-size: 2.2em;
    margin-bottom: 0.4em;
    border-bottom: 3px solid white;
    padding-bottom: 0.3em;
}

h2 {
    color:white;
    font-size: 1.6em;
    margin-top: 1.2em;
}

h3 {
    color: #fffff;
    font-size: 1.3em;
    margin-top: 1em;
  

}

/* Listen */
ul {
    margin-left: 1.2em;
}

/* Links */
a {
    color: #0078d7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* andere Seite */
footer {
    margin-top: 2em;
    text-align: center;
    font-size: 0.95em;
    color: #444;
}
/* Tabelle für Glossar-Einträge */
.glossar-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.glossar-tabelle td {
    vertical-align: top;
    border: none;
    padding: 10px;
}

/* Textspalte */
.glossar-text {
    width: 70%;
    text-align: justify;
}

/* Bildspalte */
.glossar-bildfeld {
    width: 30%;
    text-align: center;
}

/* Bildgestaltung */
.glossar-bild {
    max-width: 180px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    margin-top: 5px;
}

/* menu */
body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f4f7ff;
}


.topmenu{
width:100%;
background:#1d4ed8; 
padding:1.2rem 2rem; 
box-shadow:0 3px 20px rgba(0,0,0,0.15);
}


.topmenu ul{
list-style:none;
display:flex;
justify-content:center; 
gap:2.5rem; 
margin:0;
padding:0;
}


.topmenu a{
color:white;
font-size:1.2rem;
font-weight:600;
text-decoration:none;
transition:0.25s;
padding:0.3rem 0.6rem;
border-radius:6px;
}


.topmenu a:hover{
background:rgba(255,255,255,0.25);
backdrop-filter:blur(4px);
}

/* responsive */
@media (max-width:820px){
.nav-toggle{display:inline-flex}
.main-nav{
position:absolute;
left:0; right:0; top:64px;
background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,252,255,0.9));
margin:0 auto; padding:1rem; border-radius:14px; width:calc(100% - 2rem);
transform-origin:top center;
box-shadow:0 12px 30px rgba(10,20,40,0.06);
max-height:0; overflow:hidden; transition:max-height .28s ease, opacity .2s ease;
}
.main-nav.open{ max-height:400px }
.main-nav ul{ flex-direction:column; gap:0.5rem }
}



.panel{ max-width:1100px; margin:2rem auto; padding:1.4rem; background:white; border-radius:12px; box-shadow:0 8px 20px rgba(10,30,60,0.04) }
.panel h1,h2{ color:var(--blue-700); margin-top:0 }



:focus{outline-offset:3px}

