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

header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 30px 20px;
    text-align: center;
}

h1 {
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #111;
}

.nav-titel {
    font-weight: bold;
    font-size: 16px;
    display: block;
}

.nav-unterzeile {
    font-size: 11px;
    color: #888;
    display: block;
    margin-top: 5px;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.hero {
    background-color: #f3f3f3;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.hero-img {

    opacity: 1;

    width: 100%;
    height: auto;
    display: block;


}

.hero-text-box {
    padding: 25px 0;
    text-align: center;
}

.hero-title {
    font-weight: 300;
    font-size: 36px;
    color: #111;
    margin: 0 0 5px 0;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}


.about-me {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 50px;
}

.about-img {
    max-width: 300px;
    border-radius: 4px;
}

.galerie-liste {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.galerie-bild {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.galerie-item {
    text-align: center;
    margin-bottom: 20px;
}

.bild-titel {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    font-weight: 300;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    background-color: #f3f3f3;
    border-top: 1px solid #eaeaea;
    font-size: 13px;
    color: #666;
}

footer a {
    color: #111;
    text-decoration: none;
    font-weight: bold;
}