/* Grundstil */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body {
  width: 100%;
  height: auto;       
  overflow: visible;  
  font-family: Arial, sans-serif;
  background-color: #fcf3cf; 
  color: #000000; 
}*/

body {
  font-family: Arial, sans-serif;
  background-color: #fcf3cf;
}

/* Burger-Icon */
.burger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Navigation */
.menu-toggle {
  display: none;
}

.dropdown-toggle {
  display: none;
}

.nav {
  background-color: #F0E68C;
  position: relative;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a,
.dropdown-label {
  text-decoration: none;
  padding: 0.5rem;
  display: block;
  font-weight: bold;
  color: #641e16;
  background-color: #F0E68C;
  cursor: pointer;
}

.nav-menu li a {
  background-color: #F0E68C;
  color: #641e16; /* Menütexte */
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem;
}

.nav-menu a:hover,
.dropdown-label:hover {
  background-color: #DAA520;
  color: #fff;
}

.nav-menu li a:hover {
  text-decoration: underline;
}

/* Dropdown-Menü */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFF8DC;
  color: #DAA520; 
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1;
}

.dropdown-content li a {
  padding: 0.5rem;
  color: #641e16;  /* Unter-Menütexte */ 
}

.dropdown:hover .dropdown-content {
  display: block;
}


header {
  width: 100%;
  height: auto;      
  overflow: visible;  
  background-color: #F0E68C; /* Header-Hintergrund */
  color: #000000;  /* Header-Schrift */
  padding: 1rem;
  position: relative;
  text-align: center;
}

    .container {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      max-width: 800px;
      margin: 20px auto;
      flex-wrap: wrap;
    }

    .container img {
      width: 122px;
      height: auto;
      border-radius: 8px;
      transition: width 0.3s ease;
    }

    .text {
      flex: 1;
      min-width: 250px;
      font-family: sans-serif;
    }

.daten-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: Arial, sans-serif;
}

.daten-zeile {
  display: flex;
}

.begriff {
  width: 300px;
  font-weight: bold;
}

.erklaerung {
  flex: 1;
}

header h1 {
  margin-bottom: 0.5rem;
}

/* Main Columns */
main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
} 

.columns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.columns article {
  flex: 1 1 300px;
  background-color: #fcf3cf;
  color: #641e16;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}

article ul > li > ul {
  list-style-type: square;
}

.customIndent {
  padding-left: clamp(0.5rem, 5vw, 1.5rem);
}
.customIndent2 {
  padding-left: clamp(0.5rem, 5vw, 1.5rem);
}

/* Footer */
/*footer {
  background-color: #F0E68C;
  color: #000000;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}*/
.footer {
  display: flex;
  font-size: 0.75rem;
  justify-content: center;
  /* justify-content: space-between;*/
  background-color: #F0E68C;
  color: #641e16;
  padding: 20px;
}

.footer-column {
  flex: 1;
  padding: 0 20px;
}

.footer-column h3 {
  margin-top: 0;
  color: #f0c040;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #F5F5F5;
 /*   position: absolute; */
 /*   top: 100%; */
 /*   left: 0; */
    width: 100%;
  }

  #menu-toggle:checked + .burger + .nav .nav-menu {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #fcf3cf;
  }
  
    .dropdown-toggle {
    display: none;
  }
  
    .dropdown-toggle:checked + .dropdown-label + .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown > a::after {
    content: ' ▾';
  }

  .dropdown:focus-within .dropdown-content {
    display: block;
  }

  .header-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain; /* "contain" oder "cover", je nach gewünschtem Effekt */ 
    display: left;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text {
    min-width: auto;
  }


}

p.f24_ln_title   {color:#808080;font-size:24px;text-align:left;font-weight:normal;display: block;}
img.langu_flags  {height:20px;width:27px;}
a.icon:link      {color:#000000;}
a.icon:visited   {color:#000000;}
a.icon:hover     {color:#990000;}
a.icon:active    {color:#990000;}
a.icon           {display: inline-block;} /* verhindert typografischen Zeilenversatz */
a.text           {text-decoration:none;font-weight:normal;background-color:#F0E68C;}
a.text:link      {text-decoration:none;font-weight:normal;color:#641e16;}
a.text:visited   {text-decoration:none;font-weight:normal;color:#641e16;}
a.text:hover     {text-decoration:none;font-weight:normal;color:#F0E68C;background-color:#DAA520;}

 