body {
    font-family: Arial, sans-serif;
    background-color: #f7e7d7;
    margin: 0;
    padding: 0;
    color: #5c2c2c;
    text-align: center;
}

.container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    height: 600px;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.reittherapie {
    background-color: #b74d4d;
    top: 50px;
    left: 0;
}

.horsemanship {
    background-color: #8c9e78;
    top: 50px;
    right: 0;
}

.mobile-reittherapie {
    background-color: rgba(255, 255, 255, 0.8);
    color: #5c2c2c;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

h2 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.special {
    color: #b74d4d;
    font-weight: bold;
    font-size: 32px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.red-btn {
    background-color: #8c1f1f;
    color: #fff;
}

.green-btn {
    background-color: #5d7551;
    color: #fff;
}

.white-btn {
    background-color: #e0d7d7;
    color: #5c2c2c;
}

.logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.logo img {
    width: 150px;
    height: auto;
}
/* Mobile Optimierung */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        display: block;
        padding: 10px;
        background-color: #f0f0f0;
        text-align: center;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container, .content {
        width: 100%;
        padding: 0;
    }

    h1, h2, h3 {
        font-size: 1.5em;
    }

    .btn {
        width: 100%;
        padding: 15px;
        font-size: 1em;
    }


/* Hamburger-Icon Styling */
.menu-toggle {
    font-size: 2em;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

/* Animiertes Menü Styling */
.animated-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: white;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 999;
}

.animated-menu ul {
    list-style: none;
    padding: 0;
}

.animated-menu ul li {
    margin: 20px 0;
}

.animated-menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
}

.animated-menu ul li a:hover {
    background-color: #575757;
}

/* Klasse für Anzeige des Menüs */
.show-menu {
    left: 0;
}
}