/* Colors */
:root {
    --primary: #33C3F0;
    --primary-darken-1: #1EAEDB;
    --primary-darken-2: #0FA0CE;
    --secondary: #ff0191;
    --secondary-darken-1: #c70071;
    --text:#333333;
    --grey: #e1e1e1;
    --grey-darken-1: #bbbbbb;
    --grey-darken-2: #888888;
    --grey-darken-3: #555555;
    --white: #ffffff;
    --bg-white: #ffffff;
    --white-darken-1: #F1F1F1;
    --black: #000000;
}

@media (prefers-color-scheme: dark) {
    :root{
    --primary: #33C3F0;
    --primary-darken-1: #1EAEDB;
    --primary-darken-2: #0FA0CE;
    --secondary: #ff0191;
    --secondary-darken-1: #c70071;
    --text:#f1f1f1;
    --grey: #2f2f2f;
    --grey-darken-1: #555555;
    --grey-darken-2: #aaaaaa;
    --grey-darken-3: #eeeeee;
    --white: #000000;
    --bg-white: #666666;
    --white-darken-1: #010101;
    --black: #ffffff;
  }
}
/* Custom Styles */

a.no-link {
    color: var(--text);
    text-decoration: none;
}

a.no-link:hover {
    color: var(--text);
    text-decoration: underline;
}

.footer {
    background-color: var(--grey);
    padding: 3.5rem 0 3rem;
}
.logo {
    padding: 3rem 0 0;
}
.meta {
    font-size: 90%;
}
.black {
    fill: var(--black);
}
.wp-block-button {
    margin-bottom: 2rem !important;
}
#nav-below .btn {
    margin-bottom: 3rem;
}
#menu-topmenue {
    padding-top: 2rem;
}

#menu-footer {
    list-style: none;
    list-style-type: none;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {
    .header {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    #menu-topmenue li {
        display: inline;
        border-bottom: none !important;
        padding: 1rem;
        font-weight: 400;
        margin-bottom: 0;
    }
    .bar, .burger, .closebtn {
        display: none !important;
    }
}

/* Smaller than Desktop */
@media only screen and (max-width: 999px){
    #mainNav ul {
        top: 0;
        margin: 0 auto;
        font-family: "Arial", sans-serif;
        position: relative;
    }
    
    #mainNav ul li {
        line-height: 70px;
        margin: 0 auto;
        position: relative;
    }
    
    #mainNav ul li a, #mainNav ul li .a {
        text-decoration: none;
    }
    #mainNav ul li a:hover, #mainNav ul li .a:hover {
        text-decoration: none;
        color: var(--black);
    }
	.menu-hauptmenue-container {
		height: 100%;
		width: 0;
		position: fixed;
		z-index: 2000;
		top: 0;
		left: 0;
		background-color: var(--white-darken-1);
		overflow-x: hidden;
		padding-top: 60px;
		transition: .5s;
		line-height: 1;
	}
	.menu-hauptmenue-container ul {
		margin-top: 1rem;
		list-style-type: none;
		text-align: center;
	}
	.burger {
		position: fixed;
		top: 2rem;
		right: 2rem;
		cursor: pointer;
		line-height: 1.2;
		z-index: 1;
		font-size: 7px;
		width: 5rem;
        height: 5rem;
        text-align: center;
        color: var(--black);
	}
    .rounded {
        border-radius: 20%;
    }
	.closebtn {
		position: absolute;
		top: 3rem;
		right: 2rem;
		font-size: 40px;
		color: var(--grey-darken-3) !important;
		text-decoration: none;
	}
    .burger-box {
        position:fixed;
        top: 3rem;
        right: 2rem;
    }
	.bar {
		width: 3rem;
		height: 0.3rem;
		background-color:var(--black) !important;
		margin: 0.5rem 0;
	}
	.dropdown-content {
		min-width: 100%;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		z-index: 1;
		}
    .invisible {
        display: none;
    }
}


/* Larger than Desktop HD */
@media (min-width: 1200px) {}
