/* Allgemeine Stile */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: url('Bilder/Hintergrund.webp') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    overflow: auto; /* ErmÃ¶glicht das Scrollen des Body */
}

.wrapper {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Zentriert den Inhalt vertikal */
    align-items: center;
    overflow: auto; /* Scrollen innerhalb des Wrappers ermÃ¶glichen */
    padding: 80px 0; /* Fester Abstand nach oben und unten */
    box-sizing: border-box;
}

.center-subtitle {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.center-social {
    text-align: center;
}

.text-container {
    word-wrap: break-word; /* Erlaubt das Brechen von WÃ¶rtern am Zeilenende */
}

.overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.2); /* Transparenz beibehalten */
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    display: flex;
    flex-direction: column; /* Ã„ndert die Richtung der Flexbox-Ausrichtung */
    justify-content: center; /* Zentriert den Inhalt innerhalb des Overlays */
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    min-height: calc(100vh - 160px); /* HÃ¶he des Viewports abzÃ¼glich der AbstÃ¤nde oben und unten */
    position: relative;
}

.content {
    width: 100%;
    max-width: 800px; /* Begrenzung der maximalen Breite des Inhalts */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.content.visible {
    opacity: 1;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.center-content p {
    margin: 5px 0; /* Verringert den Abstand zwischen den AbsÃ¤tzen */
}

/* Typografie */
h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0.5em 0;
    line-height: 1.2;
}

p, li {
    font-size: 1.2em;
    margin: 0.5em 0;
    text-align: justify; /* FÃ¼gt Blockschrift hinzu */
}

/* styles.css */

#elfsight-widget-container {
    display: none; /* Dies kann entfernt werden, wenn das Widget sichtbar sein soll */
    position: absolute;
    z-index: 1000;
}

#close-widget-button {
    position: absolute;
    top: 5px;
    right: -25px;
    z-index: 1001;
    color: black;
}

#tawkchat-container, .tawkchat-popup {
    display: block !important;
    z-index: 1000; /* Sicherstellen, dass das Widget nicht von anderen Elementen verdeckt wird */
}

/*Dropdown Menu*/

/* Styles for the menu container */
.menu-container {
    position: relative;
    display: inline-block;
    width: auto;
}

/* Styles for the dropdown button */
.button.dropdown-btn {
    background-color: rgba(255, 255, 255, 0.2); /* Light gray background */
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px 25px 0 0; /* Rounded corners on top only */
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    box-sizing: border-box;
}

.button.dropdown-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.dropdown-btn {
    width: 100%; /* Ensures the button takes the full width of the container */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 90%;
    left: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transform: translateX(0);
    box-sizing: border-box;
 }

.dropdown-item, .dropdown-item a {
    margin: 0;
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1em;

}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-container.show .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item:disabled {
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

.dropdown-item:disabled:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 20px; 
    margin-top: 2em;
    flex-wrap: wrap;
    width: 100%;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-top: 1em;
    flex-wrap: wrap;
}

.button {
    padding: 0.75em 2em;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 5px;
}

.button.green {
    background-color: rgba(40, 167, 69, 0.8);
    color: white;
    border: 2px solid rgba(40, 167, 69, 0.6);
}

.button.green:hover {
    background-color: rgba(33, 136, 56, 0.8);
    box-shadow: none;
}

.button.grey {
    background-color: rgba(128, 128, 128, 0.8);
    color: white;
    border: 2px solid rgba(128, 128, 128, 0.6);
}

.button.grey:hover {
    background-color: rgba(105, 105, 105, 0.8);
    box-shadow: none;
}

.button.transparent {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.button.transparent:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.center-button {
    display: flex;
    justify-content: center;
    width: 100%;
	position: relative;
}

.contact-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-top: 2em;
    flex-wrap: wrap;
}

.contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    width: 120px; /* Boxen schmaler */
    height: 150px;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-box span {
    font-size: 1.2em;
}

.contact-box:hover {
    border-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.full-width-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 1em;
}

.contact-box.full-width {
    width: calc(4 * 120px + 3 * 1em); /* Breite entspricht der Summe aller Buttons und deren AbstÃ¤nde */
    padding: 0.25em 0 !important; /* DÃ¼nnerer Button */
    font-size: 1.3em; /* GrÃ¶ÃŸere SchriftgrÃ¶ÃŸe */
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1); /* Gleiche Hintergrundfarbe wie die anderen KÃ¤stchen */
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    height: auto; /* Automatische HÃ¶he */
    line-height: 1.2; /* LinienhÃ¶he fÃ¼r dÃ¼nneren Button */
}

.contact-box.full-width:hover {
    border-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.icon {
    width: 50px;
    height: 50px;
    object-fit: contain; /* Bilder werden skaliert, um in den Container zu passen */
    margin-bottom: 25px; /* Abstand zwischen dem Bild und dem Namen */
}

.icon-placeholder {
    width: 50px;
    height: 50px;
    background-color: black; /* Platzhalterfarbe */
    border-radius: 50%;
    margin-bottom: 25px;
}

/* Specific styles for the affirmation buttons */
.button.affirmation-main {
	font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
	padding: 0.75em 2em;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 200px; /* Set a fixed width for the button */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.button.affirmation-main:hover {
	font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
	padding: 0.75em 2em;
    background-color: rgba(255, 255, 255, 0.4);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.acceptButton{
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: rgba(40, 167, 69, 0.8); /* Matching green color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.acceptButton:hover {
    background-color: rgba(33, 136, 56, 0.8); /* Darker green on hover */
}

/* Desktop- und Tablet-Ansicht */
@media (min-width: 481px) and (max-width: 1024px)  {
    .button {
        display: flex;
        flex-direction: column; 
        max-width: 200px;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0px;
	width: 100%;
	font-size: 13px;
    }

    .menu-container {
    	position: relative;
    	display: inline-block;
    	width: auto;
    }

    .contactButton {
        display: flex; /* Ã„ndern Sie dies in flex, um die Anzeige als flexibles Layout zu aktivieren */
        flex-direction: column; /* Sicherstellen, dass die Elemente untereinander angezeigt werden */
        max-width: 200px; /* Optional: Setzt eine maximale Breite der Buttons */
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0em 5; /* Abstand zwischen den Buttons */
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%; /* Stellt sicher, dass das Dropdown die gesamte Breite des Containers einnimmt */
        max-width: 300px; /* Begrenzung der maximalen Breite */
        left: 0%; /* Zentriert das Dropdown relativ zum Container */
        transform: translateX(0); /* Verschiebt das Dropdown zurück zur Mitte */
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
        z-index: 1;
        top: 90%; /* Direkt unter dem Dropdown-Button */
        border-radius: 0 0 10px 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.7);
    }

    .button.dropdown-btn {
        width: 100%; /* Stellt sicher, dass der Button die gesamte Breite des Containers einnimmt */
        max-width: 300px; /* Begrenzung der maximalen Breite */
        margin: 0 auto; /* Zentriert den Button */
        text-align: center;
	margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .button {
        display: flex; 
        flex-direction: column; 
        max-width: 200px;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0px;
	width: 100%;
	font-size: 13px;
    }

    .contactButton {
        display: flex; /* Ã„ndern Sie dies in flex, um die Anzeige als flexibles Layout zu aktivieren */
        flex-direction: column; /* Sicherstellen, dass die Elemente untereinander angezeigt werden */
        max-width: 200px; /* Optional: Setzt eine maximale Breite der Buttons */
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0em 5; /* Abstand zwischen den Buttons */
    }

    .button.dropdown-btn {
	top: 90%;
	margin-top: 15px;
    }
}

/* Tabelle */
.table {
    display: table;
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    vertical-align: top;
}

.table-cell:first-child {
    width: 30%;
    font-weight: bold;
}

.table-cell:last-child {
    width: 70%;
}

/* Kartenansicht fÃ¼r Weitere Kenntnisse */
.knowledge-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.knowledge-card {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    width: calc(33.333% - 40px); /* 3 Karten nebeneinander mit 20px LÃ¼cke */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box; /* Padding wird innerhalb der Breite berÃ¼cksichtigt */
    display: flex;
    align-items: center; /* Vertikale Zentrierung */
    justify-content: center; /* Horizontale Zentrierung */
    height: 50px; /* Einheitliche HÃ¶he fÃ¼r alle Karten */
}

.knowledge-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.knowledge-card span {
    display: block;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 0; /* Kein Abstand unter dem Text */
}

/* Responsive Anpassungen */
@media (min-width: 481px) and (max-width: 1024px) {
    .knowledge-card {
        width: calc(50% - 30px); /* 2 Karten nebeneinander mit 20px LÃ¼cke */
    }
}

@media (max-width: 480px) {
    .knowledge-card {
        width: calc(100% - 20px); /* 1 Karte pro Zeile mit 20px LÃ¼cke */
    }
}

/* Kontaktformular-Stile */
form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

label {
    font-size: 1.2em;
    color: white;
    text-align: left;
}

input, textarea {
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

textarea {
    resize: vertical;
    height: 150px;
}

.submit-container {
    display: flex;
    gap: 1em;
    justify-content: space-between;
    align-items: center;
}

.submit-container .button {
    flex: 1; /* Beide Buttons gleich groÃŸ machen */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: auto; /* Verhindert, dass eine minimale Breite gesetzt wird */
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: none;
    text-align: center;
    word-wrap: break-word;
}


.popup.offering-popup {
    /* Spezifische Styles fÃ¼r Offering-Popups */
}
@media (min-width: 481px) and (max-width: 1024px) {
    .submit-container {
        flex-direction: column;
    }
    .button.transparent {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .overlay {
        padding: 10px;
        margin: 10px;
    }
    .content {
        padding: 10px;
    }
    .submit-container {
        flex-direction: column;
        gap: 1em;
    }
}

/* Impressum-Details */
.impressum-details {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    font-size: 1.2em;
}

.impressum-item {
    margin-bottom: 1em;
}

.impressum-item strong {
    display: block;
    color: white;
    margin-bottom: 0.3em;
}

.impressum-item span {
    display: block;
    color: white;
}

/* Angebote */
.offerings {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
    gap: 2em;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.offering {
    text-align: center; /* Zentriert den gesamten Inhalt der Angebote */
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.offering img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.offering:hover img {
    transform: scale(1.05);
}

.offering:hover .popup {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.offering p {
    white-space: normal; /* Erlaubt den Textumbruch */
    overflow: visible; /* Verhindert das Abschneiden des Textes */
    text-overflow: initial; /* Setzt das text-overflow Attribut zurÃ¼ck */
    word-break: break-word; /* Bricht lange WÃ¶rter um */
    text-align: center; /* Zentriert den Text unter den Bildern */
}

/* Popup Styles */
.popup {
    display: none;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 270px;
    text-align: justify;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.popup-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-image-wrapper {
    position: relative;
    width: auto;
    height: 100px;
    margin: -60px 5px;
	margin-bottom: 10px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
	display: flex;
}

.popup-image {
    width: 100%; /* Automatische Breitenanpassung fÃ¼r ProportionalitÃ¤t */
    height: 100%; /* Automatische HÃ¶henanpassung fÃ¼r ProportionalitÃ¤t */
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.popup-text {
    color: black;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    font-family: Arial, sans-serif;
    text-align: justify;
    margin: 5px 0;
    line-height: 1.6;
}

/* Footer */
.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    left: 50%; /* Ã„ndere die Positionierung zur Mitte */
    width: 100%;
    transform: translateX(-50%); /* Verschiebe den Footer zurÃ¼ck zur Mitte */
    padding: 10px 0;
    z-index: 10;
    margin-top: 20px;
}

.footer-container p {
    margin: 10px 0 0; /* Abstand Ã¼ber und unter dem Text */
    font-size: 0.8em;
}

.footer-container .footer-button {
    text-decoration: none;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 3px 7px;
    border-radius: 5px;
    transition: background 0.3s;
    margin-top: 5px;
    display: inline-block;
    text-align: center;
    width: 150px; /* Feste Breite fÃ¼r beide Buttons */
}

.footer-container .footer-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.footer-container .social-links {
    background: none; /* Entfernt den Hintergrund */
    border: none; /* Entfernt den Rand */
    box-shadow: none; /* Entfernt Schatten */
    margin-bottom: 0px; /* Abstand zum Impressum */
    display: flex;
    justify-content: center; /* Zentriere die Logos */
    gap: 10px; /* Abstand zwischen den Logos */
}

.footer-container .social-logo {
    width: 20px; /* GrÃ¶ÃŸe des Logos anpassen */
    height: 20px; /* GrÃ¶ÃŸe des Logos anpassen */
    transition: transform 0.3s, box-shadow 0.3s; /* Effekte bei Hover */
}

.footer-container .social-logo:hover {
    transform: scale(1.1); /* VergrÃ¶ÃŸerung bei Hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatteneffekt bei Hover */
}
.footer-spacer {
    height: 100px; /* Platzhalter fÃ¼r den Footer */
    width: 100%;
}

/* Responsive Footer */
@media (min-width: 481px) and (max-width: 1024px) {
    h1 {
        font-size: 1.8em;
        margin: 0.2em 0;
    }

    h2 {
        font-size: 1.3em;
        margin: 0.2em 0;
    }

    p {
        font-size: 1em;
    }

    .offerings {
        flex-direction: column;
        gap: 1.5em;
        margin-top: 2em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
        margin: 0.2em 0;
    }

    h2 {
        font-size: 1.1em;
        margin: 0.2em 0;
    }

    p {
        font-size: 0.9em;
    }

    .content {
        padding: 10px;
    }

    .offerings {
        flex-direction: column;
        gap: 5px;
        margin-top: 2em;
    }
    .offering {
        margin-bottom: 5px; /* Verringert den Abstand zwischen den Angeboten */
    }

    .offering img {
        margin-bottom: 5px; /* Verringert den Abstand zwischen Bild und Text */
 	max-width: 100px;
    }

    .footer {
        margin-top: 10px;
    }

    /* Stellt sicher, dass die Buttons gleich groÃŸ sind */
    .footer-container .footer-button {
        width: calc(50% - 10px); /* Buttons auf gleiche Breite setzen */
        max-width: 150px; /* Maximale Breite setzen */
        padding: 5px; /* Kleinere Polsterung */
        margin: 5px; /* Abstand zwischen den Buttons */
    }
    .footer-container {
        margin-top: 20px; /* FÃ¼gt einen Abstand zum vorherigen Inhalt hinzu */
    }
}

/* Galerie */
.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.image-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid white;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.image-gallery img:hover {
    transform: scale(2.5);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.image-gallery-uber {
	width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	gap: 30px;
}

.image-uber {
    width: 250px; /* VergrÃ¶ÃŸerte BildgrÃ¶ÃŸe */
    height: 250px; /* VergrÃ¶ÃŸerte BildgrÃ¶ÃŸe */
    object-fit: cover;
	border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); /* Optionaler Schatten fÃ¼r bessere Sichtbarkeit */
    margin-bottom: 10px; /* Abstand zum Button */
}

.button-uber {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

#buttonMario, #buttonAnika {
    text-align: center; 
    width: 190px;
    flex-basis: auto;
    margin-bottom: 20px;
}

#buttonZuruck {
    width: 30%;
    order: 3;     
    text-align: center;
    margin-top: -20px;
}

@media (min-width: 481px) and (max-width: 1024px) {
    .image-gallery img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .image-gallery img {
        width: 60px;
        height: 60px;
    }
}

/* Ripple-Effekt */
.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('Bilder/floweroflife.png') no-repeat center center;
    background-size: cover;
    transform: scale(0);
    animation: ripple-animation 1s ease-out;
}

@keyframes ripple-animation {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Ladebildschirm */
.loading-overlay {
    display: none; /* StandardmÃ¤ÃŸig verstecken */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Bilder/Hintergrund.jpg') no-repeat center center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column; /* FÃ¼gt eine Spalte hinzu, um Text unter dem Baum anzuzeigen */
    opacity: 1; /* Sichtbar */
    transition: opacity 1.5s ease-in-out; /* Sanfter Ãœbergang */
}

.loading-overlay.fade-out {
    opacity: 0; /* Unsichtbar */
}

.tree-of-life {
    width: 200px; /* GrÃ¶ÃŸe des Baumes */
    height: 200px; /* GrÃ¶ÃŸe des Baumes */
    background: url('Bilder/treeoflife.png') no-repeat center center;
    background-size: contain;
    clip-path: circle(0% at 50% 100%);
    animation: revealCircle 2s ease-in-out forwards; /* Neue Animation anwenden */
}

@keyframes revealCircle {
    0% {
        clip-path: circle(0% at 50% 100%);
    }
    100% {
        clip-path: circle(75% at 50% 50%);
    }
}

.white-rectangle {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* FÃ¼gt eine Spalte hinzu, um Text unter dem Baum anzuzeigen */
    border-top: 2px solid black; /* Schwarze Kontur oben */
    border-bottom: 2px solid black; /* Schwarze Kontur unten */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 3D-Effekt */
}

/* Text unter dem Baum */
.tree-of-life-text {
    margin-top: 10px; /* Weniger Abstand zum Baum */
    text-align: center;
    font-size: 1.2em; /* Kleinere SchriftgrÃ¶ÃŸe */
    font-weight: bold;
    color: black;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards; /* FÃ¼gen Sie eine Fade-In-Animation hinzu */
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert den Text */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.tree-of-life-text .name {
    font-family: 'Great Vibes', cursive; /* Ã„ndere die Schriftart nach Wunsch */
    font-size: 2em; /* Kleinere SchriftgrÃ¶ÃŸe */
    color: black;
    margin: 0; /* Kein zusÃ¤tzlicher Abstand */
}

.tree-of-life-text .title {
    font-family: 'Open Sans', sans-serif; /* Ã„ndere die Schriftart nach Wunsch */
    font-size: 1em; /* Kleinere SchriftgrÃ¶ÃŸe */
    font-weight: 300;
    color: black;
    letter-spacing: 0.1em;
    margin: 0; /* Kein zusÃ¤tzlicher Abstand */
}

@media (min-width: 481px) and (max-width: 1024px) {
    .loading-overlay {
        background-size: cover; /* Hintergrundbild bleibt gleich */
        padding: 20px; /* Innenabstand hinzufügen, um Platz für den Inhalt zu schaffen */
    }

    .tree-of-life {
        width: 140px; /* Größe des Baumes für Mobilgeräte verringern */
        height: 140px; /* Größe des Baumes für Mobilgeräte verringern */
    }

    .white-rectangle {
        top: 20%;
        bottom: 20%;
        padding: 10px;
        border-top: 1px solid black; /* Grenze etwas dünner machen */
        border-bottom: 1px solid black; /* Grenze etwas dünner machen */
        box-shadow: none; /* Schatten entfernen, um es auf Mobilgeräten einfacher zu halten */
    }

    .tree-of-life-text {
        margin-top: 5px; /* Weniger Abstand zum Baum */
        font-size: 1em; /* Schriftgröße weiter reduzieren */
    }

    .tree-of-life-text .name {
        font-size: 1.5em; /* Name etwas kleiner für Mobilgeräte */
    }

    .tree-of-life-text .title {
        font-size: 0.9em; /* Titel noch kleiner */
    }
}
@media (max-width: 480px) {
    .loading-overlay {
        background-size: cover; /* Hintergrundbild bleibt gleich */
        padding: 20px; /* Innenabstand hinzufügen, um Platz für den Inhalt zu schaffen */
    }

    .tree-of-life {
        width: 120px; /* Größe des Baumes für Mobilgeräte verringern */
        height: 120px; /* Größe des Baumes für Mobilgeräte verringern */
    }

    .white-rectangle {
        top: 20%;
        bottom: 20%;
        padding: 10px;
        border-top: 1px solid black; /* Grenze etwas dünner machen */
        border-bottom: 1px solid black; /* Grenze etwas dünner machen */
        box-shadow: none; /* Schatten entfernen, um es auf Mobilgeräten einfacher zu halten */
    }

    .tree-of-life-text {
        margin-top: 5px; /* Weniger Abstand zum Baum */
        font-size: 1em; /* Schriftgröße weiter reduzieren */
    }

    .tree-of-life-text .name {
        font-size: 1.5em; /* Name etwas kleiner für Mobilgeräte */
    }

    .tree-of-life-text .title {
        font-size: 0.9em; /* Titel noch kleiner */
    }
}


/* Discord Button */
.button.discord {
    background-color: rgba(114, 137, 218, 0.8); /* Discord-Farbe */
    color: white;
    border: 2px solid rgba(114, 137, 218, 0.6);
}

.button.discord:hover {
    background-color: rgba(114, 137, 218, 0.6);
    color: white;
    border: 2px solid rgba(114, 137, 218, 0.9);
    box-shadow: none;
}

/* CSS-Klasse zum Ausblenden von Elementen */
.hidden {
    display: none;
}

#status-message {
    margin-top: 10px;
    padding: 10px;
    font-weight: bold;
}

#status-message.success {
    color: green;
}

#status-message.error {
    color: red;
}

.contactButton.active + .contactOptions {
    display: flex !important; /* Stellt sicher, dass das MenÃ¼ angezeigt wird, wenn der Button aktiv ist */
}

#emailFormContainer {
    margin-top: 2em;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Modal styles */
.affirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Slightly lighter background for more contrast */
    justify-content: center;
    align-items: center;
    z-index: 10000; /* High z-index to bring the modal to the front */
}

.affirmation-modal-content {
    background: rgba(0, 0, 0, 0.6); /* Transparent dark background */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    color: white; /* White text color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(200, 200, 200, 0.9); /* Light gray border */
}

.affirmation-modal-content .modal-text {
    text-align: justify;
    color: white; /* White text color */
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.affirmation-card-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 500px;
    height: 400px;
    perspective: 1000px;
    z-index: 10000;
}

.affirmation-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: flipIn 0.6s forwards;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.affirmation-card img {
    width: 100%;
    height: 80%;
    border-radius: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.15);
}

.affirmation-card p {
    position: absolute;
    font-size: 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    backface-visibility: hidden;
}

#affirmationText {
	width: 75%;
    padding: 20px; /* Add padding to create space around the text */
    background: rgba(0, 0, 0, 0.5); /* Ensure the background is slightly transparent */
    border-radius: 10px; /* Add some rounding to the corners */
}

@keyframes flipIn {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

/* Modales Fenster fÃ¼r Schnellkontakt */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #333;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    color: white;
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#quickContactForm button {
    align-self: center; /* Button zentrieren */
}

#quickMessage {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Specific Styles for the Teddy Entry Modal */
.modal-teddy-entry {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1050;
}

.modal-content-teddy-entry {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 10px;
    padding: 20px;
    width: auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    margin: 10% auto;
    border: 1px solid #fff;
}

.close-button-teddy-entry {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.close-button-teddy-entry:hover {
    color: #fff;
}

.modal-teddy-entry input[type="text"],
.modal-teddy-entry input[type="email"],
.modal-teddy-entry textarea {
    font-size: 16px; /* Explizit gleiche Schriftgröße */
    padding: 10px;
    margin-top: 8px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 5px;
    color: black;
    line-height: 1.5; /* Einheitliche Zeilenhöhe */
    font-family: inherit; /* Gleiche Schriftart wie der umgebende Text */
}

.modal-teddy-entry label {
    float: left;
    clear: both;
    margin-top: 10px;
}

.modal-teddy-entry button {
    cursor: pointer;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 5px;
    border: none;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
}

.modal-teddy-entry button:hover {
    background-color: #45a049;
}

.modal-teddy-entry .button.transparent {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.modal-teddy-entry .button.transparent:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.entry-box {
   display: flex;
   flex-direction: column; 
   align-items: flex-start;
   flex-wrap: nowrap;
   width: 100%;
   max-width: 100%;
   margin: 1px auto;
   background-color: rgba(255, 255, 255, 0.7);
   box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
   border-radius: 10px;
   color: black;
   padding: 20px;
   text-align: left;
   position: relative;
   overflow: visible; /* Stelle sicher, dass nichts abgeschnitten wird */
   z-index: 1;
   margin-top: 10px;
   box-sizing: border-box;
   perspective: 1000px;
}

.entry-header {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.9);
  align-items: center;
  font-family: 'Arial', sans-serif;
  font-size: 0.8em; /* Schriftgröße leicht erhöht für bessere Lesbarkeit */
  color: black; /* Weiße Schrift für guten Kontrast */
  gap: 10px; /* Hier den gewünschten Abstand anpassen */
  max-width: 100%;
  letter-spacing: 0.1px;
}

.entry-label, .entry-name, .entry-location {
  margin-right: 20px; /* Hier den gewünschten Abstand anpassen */
}

.entry-body {
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 8px;
  line-height: 1.5;
  color: black;
}

.entry-body .entry-message {
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0.5em 0;
    text-align: justify;
    white-space: pre-wrap;
}

.entry-box img {
  position: relative;
  width: 80px;
  height: 80px;  
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid rgba(30, 30, 30, 0.6);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.entry-image:hover {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transform: scale(1.05);
    transition: box-shadow 0.3s ease-in-out;
}

.entry-timestamp {
    position: absolute;
    bottom: 10px; /* Abstand vom unteren Rand des Containers */
    right: 10px; /* Abstand vom rechten Rand des Containers */
    font-size: 0.8em; /* Kleinere Schriftgröße */
    color: black; /* Dezente Schriftfarbe */
    z-index: 1;
}

.teddy-container {
    position: absolute;
    bottom: -50px; /* Adjust this value to align with the white strip */
    left: 1300px; /* Adjust if needed to position correctly */
    width: 150px; /* Adjust based on the actual size of your teddy bear image */
    height: auto;
    z-index: 10; /* Ensures the teddy is above other elements */
}

@media (min-width: 481px) and (max-width: 1024px) {
    .entry-box {
        padding: 10px;
        max-width: 100%;
    }
    
  .entry-header {
    flex-direction: row; /* Elemente in einer Reihe anordnen */
    text-align: left; /* Text linksbündig ausrichten */
    gap: 10px; /* Abstand zwischen den Elementen verringern */
  }

  .entry-header .name,
  .entry-header .location,
  .entry-header .contact {
    flex: 1; /* Elemente teilen sich den Platz gleichmäßig */
    font-size: 0.9em; /* Schriftgröße leicht verkleinern, um Platz zu sparen */
  }

  .entry-header .contact {
    text-align: right; /* Kontaktinformation nach rechts ausrichten */
  }  
    
    .entry-box img {
        width: 60px;
        height: 60px;
    }

    .image-uber {
   	width: 200px; /* VergrÃ¶ÃŸerte BildgrÃ¶ÃŸe */
    	height: 200px; /* VergrÃ¶ÃŸerte BildgrÃ¶ÃŸe */
   	object-fit: cover;
	border: 2px solid white;
   	border-radius: 10px;
   	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); /* Optionaler Schatten fÃ¼r bessere Sichtbarkeit */
   	margin-bottom: 10px; /* Abstand zum Button */
    }

    .teddy-container {
		left: 300px;
    }

    .button-uber {
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	flex-wrap: wrap;
    	width: 100%;
}

    #buttonMario, #buttonAnika {
    	text-align: center; 
    	width: 190px;
   	flex-basis: auto;
    	margin-bottom: 10px;
}

    #buttonZuruck {
    	order: 3;     
    	text-align: center;
    	margin-top: -10px;
}
}

@media (max-width: 480px) {
    .entry-box {
        padding: 10px;
        max-width: 100%;
    }
    
  .entry-header {
    flex-direction: row; /* Elemente in einer Reihe anordnen */
    text-align: left; /* Text linksbündig ausrichten */
    gap: 10px; /* Abstand zwischen den Elementen verringern */
    padding: 10px 15px;  
}

  .entry-header .name,
  .entry-header .location,
  .entry-header .contact {
    flex: 1; /* Elemente teilen sich den Platz gleichmäßig */
    font-size: 0.9em; /* Schriftgröße leicht verkleinern, um Platz zu sparen */
    margin: 0;
  }

  .entry-header .contact {
    text-align: right; /* Kontaktinformation nach rechts ausrichten */
  }    
    .entry-box img {
        width: 50px;
        height: 50px;
    }

    .affirmation-card {
    	position: relative;
    	width: 70%;
    	height: 70%;
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	text-align: center;
    	animation: flipIn 0.6s forwards;
    	transform-style: preserve-3d;
    	perspective: 1000px;
	margin: 0 auto;
    }

    #affirmationText {
	width: 65%;
    	padding: 20px; /* Add padding to create space around the text */
    	background: rgba(0, 0, 0, 0.5); /* Ensure the background is slightly transparent */
    	border-radius: 10px; /* Add some rounding to the corners */
    }

    .teddy-container {
        width: 100px;
        left: 260px;
    }

    .image-uber {
   	width: 160px; /* VergrÃ¶ÃŸerte BildgrÃ¶ÃŸe */
    	height: 160px; /* VergrÃ¶ÃŸerte BildgrÃ¶ÃŸe */
   	object-fit: cover;
	border: 2px solid white;
   	border-radius: 10px;
   	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); /* Optionaler Schatten fÃ¼r bessere Sichtbarkeit */
   	margin-bottom: 10px; /* Abstand zum Button */
    }

    .button-uber {
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	flex-wrap: wrap;
    	width: 100%;
    }

    #buttonMario, #buttonAnika {
    	text-align: center; 
    	width: 190px;
   	flex-basis: auto;
    	margin-bottom: -5px;
    }

    #buttonZuruck {
	width: 190px;
    	order: 3;     
    	text-align: center;
    	margin-top: 0px;
    }
}

#hope-teddy {
    width: 100%;
    left: 10px;
    top: -200px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    cursor: grab;
    position: absolute;
    user-select: none;
    touch-action: none; /* Verhindert Standard-Touch-Aktionen wie Scrollen */
}

.language-selector {
    position: absolute;
    top: 100px;
    right: 10px;
    z-index: 1000;
}

.language-dropdown-btn {
    background-color: rgba(255, 255, 255, 0.3); /* Leicht transparentes WeiÃŸ fÃ¼r den Button */
    color: white;
    padding: 10px 30px;
    border: 2px solid white; /* WeiÃŸer Rahmen */
    border-radius: 5px;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.language-dropdown-btn:hover {
    background-color: rgba(255, 255, 255, 0.5); /* Helleres WeiÃŸ beim Hover */
    border-color: rgba(255, 255, 255, 0.8); /* Deutlicherer Rahmen beim Hover */
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8); /* Dunklerer Hintergrund fÃ¼r besseren Kontrast */
    min-width: 141px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5); /* Tieferer Schatten fÃ¼r mehr Tiefe */
    z-index: 1;
    top: 41px;
    right: 0;
    border: 2px solid white; /* WeiÃŸer Rahmen um das Dropdown-MenÃ¼ */
}

.language-selector:hover .language-dropdown-content {
    display: block;
}

.language-dropdown-item {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Unterer Rahmen fÃ¼r Trennung der Items */
}

.language-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Subtiler Hover-Effekt */
}

.flag-image {
    width: 20px; /* Breite der Flagge */
    height: auto; /* HÃ¶he automatisch anpassen, um das SeitenverhÃ¤ltnis zu erhalten */
    margin-right: 8px; /* Abstand rechts, um Text vom Bild zu trennen */
    vertical-align: middle; /* Stellt sicher, dass das Bild vertikal zentriert ist mit dem Text */
}

@media (min-width: 481px) and (max-width: 1024px) {
    .language-dropdown-btn {
        padding: 8px 12px; /* Kleinere Polsterung für kleinere Bildschirme */
        font-size: 0.9em; /* Schriftgröße reduzieren */
    }

    .flag-image {
        width: 14px; /* Flagge etwas kleiner machen */
    }

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8); /* Dunklerer Hintergrund fÃ¼r besseren Kontrast */
    min-width: 75px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5); /* Tieferer Schatten fÃ¼r mehr Tiefe */
    z-index: 1;
    top: 30px;
    right: 0;
    border: 2px solid white; /* WeiÃŸer Rahmen um das Dropdown-MenÃ¼ */
}

.language-selector:hover .language-dropdown-content {
    display: block;
}

.language-dropdown-item {
    color: white;
    font-size: 13px;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Unterer Rahmen fÃ¼r Trennung der Items */
}
}

@media (max-width: 480px) {
    .language-dropdown-btn {
        padding: 8px 12px; /* Noch kleinere Polsterung für sehr kleine Bildschirme */
        font-size: 0.8em; /* Schriftgröße weiter reduzieren */
    }

    .flag-image {
        width: 16px; /* Flagge noch kleiner machen */
    }

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8); /* Dunklerer Hintergrund fÃ¼r besseren Kontrast */
    min-width: 75px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5); /* Tieferer Schatten fÃ¼r mehr Tiefe */
    z-index: 1;
    top: 30px;
    right: 0;
    border: 2px solid white; /* WeiÃŸer Rahmen um das Dropdown-MenÃ¼ */
}

.language-selector:hover .language-dropdown-content {
    display: block;
}

.language-dropdown-item {
    color: white;
    font-size: 13px;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Unterer Rahmen fÃ¼r Trennung der Items */
}
}

#messageBoard {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    height: 300px;
    overflow-y: auto;
}

.message-item {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.message-name, .message-location {
    font-weight: bold;
}

.message-body {
    padding: 5px;
    background-color: #f9f9f9;
}

.teddy-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    overflow: auto;
    text-align: center;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6); /* Halbtransparenter schwarzer Hintergrund */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    padding: 10px;
}

.teddy-popup-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
}

.close-teddy-popup {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.teddy-content {
    font-family: Arial, Helvetica, sans-serif; /* Beispiel: Serifenlose Schriftart */
    font-size: 18px; /* Anpassung der Schriftgröße */
    text-align: center; /* Links ausgerichteter Text */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Leichter Schattierungseffekt, um Text hervorzuheben */
    max-width: 60vw; /* Maximale Breite, um den Textblock einzuschränken */
    margin: 0 auto; /* Zentriert den Inhalt innerhalb des Containers */
}

.teddy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Schattierung auch für die Überschrift */
}

.teddy-content h2 {
    font-size: 1.75rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Schattierung auch für die Unterüberschrift */
}

.teddy-content p {
   font-size: 1.2rem;
}

.teddy-content .subtitle {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Schattierung auch für die Untertitel */
}
.teddy-content .center-subtitle {
    text-align: center;
}

.teddy-content.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.teddy-description {
   font-size: 1.2rem;
    margin-bottom: 20px;
}

.center-social {
    text-align: center;
}

.center-social span {
    display: block;
    font-size: 14px;
    color: #ffffff; /* Du kannst die Farbe nach Belieben anpassen */
    margin-bottom: -10px; /* Abstand zwischen Text und Icon */
}

.social-logo.instagram-logo {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Schatten für das Logo */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-logo.instagram-logo:hover {
    transform: scale(1.3);
    filter: brightness(1.2);
}

@media (min-width: 481px) and (max-width: 1024px) {
.teddy-content {
    font-size: 18px;
    max-width: 80vw; /* Maximale Breite, um den Textblock einzuschränken */
}

.teddy-content h1 {
   font-size: 26px;
}

.teddy-content h2 {
    font-size: 24px;
    margin: 0.2em 0;
}

.teddy-content p {
   font-size: 18px;
}

.teddy-content .subtitle {
    font-size: 17px;
}
.teddy-content .center-subtitle {
    text-align: center;
}

.teddy-content.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.teddy-description {
   font-size: 1.2rem;
}
}

@media (max-width: 480px) {
.teddy-content {
    font-size: 14px;
    max-width: 80vw; /* Maximale Breite, um den Textblock einzuschränken */
}

.teddy-content h1 {
   font-size: 20px;
}

.teddy-content h2 {
    font-size: 18px;
    margin: 0.2em 0;
}

.teddy-content p {
   font-size: 16px;
}

.teddy-content .subtitle {
    font-size: 17px;
}
.teddy-content .center-subtitle {
    text-align: center;
}

.teddy-content.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.teddy-description {
   font-size: 1.2rem;
}
}
