﻿/* Allgemeine Stile */
body {
    margin: 0;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 0.5rem 1rem;
    background-image: url('index/Holzmuster_rot.png');
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    border-style: solid;
	border-width: 0;
	width: 40%;
	height: auto,
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    background-image: none;
    font-size: 1.7rem;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight:bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.Ueberschrift1 {
    font-size: 2.5rem;
    font-weight:bold;
    padding-left: 1%;
}

.Ueberschrift2 {
    font-size: 2rem;
    font-weight:bold;
    padding-left: 5%;
}

.Themen {
    font-size: 1.5rem;
    padding-left: 10%;
}



/* Burger-Menü Button */
.burger-menu {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsivitätsregel */
@media (max-width: 1080px) {
    .burger-menu {
        display: block;
        font-size: 4rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
        background-color: #333;
        position: absolute;
        top: 6.5rem;
        width: 70%;
        margin-left: 30%;
        z-index: 2;
        font-size: 3rem;
        background-image: url('index/Holzmuster_rot.png');
         
     }

    .nav-links li {
        text-align: center;
        padding: 1rem 0;
        margin: 0;
    }
.logo {
		width: 70%;
		height: auto,
	}


}
