/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

h2 {
    font-weight: 600; /* Semi-bold heading */
    font-size: 32px;
    margin-bottom: 20px;
	color: #064789;
}

h3 {
    font-weight: 600; /* Semi-bold heading */
    font-size: 18px;
    margin-bottom: 20px;
	color: #064789;
}

p {
    font-weight: 300; /* Light paragraph text */
    font-size: 18px;
    line-height: 1.8;
}

li {
    font-weight: 300; /* Light paragraph text */
    font-size: 18px;
    line-height: 1.8;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px;
    background-color: transparent;
    z-index: 1000;
    display: flex;
	align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.navbar nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo aligned to the left */
.navbar a.logo {
    flex: 0 0 auto; /* Make sure the logo stays on the left */
}

/* Center the menu */
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-grow: 1; /* Allow the menu to grow in the center */
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #427AA1;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #679436;
}


.navbar a.logo img {
    width: 250px; /* Adjust the logo size */
    height: auto;
}

.navbar .phantom {
    flex: 0 0 auto; /* Acts like a placeholder to balance the logo on the left */
    visibility: hidden; /* Make this invisible but reserve the space */
}

/* Parallax Sections */
.parallax {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.parallax .inner {
    position: sticky;
    top: 0;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


/* Content Section Styling */
.content-section {
    padding: 60px 20px;
    text-align: center;
}

#home {
    background-color: #427AA1;
}

#home h2 {
    font-weight: 600; /* Semi-bold heading */
    font-size: 32px;
    margin-bottom: 20px;
	color: #EBF2FA;
}

#home h3 {
    font-weight: 600; /* Semi-bold heading */
    font-size: 18px;
    margin-bottom: 20px;
	color: #EBF2FA;
}

#home p {
    font-weight: 300; /* Light paragraph text */
    font-size: 18px;
    line-height: 1.8;
	color: #EBF2FA;
}

#home li {
    font-weight: 300; /* Light paragraph text */
    font-size: 18px;
    line-height: 1.8;
	color: #EBF2FA;
}

#home a {
    color: #A5BE00; /* or any color you prefer */
    text-decoration: none; /* removes underline */
}

#home a:hover {
    color: #EBF2FA; 
}


#forschung, #planung {
    background-color: #EBF2FA;
}

#contact {
    background-color: #fafafa;
}

#contact a {
    color: #064789; /* or any color you prefer */
    text-decoration: none; /* removes underline */
}

#contact a:hover {
    color: #679436; 
}

.content-section h2 {
    margin-bottom: 15px;
}

.hook-sentence {
    font-size: 1.5em;
    font-style: italic;
    margin-bottom: 30px;
	color: #679436;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    text-align: justify;
    margin-bottom: 30px;
}

.main-content a {
    color: #679436; /* or any color you prefer */
    text-decoration: none; /* removes underline */
}

.main-content a:hover {
    color: #333; /* or any color you prefer */
}

.key-points {
    text-align: left;
    width: 100%;
}

.key-points h3 {
    margin-bottom: 15px;
}

.key-points ul {
    list-style-type: none;
    padding-left: 0;
	margin-bottom: 50px;
}

.key-points li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.key-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #064789;
}

.key-points a {
    color: #679436; /* or any color you prefer */
    text-decoration: none; /* removes underline */
}

.key-points a:hover {
    color: #333; /* or any color you prefer */
}


.impressum {
    text-align: left;
    width: 100%;
}


.impressum h3 {
    margin-bottom: 10px;
	margin-top: 20px;
}



/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #333;
    color: #fff;
}

footer .footer-text {
    font-size: 12px; /* Set the desired size here */
    margin: 0; /* Remove any default margins */
    line-height: 1.2; /* Adjust line height for better readability */
}

footer .footer-text a {
    color: #ffffff; /* or any color you prefer */
    text-decoration: none; /* removes underline */
}

footer .footer-text a:hover {
    color: #a5be00; /* or any color you prefer */
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
		font-weight: 600; /* Semi-bold heading */
		font-size: 18px;
		margin-bottom: 20px;
		color: #064789;
	}

	h3 {
		font-weight: 600; /* Semi-bold heading */
		font-size: 14px;
		margin-bottom: 20px;
		color: #064789;
	}
	#home h3 {
		font-weight: 600; /* Semi-bold heading */
		font-size: 14px;
		margin-bottom: 02px;
	}

	p {
		font-weight: 300; /* Light paragraph text */
		font-size: 12px;
		line-height: 1.8;
	}

	li {
		font-weight: 300; /* Light paragraph text */
		font-size: 12px;
		line-height: 1.8;
	}

	.hook-sentence {
		font-size: 0.8em;
		font-style: italic;
		margin-bottom: 30px;
		color: #679436;
	}

	#home h2 {
		font-weight: 600; /* Semi-bold heading */
		font-size: 18px;
		margin-bottom: 20px;
		color: #EBF2FA;
	}

	#home h3 {
		font-weight: 600; /* Semi-bold heading */
		font-size: 18px;
		margin-bottom: 20px;
		color: #EBF2FA;
	}

	#home p {
		font-weight: 300; /* Light paragraph text */
		font-size: 12px;
		line-height: 1.8;
		color: #EBF2FA;
	}

	#home li {
		font-weight: 300; /* Light paragraph text */
		font-size: 12px;
		line-height: 1.8;
		color: #EBF2FA;
	}


	.navbar ul li a {
        font-size: 12px;
    }

    .navbar a.logo img {
        width: 80px; /* Adjust logo size for mobile */
    }
	
	 .navbar ul {
        justify-content: center;
    }
	
	.parallax {
        height: 80vh; /* Reduzierte Höhe für mobile Geräte */
    }
    
    .parallax .inner {
        height: 100%;
		position: sticky;
        background-attachment: scroll; /* Verhindert Probleme auf Mobilgeräten */
    }
	
	
	.content-wrapper {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .main-content {
        width: 100%;
        padding-right: 0px;
    }

    .key-points {
        width: 90%;
    }
	footer .footer-text {
        font-size: 8px; /* Smaller on mobile devices */
    }
}
