
.gallery {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px; /* To align with the navbar and other content */
    padding: 0;
}

.gallery-column {
    width: 48%;  /* Reduce the width slightly to make the middle gap smaller */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}



.photo-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Einheitliche Einrückung für die gesamte Galerie */
}

.photo-gallery h1 {
    font-size: 36px;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 20px; /* Abstand unter der Überschrift */
    padding-left: 0; /* Entfernt zusätzliche Einrückungen */

}

.photo-gallery p {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    max-width: 1200px; /* Breite des Textes */
    margin: 0 0 20px 0; /* Geringer Abstand unten und kein Abstand oben */
    padding-left: 0; /* Entfernt zusätzliche Einrückungen */
    color: #757081;
}
/* Overlay Styles */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
    border-radius: 10px;
}

.overlay p {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
}

/* Cookie Banner Styles */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 1rem;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.cookie-banner-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-buttons button {
    background-color: #6c4f70;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    cursor: pointer;
    border-radius: 5px;
}

/* Entfernung der grauen Farbe beim Hover */
#cookie-settings-button:hover {
    background-color: #ffffff; /* Hintergrund bleibt weiß */
    color: #6c4f70;
}
/* Kontakt-Icons und Cookie-Button Größenanpassung */
.contact-icons img, 
#cookie-settings-button {
    width: 50px; /* Gleiche Größe wie der Cookie-Button */
    height: 50px;
    border-radius: 50%; /* Rund wie der Cookie-Button */
    border: 3px solid #6c4f70; /* Lila Rand */
    background-color: #ffffff; /* Weißer Hintergrund */
    padding: 5px;
}

/* Cookie-Button Anpassung */
#cookie-settings-button {
    position: fixed;
    bottom: 23px;
    left: 20px;
    border: 3px solid #6c4f70; /* Lila Rand */
    background-color: #ffffff; /* Weißer Hintergrund */
    color: #6c4f70; /* Textfarbe in Lila */
    width: 55px;
    height: 55px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

#cookie-settings-button::before {
    content: "\1F36A"; /* Unicode for cookie icon */
    font-size: 1.5rem;
}