/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

header {
    background-color: #fff;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: static;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 140px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
	margin-right: 15px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 25px;
}

nav a {
    text-decoration: none;
    color: #004DA3;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #00458F;
}

.nav-active ul {
    display: block; /* Menü sichtbar, wenn aktiv */
}

.close-menu {
    display: none; /* Standardmäßig ausgeblendet */
    font-size: 2em;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.nav-active .close-menu {
    display: block; /* Sichtbar, wenn Menü geöffnet */
}

#hero {
    background-image: url('bg.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: scroll; 
    width: 100%;
    height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #0051a8;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    margin-top: 20px;
    border-radius: 10px;
}
ol {	
	margin-left: 15px;
}
h2 {
    color: #0051a8;
    font-size: 2em;
    margin-bottom: 30px;
}

h3 {
    color: #333;
    font-size: 1.5em;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat .number {
    font-size: 3em;
    font-weight: bold;
    color: #0051a8;
}

.stat p {
    margin-top: 10px;
    font-size: 1.2em;
}

.preis-paket {
    display: inline-block;
    width: 300px;
    margin: 20px;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s;
}

.preis-paket:hover {
    transform: translateY(-5px);
}

.preis {
    font-size: 1.8em;
    color: #0051a8;
    font-weight: bold;
    margin-top: 10px;
}

#kontakt form {
    max-width: 500px;
    margin: 0 auto 30px auto;
    text-align: left;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

textarea {
    height: 150px;
}

button {
    background-color: #0051a8;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #00448d;
}

.kontakt-info {
    margin-top: 30px;
}

footer {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-links a {
    color: #2300D6;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Testimonial Section */
#testimonials {
    padding: 60px 20px;
    background-color: #f1f1f1;
    text-align: center;
    margin-top: 40px;
    border-radius: 10px;
}

#testimonials h2 {
    color: #0051a8;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.quote {
    font-style: italic;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    border-radius: 50%;
    margin-right: 15px;
}

.author p {
    font-size: 1em;
    color: #333;
    text-align: left;
}

/* Section Vorteile */
#vorteile_liste {
    padding: 60px 20px;
    background-color: #f1f1f1;
    text-align: center;
    margin-top: 40px;
    border-radius: 10px;
}

#vorteile_liste h2 {
    color: #0051a8;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.vorteile-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.vorteil {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 250px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.vorteil:hover {
    transform: translateY(-5px);
}

.vorteil h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.vorteil p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

.vorteil-icon {
    margin-bottom: 15px;
    max-width: 50px;
}

@media (max-width: 768px) {
    .vorteile-container {
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        transition: 0.3s;
    }
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    nav li {
        margin-bottom: 20px;
    }
    .nav-active {
        left: 0;
    }
    #hero {
        background-size: cover; 
        background-position: center center; 
        height: 60vh; 
        min-height: 400px; 
    }
    h1 {
        font-size: 1.8em;
    }
    .stats {
        flex-direction: column;
    }
    .preis-paket {
        display: block;
        width: 100%;
        margin: 20px auto;
    }
}