/* Allgemeine Stile */
* {
    text-decoration: none;
}

body {
    font-family: 'Vollkorn', sans-serif;
    background-color: #f3f3f3;
}

.menu {
    background-color: #fff;
    width: 100%;
    height: 110px;
}

.menu > .header-brand {
    font-family: Vollkorn;
    font-size: 24px;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}

.menu nav ul {
    display: block;
    margin: 0 auto;
    width: fit-content;
    position: relative;
}

.menu nav ul li {
    display: block;
    float: left;
    list-style: none;
    padding: 0 16px;
    position: relative;
}

.menu nav ul li a {
    font-family: Vollkorn;
    font-size: 16px;
    color: #111;
}

.menu nav ul li a:hover {
    background-color: #f3f3f3;
}

.menu nav ul li ul {
    display: none;
    position: absolute;
    background-color: white;
    padding: 5px;
    border-radius: 0px 0px 4px 4px;
}

.menu nav ul li:hover ul {
    display: block;
    z-index: 1;
}

.menu nav ul li ul li {
    width: 180px;
    border-radius: 4px;
    padding: 5px;
    position: relative;
}

.menu nav ul li ul li a:hover {
    background-color: #f3f3f3;
}

.menu > .header-cases {
    display: none;
}

.index-banner {
    width: 100%;
    height: calc(100vh - 100px);
    background-image: url("img/banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: table;
}

.vertical-center {
    display: table-cell;
    vertical-align: middle;
}

.index-banner h2 {
    font-family: Vollkorn;
    line-height: 60px;
    font-size: 60px;
    font-weight: 900;
    text-shadow: 2px 2px 8px #111;
    color: #fff;
    text-align: center;
}

.index-banner h1 {
    font-family: Vollkorn;
    font-size: 28px;
    font-weight: 100;
    font-style: italic;
    line-height: 40px;
    text-shadow: 2px 2px 8px #111;
    color: #fff;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.gallery a {
    display: block;
    width: 200px;
    height: 200px;
}

/* Mobile spezifische Anpassungen */
@media (max-width: 800px) {
    .gallery a {
        width: 150px;
        height: 150px;
    }

    .menu nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .menu.nav-open nav ul {
        display: flex;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .menu nav ul li {
        float: none;
        padding: 10px;
        text-align: center;
        width: 100%;
    }

    .index-banner h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .index-banner h1 {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (min-width: 801px) {
    .menu {
        flex-direction: row;
    }
}

.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

main {
    padding: 20px;
}

/* Stile für Eingabefelder und Buttons */
input[type="submit"], .mobile-friendly-button {
    background-color: #4CAF50; /* Grüner Hintergrund */
    color: white;             /* Weiße Schrift */
    border: none;             /* Kein Rahmen */
    padding: 10px 20px;       /* Polsterung */
    font-size: 16px;          /* Schriftgröße */
    cursor: pointer;          /* Mauszeiger zeigt Hand */
    border-radius: 5px;       /* Abgerundete Ecken */
    transition: background-color 0.3s; /* Übergang für Hintergrundfarbe */
    display: inline-block;    /* Standard-Anzeige */
    width: auto;              /* Standard-Breite */
}

input[type="submit"]:hover, .mobile-friendly-button:hover {
    background-color: #45a049; /* Dunkleres Grün bei Hover */
}

/* Mobile spezifische Anpassungen */
@media (max-width: 800px) {
    input[type="submit"], .mobile-friendly-button {
        font-size: 20px;       /* Größere Schriftgröße für mobile Geräte */
        padding: 15px 30px;    /* Größere Polsterung */
        width: 100%;           /* Volle Breite auf mobilen Geräten */
        box-sizing: border-box;/* Einschließen des Polsterungs- und Randwertes in die Breite */
    }
}

.cookie-disclaimer {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}

.cookie-disclaimer button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
}

.cookie-disclaimer button:hover {
    background-color: #45a049;
}

/* Stile für das Hamburger-Menü */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #111;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
}



