/* Grundlegende Stile */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #F5F5F5;
    margin: 0;
    padding: 0;
    color: #2F4F4F;
}

h1, h2, h3, h4, h5 {
    font-weight: bold;
    color: #228B22;
}

/* Hero Section */
.hero {
    
    background-size: cover;
    background-position: center;
    min-height: 200px;
    border-radius: 0px;
    position: relative;
    text-align: center;
	height: 25vh;
}

.hero .container {
    z-index: 2;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 139, 34, 0.6); /* Halbtransparentes Grün als Overlay */
    border-radius: 10px;
    z-index: 1;
}

.hero h2 {
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-top: 10px;
}

.hero .btn {
    margin-top: 20px;
    padding: 10px 30px;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: #228B22;
}

.card-text {
    color: #2F4F4F;
}

/* Footer */
footer {
    background-color: #2F4F4F;
}

footer p, footer a {
    color: #FFFFFF;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
.error {
	color: #FF0000;
}

.resource {
	border-bottom:1px dotted #999;
}
