body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

header {
    background-color: #d4a514;
    color: white;
    padding: 20px 0;
    position: relative;
}

.logo svg {
    display: block;
    margin: 0 auto;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: #fff;
    color: #d4a514;
    border-radius: 5px;
    position: relative;
}

.nav a:hover::before {
    content: "🐝";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.menu-toggle div {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 5px 0;
}

.nav-menu {
    display: flex;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #d4a514;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav a {
        display: block;
        padding: 10px;
    }
}

.header-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: 0;
}

/* Abstand zwischen Headerbild und Einführungstext */
.header-image + .introduction {
    margin-top: 30px;
}

/* Einführungstext Styling */
.introduction {
    padding: 60px 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.introduction:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.introduction h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: none; /* Keine Großbuchstaben mehr */
    letter-spacing: 1px;
}

.introduction p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    font-weight: 300;
}

.introduction h2 {
    font-size: 30px;
    color: #444;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: none;
}

.introduction ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 900px;
    margin: 20px auto;
}

.introduction ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.introduction ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #d4a514;
}

.introduction a {
    display: inline-block;
    background-color: #d4a514;
    color: white;
    font-size: 20px;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.introduction a:hover {
    background-color: #c79a12;
    transform: scale(1.05);
}

.bee-logo {
    color: #d4a514;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}

footer p {
    margin: 0;
}

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

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