#navigation {
    position: fixed;
   top: 10px;
   left: 35px;
    width: 100%;
    z-index: 99;
    color: var(--color-main);
    text-transform: uppercase;
    font-size: 11px;
    display: flex;
    flex-direction: column;
}

#navigation .navigation-main > * {
    display: flex;
    align-items: center;
}

#navigation .welcomeblock {
    height: var(--navheight);
    font-family: var(--main-font);
    font-size: 10px;
   text-transform: uppercase;
   font-weight: 600;
   line-height: 1em;
   letter-spacing:0.2em;
}

#navigation .welcomeblock a {
   color: var(--color-accent1);
   text-decoration:none;
   position:relative;
}

#navigation .welcomeblock a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background-color: var(--color-main);
  bottom: -5px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

#navigation .welcomeblock a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

#navigation .welcomeblock a:hover {
	  color: var(--color-main);
	  cursor: pointer;
	transition: 1s ease-in-out;
}



/**********************************
    Down
**********************************/

.navigation-down {
	display:flex;
	justify-content: end;
	width:100%;
}

.admin-mod {
	margin-top:10px;
	font-family: var(--main-font);
    color: var(--color-main);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 0.2em;	
}

.admin-mod a {
	color: var(--color-accent1);
	text-decoration:none;
}
.admin-mod a:hover {
	color: var(--color-main);
	text-decoration:none;
}



.nav-right {
  display: flex;
  flex-direction: column; /* Elemente untereinander anordnen */
  position: fixed; /* Fixiert die Navigation */
  right: 2px; /* Abstand vom rechten Rand */
  top: 50%; /* Startpunkt auf der Hälfte des Viewports */
  transform: translateY(-50%); /* Exakte Zentrierung */
  align-items: center; /* Horizontale Zentrierung */
  gap: 8px; /* Geringerer Abstand zwischen den Icons */
}

.nav-right a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--color-accent1);
    padding: 5px;
 	transition: color 1s ease-in-out;

}
.nav-right a:hover {
    color: var(--color-main);
}

.nav-right button {
    border: none;
    background: none; /* Optional: Removes background if needed */
    outline: none; /* Optional: Removes focus outline */
}

.nav-right button:hover {
    border: none;
    background: none; /* Optional: Removes background if needed */
    outline: none; /* Optional: Removes focus outline */
	    color: var(--color-accent1);

}


/**********************************
    Drop Down
**********************************/

input[name="nav-dropdown"] {
  display: none;
}
#ucp-dropdown:checked ~ .ucp-dropdown{
  top: 35px;
  left: 36px;
}
#list-sidebar:checked ~ .list-sidebar {
  left: 36px;
}

#acc-switcher:checked ~ .acc-switcher {
  left: 36px;
}


.acc-switcher {
  position: fixed;
  top: 35px;
  left: -100%;
  height: calc(100vh - (35px*2));
  overflow: auto;
  padding: 20px 30px;
  background: var(--color-bg-transparent-dark);
  transition: left 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-transform: uppercase;
  min-width:300px;
}



.ucp-dropdown {
  position: fixed;
  top: -50vh;
  left: 36px;
  width: calc(100% - (var(--frame)*2) - 2px);
  height: 35vh;
  overflow: auto;
background: var(--color-bg-transparent-dark);
  transition: top 0.5s ease;
}

/* If More Columns are Added */
@media screen and (min-width: 768px) {
  .ucp-dropdown-content {
    grid-template-columns: auto auto auto; /* Add additional columns dynamically */
  }
}

/* Default Layout (Desktop, 900px and Above) */
.ucp-dropdown-content {
  display: grid;
  grid-template-columns: auto auto auto; /* Avatar + Two Columns (or more) */
  grid-gap: 50px; /* Space between columns */
  justify-content: start; /* Align grid items to the left */
  align-items: start; /* Align items to the top */
  width: auto; /* Adjust container width to content */
  padding: 40px; /* Internal spacing */
  box-sizing: border-box; /* Include padding in width calculations */
  text-align: left; /* Ensure all text aligns to the left */
}


/* Avatar Column Styling */
.user-ava {
  max-width: 200px; /* Constrain avatar size */
  width: auto; /* Ensure avatar adjusts to its content */
  margin: 0; /* Remove centering margin */
  text-align: left; /* Align avatar content to the left */
}

/* Grid Items */
.ucp-dropdown-content-item {
  margin: 0;
  padding: 0;
  text-align: left; /* Align content inside grid items to the left */
  box-sizing: border-box; /* Include padding/margin in width calculations */
  justify-self: start; /* Align grid item itself to the left */
  align-self: start; /* Align grid item to the top */
}

/* Adjust Titles and Lists */
.ucp-dropdown-title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: left;
  margin: 0;
  padding: 0 0 10px 0;
}

.ucp-dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.ucp-dropdown-list li {
  font-size: 16px;
  margin: 5px 0;
  font-style: italic;
  text-align: left;
}


/* Ordered Lists */
.ucp-dropdown-content-item ol {
  margin: 0;
  padding: 0;
  list-style: none; /* Remove bullet points */
  counter-reset: mnum; /* Reset numbering */
  text-align: left; /* Align ordered lists to the left */
}

.ucp-dropdown-content-item ol li:before {
  content: "00" counter(mnum) ". "; /* Add custom numbering */
  color: var(--color-main); /* Use main color */
}

.ucp-dropdown-content-item ol li {
  font: 500 10px / 25px var(--main-font); /* Adjust font */
  letter-spacing: 2px; /* Add spacing */
  text-transform: uppercase; /* Transform to uppercase */
  color: var(--color-main); /* Use main color */
  counter-increment: mnum; /* Increment the counter */
  text-align: left; /* Align list items to the left */
}

.ucp-dropdown-content-item ol:before {
  content: attr(name); /* Use "name" attribute for section titles */
  margin: 0;
  padding: 0;
  font: 700 11px var(--main-font); /* Adjust font */
  display: block;
  letter-spacing: 2px; /* Add spacing */
  margin-bottom: 25px; /* Add spacing below */
  text-transform: uppercase; /* Transform to uppercase */
  color: var(--color-main); /* Use main color */
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-main); /* Add underline */
  text-align: left; /* Align section titles to the left */
}



/* Mobile Layout (Screens 900px and Smaller) */
@media screen and (max-width: 900px) {
  .ucp-dropdown-content {
    display: grid;
    grid-gap: 20px; /* Space between columns */
    width: 100%; /* Full width for smaller screens */
    padding: 20px; /* Adjust padding for smaller screens */
    margin: 0; /* No centering margins */
    box-sizing: border-box; /* Include padding in width calculations */
  }

  /* Hide Avatar on Mobile */
  .user-ava {
    display: none; /* Completely hide the avatar */
  }

  .ucp-dropdown-content-item {
    margin: 0;
    padding: 0;
    text-align: left; /* Align content to the left */
    justify-self: stretch; /* Stretch items to occupy full column width */
    align-self: stretch; /* Align items to fill available space */
  }
}

/* If More Columns are Added (Only for Screens 1200px and Larger) */
@media screen and (min-width: 1200px) {
  .ucp-dropdown-content {
    grid-template-columns: auto auto auto auto; /* Add an extra column */
  }
}

label {
  cursor: pointer;
  transition: filter 0.3s ease;
  color: var(--color-accent1);
  position: relative;
  text-decoration: none;
}

label::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background-color: var(--color-main);
  bottom: -5px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

label:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

label:hover {
	  color: var(--color-main);
	  cursor: pointer;
	transition: 1s ease-in-out;
}




.list-sidebar {
  position: fixed;
  top: 35px;
  left: -100%;
  height: calc(100vh - (35px*2));
  overflow: auto;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.5);
  transition: left 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-transform: uppercase;
  min-width:300px;
}


/**********************************
    User Settings
**********************************/


.user-ava {
	background: #444;
	height: 180px;
	aspect-ratio: 1/1;
	outline: 1px solid var(--medium);
	outline-offset: 10px;
	position: relative;
}

/* Transition for the overlay */
.user-ava:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-accent1);
	z-index: 1;
	mix-blend-mode: multiply;
	transition: opacity 0.3s ease; /* Add transition for opacity */
}

.user-ava:hover:before {
	opacity: 0.5; /* Show the overlay on hover */
}

/* Transition for the image */
.user-ava img {
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
	transition: filter 0.3s ease; /* Add transition for filter */
}

.user-ava:hover img {
	filter: grayscale(0%); /* Remove grayscale on hover */
}

.content-box {
  display: flex;
  justify-content: space-between;
  width: 100%; /* Je nach Bedarf anpassen */
}

.section {
  padding: 0 38px; 
}

.section h3 {
  margin: 0 0 10px 0;
  font-family: var(--main-font);
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.section h3:before {
  left: -50px;
}

.section h3:after {
  right: -50px;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section ul li {
  font-family: var(--main-font);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.5em;
  display:flex;
}

.section ul li span {
  font-weight: bold;
  margin-right: 10px;
}

/**********************************
    Nav right Side
**********************************/

/* Hauptcontainer */

/* Hauptcontainer */
.nav-container {
  display: flex; /* Elemente horizontal anordnen */
  align-items: center; /* Vertikale Zentrierung */
  justify-content: space-between; /* Linke und rechte Navigation trennen */
  width: 2110px; /* Container über die gesamte Breite */
  padding: 0; /* Kein Padding */
  box-sizing: border-box; /* Padding/Margin wird in die Größe einbezogen */
  position: relative; /* Für absolute Positionierung der Inhalte */
}

/* Linke Navigation (Willkommensblock) */
.welcomeblock {
  display: flex; /* Flexbox für Inhalte */
  align-items: center; /* Vertikale Zentrierung */
}

.header_nav_right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 10px;
  right: 0;
  padding-right: 35px;
  width: auto;
  height: var(--navheight);
  font-family: var(--main-font);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0.2em;
  z-index: 999;
}

.header_nav_right .nav-link {
  margin-left: 20px;
  cursor: pointer;
    color: var(--color-accent1);
}

.header_nav_right .nav-link a {
    cursor: pointer;
  transition: filter 0.3s ease;
  color: var(--color-accent1);
  position: relative;
  text-decoration: none;
}


.header_nav_right .nav-link a:hover:before {
  transform-origin: left;
  transform: scaleX(1);
}

.header_nav_right .nav-link a:hover {
	  color: var(--color-main);
	  cursor: pointer;
	transition: 1s ease-in-out;
}

/* Navigation Side Panel */
.side-nav {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--color-bg-transparent-dark);
  padding: 20px;
  position: fixed;
  top: 35px;
  right: 20px;
  z-index: 998;
  width:205px;
}

.side-nav.open {
  display: flex;
}

.nav-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.nav-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.side-nav ol {
  padding-left: 20px;
}

.side-nav ol li {
  list-style: decimal;
  margin-bottom: 5px;
}

.side-nav ol li a {
    cursor: pointer;
  transition: filter 0.3s ease;
  color: var(--color-accent1);
  position: relative;
  text-decoration: none;
}

.side-nav ol li a:before {
content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background-color: var(--color-main);
    bottom: -5px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}



.side-nav ol li a:hover:before {
  transform-origin: left;
  transform: scaleX(1);
}

.side-nav ol li a:hover {
	  color: var(--color-main);
	  cursor: pointer;
	transition: 1s ease-in-out;
}

/* Mobile */
@media (max-width: 768px) {
  .side-nav {
    flex-direction: column;
  }
}


.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Font Awesome Hamburger Menü */
.hamburger-icon {
    display: none; /* Standardmäßig ausgeblendet */
    font-size: 24px;
    color: var(--color-main);
    cursor: pointer;
}

/* Mobiles Layout: Hamburger-Menü */
@media (max-width: 1000px) {
    .header_nav_right .nav-list {
        display: none; /* Ausblenden der Navigation */
    }

    .hamburger-icon {
        display: block; /* Hamburger-Menü sichtbar machen */
    }

    .nav-list.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--navheight);
        right: 0;
        background: var(--color-background-alt);
        padding: 20px;
        width: auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-list li {
        margin-bottom: 15px;
    }

    .nav-list li:not(:last-child)::after {
        content: ""; /* Entfernt Punkte in mobiler Ansicht */
    }
}

.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list li:not(:last-child)::after {
    content: "•";
    margin: 0 10px;
    color: white;
    font-size: 14px;
}


.nav-list a {
   color: var(--color-accent1);
   text-decoration:none;
   position:relative;
}

.nav-list a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background-color: var(--color-main);
  bottom: -5px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

.nav-list a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.nav-list a:hover {
	  color: var(--color-main);
	  cursor: pointer;
	transition: 1s ease-in-out;
}





/**********************************
    Breadcrumb
**********************************/

.breadcrumb-navigation {
	width: 24px;
	writing-mode: vertical-lr;
	align-items: center;
	padding-left: 8px;
	display: flex;
	justify-content: end;
	height: 92%;
	z-index: 1;
	color: var(--color-main);
	font-family: var(--main-font);
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: 0.2em;
	position: absolute;
}

.breadcrumb-navigation a {
	color: var(--color-accent1);
	text-decoration: none;
	transition: color 1s ease-in-out;
}

.breadcrumb-navigation a:hover {
	color: var(--color-main);
	cursor: pointer;
}
