body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

nav {
    background: #333;
    color: #fff;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Menü-Links */
nav a {
    color: #fff;
    margin: 0 1em;
    text-decoration: none;
    font-weight: bold;
}

/* Logo-Container nach rechts verschieben */
.logo-container {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;  /* Verschiebt das Logo nach rechts */
}

/* Logo und Name */
.logo {
    display: flex;
    align-items: center;
    text-align: center;
    margin-right: 25px;  /* Gleicher Abstand wie vorher */
    color: white;
}

nav .logo img {
    max-height: 40px;
    width: 40px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    font-size: 1em;
    font-weight: bold;
    color: white;
}

.container {
    padding: 2em;
    margin-top: 70px;
}

header {
    background: url('header-image.jpg') no-repeat center center/cover;
    height: 400px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin: 0;
}

.section {
    background: white;
    margin: 2em 0;
    padding: 2em;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

.container .socials img {
    max-width: 24px;   
    max-height: 24px;
    margin-left: 5px;
}

/* Swiper Styles */
.swiper {
    width: 90vmin;    /* Größer wie A4-Querformat */
    height: calc(90vmin / 1.414); /* Höhe im Verhältnis 297:210 */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgb(255, 255, 255);
    margin: 0 auto;
}
    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;  /* Größe bleibt unverändert */
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Zeigt das ganze Bild an */
    border-radius: 10px;
}

.swiper-button-next, .swiper-button-prev {
    color: #ffffff;
}

.swiper-pagination-bullet {
    background: #ffffff;
}
