/* Basis-Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #131212;
}

* {
    box-sizing: border-box;
}


.h1 { /* ueberschrift */
    font-weight: lighter; /*dünner werden lassen ? */
}

/* Textblock */
.text-block {
    width: 100%;
    max-width: 65%; /* Maximal 65% der Gesamtbreite */
    margin-left: 0; /* Kein Abstand links */
    text-align: left; /* Text im Container linksbündig */
    padding: 0; /* Keine zusätzlichen Innenabstände */
    line-height: 1.2;
    letter-spacing: 1.1px;
}

/* Content Menu */
.content-menu {
    position: fixed;
    top: 70%;
    transform: translateY(-50%);
    left: calc(15vw - 30px);
    width: 15vw; /* Kleinere Breite */
    max-width: 200px;
    text-align: right;
    z-index: 100;
}

main {
    margin-top: 150px;
}

.content-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px; /* Kleinere Schriftgröße */
    font-weight: 200; /* Dünnste Schrift */
    color: #333; /* 80% Schwarz */
}


.content-menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    transition: color 0.1s;
    white-space: nowrap;
    line-height: 2.2;
    transition: font-size 0.3s;
}

.content-menu ul li a:hover {
    color: #54575b;
    font-size: 20px;
}

/* Hauptcontainer */
.content-main {
    width: 70%; /* Breite des Containers */
    margin-left: auto; /* Automatische Ausrichtung nach rechts */
    margin-right: 0; /* Kein Abstand rechts */
    margin-bottom: 30px; /* Abstand nach unten */
}



/* Gemeinsames Styling für Galerien */
.image-gallery, 
.image-gallery3, 
.image-gallery2-container {
    margin-bottom: 4px;
    gap: 4px;
}

/* Erste Galerie */
.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Zwei gleich große Spalten */
    gap: 4px; /* Abstand zwischen den Bildern */
    width: 100%; 
}

.image-gallery img {
    width: 100%; /* Bild passt sich der Breite des Containers an */
    height: auto; /* Dynamische Höhe */
    object-fit: cover; 
}

/* Galerie 3: Alle Bilder untereinander */
.image-gallery3 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%; /* Nutzt die gesamte Breite des Containers */
}

.image-gallery3 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Zweite Galerie */
.image-gallery2-container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Linke Spalte kleiner */
    gap: 4px;
    width: 100%; /* Gleiche Breite wie die Galerie */
}

.image-gallery2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.image-gallery2 img {
    width: 100%;
    height: calc(50% - 2px); /* Gleichmäßige Höhe der Bilder */
    object-fit: cover;
}

.image-gallery2-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-gallery2-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text h4 {
    font-size: 18px; 
    margin-bottom: 5px;
    font-weight: 200; 
    color: #333; /* 80% Schwarz */
}


