/* CSS Reset */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden; /* Verhindert horizontales Scrollen, falls unerwünschte Überlappungen vorhanden sind */
}

body {
	margin: 0;
	background-image: url(img/background.jpg);
}

header{
	/* background-color: grey; */
	margin: 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid grey;
}

header img {
	margin-left: 20px;
	width: 350px;
	height: 280px;
}

/* ----------------------------------------------------- NAVIGATION LINKS STYLES ----------------------------------------------------- */

.containerLinks{
	font-family: 'Rubik', sans-serif;
    display: flex;
    justify-content: space-around;
    width: 50%;
    padding: 10px 0 10px 10px;
    border-radius: 20px;
	transition: 0.7s ease;
}

.containerLinks a {
	color: white;
	text-decoration: none;
	font-size: 20px;
	font-weight: 900;
}

.containerLinks a:hover {
	color: grey;
}

li{
	list-style: none;
}

.nav-menu{
    display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
    padding: 10px;
    border-radius: 20px;
	transition: 0.7s ease;
}

.nav-link{
	transition: 0.7s ease;
}


/* ------------ NAV BAR BURGER MENU ------------- */
.hamburger{
	display: none;
	cursor: pointer;
}

.bar{
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: white;
}

/* ------------------------------------------------------ FOOTER  -----------------------------------------------------------------------*/

.footerDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%; 
    text-align: center;
}

.footerDiv ul {
    list-style: none;
    padding: 20px; 
    margin: 0 auto;
    text-align: center;
    color: white; 
    font-size: 20px;
}

footer {
    position: relative;
    margin: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid grey;
    color: white;
}

footer p {
    text-align: center;
    color: grey;
    margin: 0;
}

.footerDiv2 {
    margin: 10px 0; 
    display: flex;
    justify-content: center;
}

.footerDiv2 a {
    margin: 0 15px; 
    color: white; 
    text-decoration: none; /* Entfernt die Unterstreichung */
    font-weight: bold; /* Macht den Text fett */
}

.footerDiv2 a:hover {
    text-decoration: underline; /* Fügt eine Unterstreichung beim Überfahren mit der Maus hinzu */
}

footer p {
    margin: 0; /* Entfernt das äußere Abstand vom Paragraph */
}

/* -------------------------------------------------------------- I M P R E S S U M -----------------------------------------------------------------*/


h1{
	text-align: center;
	font-family: 'Rubik', sans-serif;
	font-size: 50px;
	color: white;
	text-shadow: 5px 5px 5px rgb(0,0,0, 0.8);
}

.firstSectionImpressum{
	height: auto;
	width: auto;
	min-height: 100vh;
	min-width: 100vh;
	margin-bottom: 1vh;
	margin-top: 0;
	padding: 20px 0 20px 0;
	text-align: center;
	font-family: 'Rubik', sans-serif;
	font-size: 30px;
	color: white;
	text-shadow: 5px 5px 5px rgb(0,0,0, 0.8);
	background-color: rgba(0, 0, 0, 0.7);
}


.dataText{
	font-size: 21px;
	margin-bottom: 15px;
}

.headInnerListData{
	font-size: 30px;
}

li a {
	text-decoration: underline;
	font-size:larger;
	color: white;

}


/*----------------------------------------- MEDIA QUERIES ----------------------------------- */

@media screen and (max-width: 768px){

		.hamburger{
		display: block;
	}
	
	.hamburger.active .bar:nth-child(2){
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(1){
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active .bar:nth-child(3){
		transform: translateY(-8px) rotate(-45deg);
	}

	.nav-menu{
		position: fixed;
		right: -1000px;
		top: 50px;
		gap: 0;
		flex-direction: column;
		background-image: url(img/background.jpg);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		z-index: 1000;
	}

	.nav-item{
		margin: 16px 0;
	}

	.nav-menu.active{
		right: 0;
	}

	/* ---------------------- REST -------------------------- */

	/*FIRST SECTION*/
	header img{
		height: 100px;
		width: 150px;
	}

	 h1 {
        font-size: 28px; 
        margin: 10px 0; 
    }

    .firstSectionImpressum {
		width: 100%;
		min-width: auto;
        padding: 10px; 
        font-size: 18px; 
        background-color: rgba(0, 0, 0, 0.7); 
    }

    .dataText, .headInnerListData {
        font-size: 16px;
        margin-bottom: 10px; 
    }

    .footerDiv ul, .footerDiv2 a {
        font-size: 16px; 
    }


}
