/* Allgemein */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    text-align: center; /* Standard-Zentrierung */
}

/* Header */
header {
    position: relative;
    overflow: hidden;
    background: #003366;
    color: white;
    height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

header h1, header p, header .btn {
    margin: 0 auto;
}

/* Animationselement für Wasser */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0.7;
    animation: moveWater 5s infinite linear;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
}

/* Button */
.btn {
    display: inline-block;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 40px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #004999;
    transform: scale(1.05);
}

/* Abschnitte */
section {
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 800px; /* Maximale Breite */
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Icons */
.icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Zentrierung */
    gap: 20px;
    margin-top: 20px;
}

.icon-container {
    text-align: center;
    max-width: 200px;
}

.icon {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
}

.icon-text {
    margin-top: 10px;
    font-size: 1rem;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-slogan {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-columns {
    display: flex;
    justify-content: center; /* Zentrierung */
    gap: 50px;
    flex-wrap: wrap; /* Responsive Design */
}

.footer-column {
    text-align: center;
    max-width: 300px;
	margin-left: auto;
    margin-right: auto;
	margin-bottom: 30px
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-column p, .footer-column a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
}

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

/* Wasserbewegung */
@keyframes moveWater {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(0%, 0%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsives Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    header p {
        font-size: 1rem;
    }
    header .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    section h2 {
        font-size: 1.8rem;
    }

    section p {
        font-size: 1rem;
    }

    .footer-columns {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 10px;
    }
}

.credit {
    font-size: 0.8rem;
    color: #fff;
    margin-top: 40px;
	margin-bottom: 20px;
}

.credit a {
    color: #fff;
    text-decoration: none;
}

.credit a:hover {
    color: #f2f2f2;
}
