/* Grundlegende Stile */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header und Navigation */
header {
    background: #fff;
    border-bottom: 2px solid #0056b3;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .logo {
    height: 60px;
    margin-bottom: 10px;
}

header h1 {
    display: none;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

header nav li {
    margin: 0 10px;
}

header nav a {
    text-decoration: none;
    color: #0056b3;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s;
}

header nav a:hover {
    color: #003366;
}

/* Hauptinhaltsbereiche */
main {
    padding-top: 0px;
}

section {
    padding: 40px 0;
}

.bg-light {
    background-color: #e9e9e9;
}

/* Flexbox-Layouts für Sektionen */
.about-me-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.about-me-text {
    text-align: left;
    width: 100%;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Kontakt-Sektion */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    height: 30px;
    width: auto;
}

.hours-table {
    width: 100%;
}
.up-arrow {
    font-size: 12px; /* Macht den Pfeil größer */
    color: #0056b3; /* Gibt dem Pfeil die gewünschte Farbe */
    font-weight: bold; /* Macht den Pfeil dicker */
}

/* Desktop-Anpassungen */
@media (min-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    header .logo {
        margin-bottom: 0;
    }

    header h1 {
        display: block;
    }

    .about-me-section {
        flex-direction: row;
        text-align: left;
    }

    .image-gallery {
        flex-direction: row;
        justify-content: center;
    }

    .gallery-image {
        width: 25%; /* Bilder teilen sich den Platz auf dem Desktop */
    }
}