:root {
  --inactiveBG-color: #fcf7ee;
  --activeBG-color: white;
  --link-color: rgb(255, 60, 0);
  --visitedLink-color: rgb(180, 106, 84);
  --tabWith: 100px;
  --tabBorderColor: rgb(146, 166, 185);
  --paddingTiny: 7px;
  --paddingNorm: 15px;
  --paddingBig: 20px;
  --darkColor: #333;
  --lightColor: #d1cec2;
  --boxShadow: rgba(0, 0, 0, 0.3);
}

.container {
  display: flex;
  justify-content: center;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: top;
  /* Centers items vertically */
  height: 100vh;
  /* Makes wrapper fill the viewport height */
  max-width: 1200px;
}

.content {
  padding: 20px;
  /*height: 80vh; */
  border-left: 1px solid var(--tabBorderColor);
  border-right: 1px solid var(--tabBorderColor);
  margin-bottom: var(--paddingNorm);
}

#menue {
  align-items: stretch;
}

#logoBig {
  padding-top: 10px;
  height: 30px;
  visibility: visible;
}

#logoSmall {
  height: auto;
  visibility: visible;
  display: none; /* Standardmäßig versteckt */
}

#footer {
  vertical-align: bottom;
}

/* main menue__________________________________________*/
nav ul {
  list-style: none;
  background-color: white;
  box-shadow: 0 2px 5px var(--boxShadow);
  padding: 0;
  display: flex;
  justify-content: space-evenly;
}

nav ul li {
  display: inline-flex;
  justify-content: center;
  position: relative;
  font-variant-caps: all-small-caps;
}

nav ul li a {
  color: var(--darkColor);
  text-decoration: none;
  padding: var(--paddingNorm);
  text-align: center;
  vertical-align: bottom;
  display: inline-block;
  border: none;
  border-left: solid var(--tabBorderColor) 1px;
  font-family: 'Roboto Regular';
}

nav ul li a:hover {
  background-color: var(--inactiveBG-color);
  color: var(--link-color)
}

nav ul li a:visited {
  color: var(--visitedLink-color);
}

@font-face {
  font-family: 'Roboto Regular';
  src: url('../fonts/roboto/RobotoRegular.woff') format('woff2'),
       url('../fonts/roboto/RobotoRegular.woff') format('woff');
}

/* Dropdown styles _________________________________________*/

.dropdown {
  display: none;
  /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 5px var(--boxShadow);
  /* min-width: 100px;*/
}

.dropdown li {
  position: relative;
}

.dropdown li a {
  padding: var(--paddingTiny);
  display: block;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  border: none;
  border-bottom: 1px solid var(--tabBorderColor);
  min-width: 180px;
  text-align: left;
}

.dropdown li a:hover {
  background-color: var(--inactiveBG-color);
}

/* Show dropdown when visible */
nav ul li:hover .dropdown,
.dropdown[v-show="true"] {
  display: block;
}

/* Mobile Styles _____________________________________________*/

@media (max-width: 768px) {

  nav ul {
    display: none;
  }

  .menu-container {
    position: relative;
    height: 70px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    margin: var(--paddingNorm);
  }

  .hamburger div {
    width: 40px;
    height: 6px;
    background-color: var(--darkColor);
  }

  /* Show menu when hovering over hamburger */
  .menu-container:hover nav ul,
  .menu-container:hover .dropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    text-align: left;
    top: 20px;
    left: 20px;
    background-color: white;
    box-shadow: 0 2px 5px var(--boxShadow);
    padding: 10px;
    min-width: 150px;
  }

  #logoBig {
    display: none; /* Großes Logo ausblenden */
  }
  
  #logoSmall {
    display: block;
    margin-left: 60px;
    margin-top: -35px;
  }

   /* Mobile Menu Layout */
  nav ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    position: relative;
    padding: 2px 0px; 
  }

  nav ul li a {
    border: none;
    border-bottom: 1px solid var(--tabBorderColor);
    display: block;
    padding: 0;
    
  }
    
  /* Mobile dropdown */
  .dropdown {
    position: absolute;
    
    margin-left: 130px;
    margin-top: -30px;
    display: none;
    /* initially hidden */
  }

  /* Keep dropdown visible when menu is open */
  .menu-container:hover .dropdown {
    display: block;
  }

  .dropdown li {
    position: relative;
    padding: 2px, 0px;
  }

  .dropdown li a {
    display: block;
    text-align: left;
    padding: 0;
  }
}

/* footer__________________________________________________*/
footer {
  background-color: var(--darkColor);
  padding: var(--paddingTiny);
  justify-content: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;

  max-width: 100%;
  text-align: center;
}

.column {
  min-width: 140px;
  max-width: 200%;
  margin: var(--paddingNorm);
  border-color: 2px dotted yellow;
}

  .icon {
    width: 40px;
    margin: 5px;
    margin-top: 10px;
  }

footer ul {
  list-style: none;
  margin-bottom: var(--paddingNorm);
  margin: 0;
  background-color: var(--darkColor);
}

footer ul li {
  display: block;
  font-variant-caps: all-small-caps;
  padding: 3px;
  font-size: 14px;
}

footer ul li a {
  text-decoration: none;
  width: 100px;
  text-align: center;
  display: inline-block;
  border: none;
  color: white;
  font-family: 'Roboto Regular';
}

footer ul li a:hover {
  background-color: #4b4b4b;
  color: rgb(255, 170, 144);
}

footer ul li a:visited {
  color: rgb(196, 126, 105);
}

footer ul lh {
  font-variant-caps: all-small-caps;
  color: var(--inactiveBG-color);
  font-weight: bolder;
  border-bottom: 1px solid var(--inactiveBG-color);
  padding: 2px;
}


/* Ende footer__________________________________________________*/