
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #E8F0E8; /* Helles Grün */
}

header {
    background-color: #2E4A2E; /* Dunkelgrün */
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header p {
    margin: 5px 0 0;
    font-style: italic;
}

.hero-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    margin-top: 10px;
}

nav {
    background-color: #3E5C3E; /* Etwas helleres Grün */
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container h2 {
    color: #2E4A2E; /* Dunkelgrün */
}

footer {
    background-color: #2E4A2E; /* Dunkelgrün */
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Für index.html */
.main-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.who-we-are,
.what-we-do {
    flex: 1;
    background-color: white;
    border: 1px solid #4A704A; /* Grüner Rand */
    border-radius: 5px;
    padding: 20px;
    min-width: 300px;
}

.who-we-are img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.who-we-are h2,
.what-we-do h2 {
    color: #2E4A2E; /* Dunkelgrün */
    margin-top: 0;
}

.buttons {
    text-align: center;
    margin: 20px 0;
}

.buttons a {
    display: inline-block;
    background-color: #2E4A2E; /* Dunkelgrün */
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
}

.buttons a:hover {
    background-color: #3E5C3E; /* Etwas helleres Grün */
}

/* Für gallery.html */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid #4A704A; /* Grüner Rand */
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

.overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
.project {
    background-color: white;
    border: 1px solid #4A704A; /* Grüner Rand */
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.project h3 {
    color: #2E4A2E; /* Dunkelgrün */
    margin-top: 0;
}

.project img {
    width: 100%;
    max-width: 400px; /* Begrenzt die Bildgröße */
    height: auto;
    border-radius: 5px;
    margin: 10px 0;
}

.project p {
    margin: 10px 0;
}