body {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2em;
    /* 1.2em ≈ 19.2px (basierend auf Standard-Browser-Schriftgröße von 16px) */
}

h1,
h2,
h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    /* Arial als Fallback */
     color: lightgray;
}

div,
p,
th,
td,
ul,
li {
    color: lightgray;
}

.section {
    padding: 60px 20px;
}

a {
    color: lightgray;
    text-decoration: none;
}

li {
    margin-bottom: 0.5em;
    /* Abstand zwischen den Listenelementen */
}

/* Menü */
.menu-icon {
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: black;
    padding: 10px;
    cursor: pointer;
    z-index: 3000;
    color: lightgrey;
    border-radius: 5px;
    user-select: none;
}

.menu-icon i {
    font-size: 24px;
}

.w3-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.7);
    padding-top: 60px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    color: lightgrey;
}

/* Menü sichtbar: Menü rutscht rein */
.w3-sidebar.open {
    transform: translateX(0);
}

/* Menüeinträge linksbündig innerhalb des Menüs */
.w3-sidebar a {
    display: block;
    padding: 16px 24px;
    font-size: 18px;
    color: lightgrey;
    text-align: left;
    text-decoration: none;
}

.w3-sidebar a:hover {
    background-color: #575757;
}

/* Responsive: Menü bleibt rechts, aber schmaler auf kleinen Bildschirmen */
@media (max-width: 600px) {
    .w3-sidebar {
        width: 200px;
    }
}

/* Swiper */
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Swiper-Slides */
.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    min-height: 400px;
    z-index: 1;
}

/* Swiper-Bilder */
.swiper-slide-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
    color: darkgrey;
     /* display: block; */
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: darkgrey;
   /* display: block; */
}

/* Datenschutz & Impressum */
.hidden {
    display: none !important;
}