/* ---General Styles--- */
body {
  font-family: 'open_sans', sans-serif;
  background-color: #ffffff;
  color: #333;
  padding: 0;
  max-width: 958px;
}

a {
  color: #93C01C;
  text-decoration:none;
  font-weight: 400;
}


a:hover {
	color: #B42774;
	text-decoration: underline;
	cursor: pointer;
}

h1 {
	font-family: serif;
	font-size: 300%;
	margin: 0;
	font-weight: 400;
}

.header-wrapper .logo {
 margin-top: 15px;
 margin-bottom: 5px;
}

.header-wrapper .logo svg{
 max-width: 100%
}

/* ---Menu Styles--- */

/*
nav.menu-overlay {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  background-color: transparent; // Make menu background transparent
  text-align: center;
  z-index: 10;
}*/

/* ---Desktop Menu Styles--- */

/* Style the main navigation container */
.main-menu {
    z-index: 2;
    position: absolute;
    top: 135px;
    left: 0;
    width: 100%; /* Full width of the screen */
    background-color: rgba(255, 255, 255);
}

/* Center the menu items */
.main-menu > ul {
    list-style-type: none; /* Remove default list styling */
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox to arrange items horizontally */
    justify-content: center; /* Center the menu items */
    max-width: 958px; /* Limit the width of the menu items to 958px */
    margin: 0 auto; /* Center the ul within the container */
}

/* Style the list items (li) to make them display in a row */
.main-menu li {
    /* margin-right: 20px;  Optional: space between menu items */
}

/* Style the links in the navigation */
.main-menu a {
    text-transform: uppercase;
    color: #222222; /* Dark color for the text */
    display: inline-block;
    line-height: 3em;
    padding: 0 15px; /* Padding on both sides of each link */
}

/* Hover effect for navigation links */
.main-menu a:hover {
    background-color: #E545A4; /* Pink background on hover */
    color: #FFFFFF; /* White text on hover */
    text-decoration: none; /* Remove underline on hover */
}

/* Active link style (for the current page or active item) */
.main-menu li.act > a {
    background-color: #B42774; /* Darker pink background for active item */
    color: #FFFFFF; /* White text for active link */
    margin: -12px 0; /* Negative margin to adjust spacing */
    padding: 12px 15px; /* Padding for the active link */
}

/* Style for active menu item */
.main-menu .current-menu-item a {
    background-color: #B42774; /* Background color for active menu item */
    color: #FFFFFF; /* Text color for active menu item */
}



/* ---Mobile Burger Menu Icon--- */
.mobile-menu-toggle {
  display: none;
  position: fixed;  /* Change from absolute to fixed */
  top: 80px;        /* Adjust to position from the top of the screen */
  right: 20px;      /* Keep it 20px from the right side */
  cursor: pointer;
  width: 30px;
  height: 8px;
  z-index: 9999;    /* Ensure the burger icon is on top of other elements */
}

.mobile-menu-toggle .bar {
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 4px;
  background-color: #9b57a1;  /* Lila color for burger bars */
  transition: 0.3s ease;
}

.mobile-menu {
	display: none;
}

@media (min-width: 958px) {
	body {
	  margin: 0 auto; /* This centers the content */	
	}
}
/* ---mobile only--- */
@media (max-width: 958px) {
  /* hide desktop menu */
  .desktop-menu { display: none; }

  /* show burger */
  .mobile-menu-toggle { display: block; }

  /* mobile menu starts hidden */
  .mobile-menu {
	position: absolute;
    display: none;
	top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.9);
    padding: 20px;
	padding-top: 150px;
  }
  .mobile-menu.open {
    display: block;
  }
  .main-menu-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-menu-mobile li {
    margin: 10px 0;
  }
  .main-menu-mobile li a {
    color: #333;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
  }
  .main-menu-mobile li a:hover {
    color: #7cab14;
  }
	
	

	/* When the menu is open, animate the burger to an "X" */
	.mobile-menu-toggle.open .bar:nth-child(1) {
	  transform: rotate(45deg);
	  position: absolute;
	  top: 0;
	}

	.mobile-menu-toggle.open .bar:nth-child(2) {
	  opacity: 0; /* Hide the middle bar */
	}

	.mobile-menu-toggle.open .bar:nth-child(3) {
	  transform: rotate(-45deg);
	  position: absolute;
	  bottom: 0;
	}
}	
	
/* style for main page grey boxes */
	
.karten {
  background-color: #ECECED;
}

.karten > div {
  border-width:5px;
  border-color:transparent;
  border-style:solid;
  background-clip: padding-box;
  padding:15px 20px;
  /* min-height: 200px; */
  color: #333;
}

.karten > div > span {
  display: block;
  font-size: 250%;
  font-family: serif;
  color: #868789;
}

.karten > div > span > a {
  color: #868789;
}

.karten > div > span > a::before {
  content: '» ';
}

.karten > div > span > a:hover {
	color: #B42774;
	text-decoration: none;
}




.rumpf {
	padding: 10px 25px;
}
.rumpf > div {
	font-weight: 300;
	color: #333;
}
.rumpf > div:first-of-type {
	font-weight: 400;
	color: #111;
}
.rumpf ul {
	list-style-type: none;
	padding-left: 20px;
}
.rumpf ul li::before {
	content: '•';
	position: absolute;
	top: 0;
	left: -18px;
	font-weight: 400;
}
