:root {
    --HERZweiss: #F3EBD7;
    --HERZrot: #C1504B;
    --HERZblau: #0B2046;
    --HERZgrau: #323D4A;
	--HERZschwarz: #03070D;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');	
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'inter', Arial, sans-serif;
    color: var(--HERZgrau);
	background: var(--HERZgrau);
    line-height: 1.6;
	 max-width: 100vw; 
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--HERZweiss);
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}
		
		header a {
			text-decoration: none;
		}

header nav ul li a {
    text-decoration: none;
    color: var(--HERZgrau);
    font-weight: bold;
}

.cta-buttons a {
    margin-left: 10px;
    padding: 10px 20px;
    background: var(--HERZrot);
    color: var(--HERZweiss);
    text-decoration: none;
    border-radius: 5px;
	cursor: pointer;
}

.hero {
    background: url('img/welletransparent.png') no-repeat center center/cover; /* img/foto-pylonbruecke.jpg flyer-hochhaus.png*/
	background-color: var(--HERZweiss);
    height: 80vh;
    color: var(--HERZweiss);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
}
		.hero a {
    color: var(--HERZweiss);
		font-weight: bold;
	
}

.impressum {
    color: #f9f9f9;
    margin: 70px;
}

.why-herzblut {
    padding: 50px;
    background: #f9f9f9;
    text-align: center;
}

.why-herzblut .features {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.projects {
    padding: 50px;
    text-align: center;
}

.projects .project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

footer {
    background: var(--HERZgrau);
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.newsletter input {
    padding: 10px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
}
		
		.herzb {
			color: var(--HERZblau);
		}
		.lu {
			color: var(--HERZrot);
		}

.newsletter button {
    padding: 10px 20px;
    background: var(--HERZrot);
    color: white;
    border: none;
    border-radius: 5px;
}

/* ----------- About Page Styles ----------- */

.about-hero {
    background-color: var(--HERZweiss);
    color: var(--HERZgrau);
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--HERZblau);
    font-weight: 700;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-main {
    background-color: var(--HERZweiss);
    color: var(--HERZgrau);
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--HERZrot);
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--HERZgrau);
}

/* Optional: Links im Content */
.about-section a {
    color: var(--HERZblau);
    font-weight: bold;
    text-decoration: none;
}

.about-section a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-section h2 {
        font-size: 1.6rem;
    }
    
	.gemein {
		color: var(--HERZrot);
	}
	
	footer {
    	background: var(--HERZschwarz);
	}
	
	.why-herzblut .features {
        flex-direction: column;  
        align-items: center;     
    }

    .why-herzblut .features .feature {
        margin-bottom: 20px;  
    }
	
    header nav ul {
        flex-direction: column; 
        align-items: center;    
    }

    header nav ul li {
        margin-left: 0;         
        margin-bottom: 10px;   
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;  
        margin-top: 10px;
    }

    .cta-buttons a {
        margin-left: 0;        
        margin-bottom: 10px;   
        width: 100%;          
        text-align: center;     
    }
}