@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;900&family=Saira+Extra+Condensed:wght@400;500;600;700;800;900&display=swap');

header {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999 !important;
	padding-left:30px;
	padding-right:30px;
	overflow:hidden;
}
.div_logo {
  width: 70px;
  display:flex;
  justify-content: center;
  align-items: center;
}

.div_logo img{
	width:100%;
}
.header-trees {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.header-trees img {
  width: auto;
  max-height: 80px;
  margin: 0 auto !important;
  display: block;
}
.guide-edit .header-actions,
.guide-page-layout .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: 30px;
}
.header-actions button {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-family: "Roboto", "Saira Condensed", Arial, sans-serif;
}

.menu-desktop{
	display:none;
}

.dropdown-mobile{
	margin-top:79px;
	display: none;
    height: calc(96.5vh - 80px);
    flex-direction: column;
    padding-top: 32px;
    position: fixed;
    width: 100%;
    background-color: #fff;
	z-index:99999999 !important;
}

.dropdown-mobile a{
	color: #04202B;
	font-family: 'Saira Condensed';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 29px;
	text-align: center;
	text-transform: uppercase;	
	text-decoration:none;
	display:block;
	padding:16px;
	margin:48px 32px;
}

/* iPhone SE und co. */

@media (max-width: 375px) {
	.dropdown-mobile a{
			margin:8px 32px;
	}	
}


/* DESKTOP */

@media (min-width: 720px) {
	.menu-desktop{
		display:flex;
	}
	.hamburger-mobile{
		display:none;
	}
.menu-desktop a{
	font-family: 'Saira Condensed';
	font-weight:500;
		text-decoration: none;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 16px;
		color:#000;
		cursor:pointer;
	}

.menu-desktop a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
		cursor:pointer;
}
.guide-page-layout .menu-desktop a[href="guide.html"]::after {
    width: 100%;
}

.menu-desktop a:hover::after {
    width: 100%;
    transition: width .3s;
	cursor:pointer;
}
.menu-desktop a.active::after,
.menu-desktop a.is-active::after {
    width: 100%;
}
.dropdown-mobile a.active,
.dropdown-mobile a.is-active {
    font-weight: 700;
}
.menu-desktop a:last-child{
	margin-right:0px;
}
}

.page-subnav {
  position: sticky;
  top: 80px;
  z-index: 9999999;
  display: flex;
  width: calc(100% - 40px);
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 80px 0 0;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease, margin-top 0.25s ease, opacity 0.2s ease;
}
.page-subnav a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Saira Extra Condensed';
  letter-spacing: 0.08em;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.95rem;
  color: #111;
}
.page-subnav a:hover {
  background: #111;
  color: #fff;
}
.page-subnav a.is-active {
  background: #111;
  color: #fff;
}
.page-subnav.is-hidden {
  transform: translateY(-120%);
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
}
.header-actions a.header-link {
  background: #fff;
  color: #111;
  border: 1px solid #111;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-family: "Roboto", "Saira Condensed", Arial, sans-serif;
}
.header-actions a.header-link:hover {
  background: #111;
  color: #fff;
}
