/* Allgemein */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f6f5f0;
    color: #2f2f2f;
}

/* Layout Container */
.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    position: fixed;
    width: 220px;
    height: 100vh;
    background-color: #e3e2da;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 22px;
    color: #3a5525;
    line-height: 1.2;
    margin-bottom: 40px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #3a3a3a;
    font-weight: bold;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #618c44;
}

/* Hauptinhalt */
.main-content {
    margin-left: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Startseite Hero */
.hero-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-text {
    position: absolute;
    top: 40%;
    left: 10%;
    color: white;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #618c44;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #4f7035;
}

/* Angebote-Übersicht */
.angebote-container {
    padding: 60px 40px;
    background-color: #f6f5f0;
    min-height: 100vh;
}

.angebote-heading {
    font-size: 36px;
    color: #3a5525;
    text-align: center;
    margin-bottom: 40px;
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.angebot-box {
    border: 2px solid #d0d0c9;
    padding: 20px;
    border-radius: 12px;
    background-color: white;
    transition: transform 0.2s ease;
}

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

.angebot-box h2 {
    color: #4f7035;
    font-size: 22px;
    margin-bottom: 10px;
}

.angebot-box p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.angebot-box a {
    color: #618c44;
    text-decoration: none;
    font-weight: bold;
}

.angebot-box a:hover {
    text-decoration: underline;
}

/* Kontaktformular */
.kontakt-container {
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kontakt-form label {
    font-weight: bold;
    color: #444;
}

.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.kontakt-form button {
    background-color: #618c44;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.kontakt-form button:hover {
    background-color: #4f7035;
}

/* Über mich */
.uebermich-section {
    padding: 60px 40px;
    background-color: #f6f5f0;
}

.uebermich-content {
    display: flex;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.uebermich-bild {
    flex: 0 0 250px;
    margin-right: 30px;
}

.uebermich-bild img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.uebermich-text {
    flex: 1;
}

.uebermich-text h1 {
    font-size: 32px;
    color: #3a5525;
    margin-bottom: 20px;
}

.uebermich-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Einzelangebote */
.angebot-einzeln {
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.angebot-einzeln h1 {
    color: #3a5525;
    margin-bottom: 20px;
    font-size: 32px;
}

.angebot-einzeln p,
.angebot-einzeln ul li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Termine */
.termine-section {
    padding: 60px 40px;
    background-color: #f6f5f0;
}

.month-filter {
    text-align: center;
    margin-bottom: 30px;
}

.month-filter label {
    font-weight: bold;
    margin-right: 10px;
}

.month-filter select {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.event-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.event {
    background-color: white;
    border: 2px solid #d0d0c9;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-date {
    font-size: 18px;
    font-weight: bold;
    color: #3a5525;
    margin-bottom: 10px;
}

.event-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.event-label {
    margin-top: auto;
    background-color: #618c44;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: bold;
    align-self: flex-start;
}








/* Termine nochmal */



.event-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.event {
    background-color: white;
    border: 2px solid #d0d0c9;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-date {
    font-size: 18px;
    font-weight: bold;
    color: #3a5525;
    margin-bottom: 10px;
}

.event-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.event-label {
    margin-top: auto;
    background-color: #618c44;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: bold;
    align-self: flex-start;
}




@media (max-width: 768px) {
    .hero-text {
        position: absolute;
        top: 20%;
        left: 5%;
        right: 5%;
        transform: none;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .sidebar {
        display: none; /* Sidebar ausblenden */
    }

    .menu-toggle {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1000;
        background-color: #618c44;
        color: white;
        border: none;
        padding: 10px 14px;
        border-radius: 4px;
        font-size: 18px;
    }

    .main-content {
        margin-left: 0;
    }

    /* Optional: Sidebar als Dropdown-Menü bei Klick */
    .sidebar.open {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 220px;
        height: 100vh;
        background-color: #e3e2da;
        z-index: 999;
    }
}

/* Menü-Button standardmäßig verstecken */
.menu-toggle {
    display: none;
}

/* Sidebar für mobile Ansicht ausblenden */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: fixed;
        top: 15px;
        left: 15px;
        background-color: #618c44;
        color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 6px;
        font-size: 20px;
        z-index: 1000;
    }

    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 220px;
        height: 100vh;
        background-color: #e3e2da;
        padding: 30px 20px;
        z-index: 999;
        flex-direction: column;
    }

    .sidebar.open {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }
}