/*HTML------------------------------------------------------------------------------------------------------------------------------------ */
html {
    scroll-behavior: smooth;
}


/*BODYS------------------------------------------------------------------------------------------------------------------------------------ */
.body_home {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    background-image: url('data/pinsa1.jpg'); /* Hintergrundbild */
    background-size: cover; /* Bild wird auf die gesamte Seite angepasst */
    background-position: center center; /* Bild bleibt immer mittig */
    background-attachment: fixed; /* Das Bild bleibt fixiert, wenn gescrollt wird */
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

/* Ab 800px soll das Hintergrundbild verschwinden */
@media (max-width: 800px) {
    .body_home {
        background-image: none !important; /* Entfernt das Hintergrundbild */
        background-color: black !important; /* Setzt den Hintergrund auf Schwarz */
    }
}


.body_datenschutz {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    background-size: cover; /* Bild wird auf die gesamte Seite angepasst */
    background-position: center center; /* Bild bleibt immer mittig */
    background-attachment: fixed; /* Das Bild bleibt fixiert, wenn gescrollt wird */
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}


.body_pinsa {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    background-image: url('data/wasistpinsa90.png'); /* Hintergrundbild */
    background-size: cover; /* Bild wird auf die gesamte Seite angepasst */
    background-position: center center; /* Bild bleibt immer mittig */
    background-attachment: fixed; /* Das Bild bleibt fixiert, wenn gescrollt wird */
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

/* Ab 800px soll das Hintergrundbild verschwinden */
@media (max-width: 800px) {
    .body_pinsa {
        background-image: none !important; /* Entfernt das Hintergrundbild */
        background-color: black !important; /* Setzt den Hintergrund auf Schwarz */
    }
}


/* ÜBERSCHRIFT HOME------------------------------------------------------------------------------------------------------------------------------------ */
.einleitung, .einleitung_extra {
    margin: 0;
}

.einleitung_extra {
    font-family: 'Noto Serif Hentaigana', sans-serif;
    font-size: 6rem;
}

.pinsa_home {
    display: none; /* Standardmäßig versteckt */
    position: relative;
}

.pinsa_homepicture {
    width: 100%;
    height: auto;
}

.overlay_home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;  /* Stellt sicher, dass die Boxen untereinander sind */
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 30px;
}

.textbox_pinsahome {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);    
    color: white;
    padding: 0px;
    font-size: 20px;
    font-weight: bold; /* Macht den Text fett */
    border-radius: 5px;
    margin: 10px 0;  /* Abstand zwischen den Textboxen */
    display: inline-block; /* Hintergrund nur so breit wie der Text */
    text-align: center;  /* Zentriert den Text */
}
 

/* Nur unter 800px anzeigen */
@media (max-width: 799px) {
    .pinsa_home {
        display: block;
    }
}
@media (min-width: 799px) {
    .pinsa_home {
        display: none;
    }
}

@media (max-width: 800px) {
    .header_container {
        display: none;
    }
}

/* NAVIGATION/HEADER ------------------------------------------------------------------------------------------------------------------------------------ */
.header-section {
    background-color: rgba(26, 26, 26); /* Halbtransparenter Hintergrund */
    color: white;
    padding: 0 20px;
    margin: 0;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Text-Overlay */
.text-overlay, .picture_text, .picture_text2 {
    color: white;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    margin: 5px auto; /* Zentriert den Inhalt horizontal */
    width: fit-content;
    max-width: 94%; /* Stellt sicher, dass mindestens 3% Abstand von jedem Rand vorhanden sind */
    box-sizing: border-box; /* Bezieht Padding in die Breitenberechnung ein */
    
    /* Dezent sichtbarer Schatten */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}



.header_container {
   margin-top: 250px;
   margin-bottom: 250px;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    background-color: rgba(26, 26, 26);
    padding: 10px;
}

.nav-item {
    position: relative; /* Für das Dropdown-Menü */
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 19px;
    font-weight: bold;
    padding: 24px 0;
    padding-right: 30px;
    transition: color 0.3s ease; /* Sanfte Farbänderung beim Hover */
}

.nav-link:hover {
    color: #ffcc00; /* Gelber Farbton beim Hover */
    background-color: rgba(26, 26, 26);
}

/* Logo im Header */
.navbar-logo {
    width: 130px;
    top:10px;
    height: auto;
    object-fit: cover;
    position: relative; /* Standardposition für das erste Logo */
    z-index: 1; /* Das erste Logo bleibt darunter */
}

.navbar-logo2 {
    width: 70px;
    height: auto;
    object-fit: cover;
    position: fixed; /* Das zweite Logo bleibt fixiert */
    top: 5px; /* Leichte Verschiebung nach unten */
    left: 125px; /* Leichte Verschiebung nach rechts */
    z-index: 2; /* Sicherstellen, dass das zweite Logo über dem ersten liegt */
    pointer-events: none; /* Verhindert, dass es Klicks blockiert */
}


.menu-icon {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    object-fit: cover;
    position: fixed; /* Das zweite Logo bleibt fixiert */
    top: 15px; /* Leichte Verschiebung nach unten */
    right: 50px; /* Leichte Verschiebung nach rechts */
    z-index: 3; /* Sicherstellen, dass das zweite Logo über dem ersten liegt */
}

.nav-items {
    display: flex;
    gap: 30px;
}

/* ANSICHTEN_PIXELBREITE ------------------------------------------------------------------------------------------------------------------------------------ */

/* Ansicht über 2800px */
@media (min-width: 800px) {
    .navbar {
        display: flex;
        align-items: center;
        background-color: rgba(26, 26, 26);
        padding: 10px;
    }
    

    .menu-icon {
        display: none;
    }

    .nav-items {
        display: flex;
    }

    .dropdown {
        display: none;
    }

    .nav-item:hover .dropdown {
        display: block;
        max-height: none;  /* Dropdown tief aufklappen */
        opacity: 1;
        position: absolute;
    }

    img.toggle-dropdown{
        display: none;
    }

    .toggle-dropdown {
        display: none;
    }
}

/* Ansicht unter 2800px */
@media (max-width: 800px) {
    .navbar {
        display: flex;
        align-items: center;
        background-color: rgba(26, 26, 26);
        padding: 0px;
        margin-top: 240px;
        height: 200vh; /* Dynamische Höhe je nach Inhalt */
    }

    .menu-icon {
        display: block;
    }

    
    .nav-items {
        display: none;
        flex-direction: column; /* Elemente stapeln */
        gap: 10px; /* Abstand zwischen den Elementen */
        width: auto; /* Breite an den Inhalt anpassen */
        position: absolute; /* Absolute Positionierung */
        top: 100%; /* Direkt unterhalb der Navigation */
        right: 0; /* Direkt am rechten Rand ausrichten */
        background-color: rgba(26, 26, 26); /* Hintergrundfarbe */
        padding: 10px; /* Innenabstand */
        z-index: 1000; /* Sicherstellen, dass es über anderen Inhalten liegt */
        height: 100vh;
    }
    

    .nav-item {
        width: 100%;
        padding: 8px;
        position: relative; /* Für das Dropdown im Layoutfluss */
    }

    .dropdown {
        position: relative; /* Relativ zu `.nav-item` */
        max-height: 0;
        overflow: hidden; /* Inhalte außerhalb der Höhe verstecken */
        opacity: 0;
        display: block; /* Dropdown immer im Layout belassen */
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .toggle-dropdown {
        display: block; /* Sicherstellen, dass der Pfeil sichtbar ist */
        cursor: pointer;
        margin-top: 5px; /* Leichter Abstand zum Überpunkt */
    }

    /* Dropdown wird sichtbar */
    .nav-item.open .dropdown {
        max-height: 500px; /* Genug Platz für Dropdown-Inhalte */
        opacity: 1; /* Voll sichtbar */
        margin-bottom: 20px;
    }

    .nav-link {
        width: 100%;
        display: block; /* Überpunkt bleibt sichtbar */
        color: white;
        text-decoration: none;
        padding: 10px 20px; /* Innenabstand */
        background-color: rgba(26, 26, 26);

    
    }

    /* Entferne Hover-Effekte */
    .nav-link:hover,
    .nav-item:hover .dropdown {
        color: white; /* Hover-Farbe bleibt unverändert */
        background: none; /* Keine Hintergrundänderung */
        font-weight: normal; /* Kein Hervorheben durch Gewicht */
    }
}

/* DROPDOWN_MENU ------------------------------------------------------------------------------------------------------------------------------------ */
.dropdown {
    display: none; /* Versteckt standardmäßig */
    position: relative;
    top: 44px; /* Abstand vom Hauptlink */
    right: 0;
    width: 180px;
    background-color: rgba(26, 26, 26); /* Dunkler Hintergrund */
    border-radius: 0px;
    z-index: 500;
}

.dropdown-link {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 20px; /* Innenabstand der Dropdown-Links */
    font-size: 16px;
    transition: background-color 0.3s ease; /* Sanfter Übergang */
}

.dropdown-link:hover {
    color: rgba(255, 204, 0); /* Gelber Hintergrund beim Hover */


}

.nav-item:hover .dropdown {
    display: block; /* Dropdown wird sichtbar */
}

.toggle-dropdown {
    display: block;
    cursor: pointer;
    width: 16px;
    height: 8px;
}


/* ERSTER CONTAINER MIT INHALT (VW)  ------------------------------------------------------------------------------------------------------------------------------------ */
.content {
    position: relative;
    margin: 70px auto 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
}

/* Text bleibt links */
.sprinter_text {
    width: 60%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    z-index: 1;
    text-align: left;
}

/* Animation für das Bild */
.sprinter {
    width: 40%;
    height: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 2s ease-out, opacity 2s ease-out;
    transition-delay: 1s; 

}

.sprinter.active {
    transform: translateX(0);
    opacity: 1;
}


/* Schriftarten */
.pinsa_text {
    font-size: 20px;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .content {
        flex-direction: column; /* Bild und Text untereinander */
        align-items: center; /* Zentrierte Inhalte */
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .sprinter {
        width: 60%; /* Bild nimmt volle Breite ein */
        margin-bottom: 20px; /* Abstand zwischen Bild und Text */

    }

    .sprinter_text {
        width: 90%; /* Text nimmt volle Breite ein */
        text-align: center; /* Zentrierter Text */
        margin: 3%;
    }
}


/* ERSTER CONTAINER MIT INHALT (PINSA) ------------------------------------------------------------------------------------------------------------------------------------ */
.transparent-container {
    background-color: rgba(0, 0, 0, 0.95); /* Transparenter schwarzer Hintergrund */
    padding: 50px; /* Platz um das mittlere Feld */
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: center; /* Zentriert den Inhalt vertikal */
    min-height: 600px; /* Mindesthöhe des Containers */
    position: relative; /* Grundlage für absolute Positionierung */
    overflow: hidden; /* Verhindert Überschneidungen */
    text-align: left;
}

/* Das mittlere Feld */
.center-box {
    background-color: #121212; /* Dunkelgrauer Hintergrund */
    padding: 50px; /* Innenabstand (je nach Bedarf anpassen) */
    border-radius: 15px; /* Abgerundete Ecken */
    display: flex;
    justify-content: center; /* Zentriert das Bild horizontal */
    align-items: center; /* Zentriert das Bild vertikal */
    position: relative; /* Für Positionierungen innerhalb */
    min-height: 400px; /* Optional: Mindesthöhe */
    width: 100%; /* Container füllt den Elternbereich */
    max-width: 850px; /* Maximale Breite des Containers */
    margin: 0 auto; /* Zentriert den Container auf der Seite */
    margin-top: 100px;
}

.pinsavonoben {
    width: 60%;      /* 60% der Breite des Containers */
    height: auto;    /* Höhe passt sich proportional zur Breite an */
    max-width: none; /* Keine maximale Breitenbeschränkung */
    display: block;  /* Verhindert zusätzlichen Inline-Space */
}


.überschrift_box {
    position: absolute; /* Fixiert die Überschrift */
    top: 20px; /* Abstand von oben, anpassbar */
    left: 50%; /* Zentriert die Überschrift */
    transform: translateX(-50%); /* Korrektur, damit sie genau in der Mitte ist */
    text-align: left; /* Text zentrieren */
    z-index: 2; /* Sicherstellen, dass sie oben bleibt */
    color: white; /* Weiß für gute Sichtbarkeit */
    width: 90%;
    padding-left: 35%;
    padding-top: 3%;

}

@media (max-width: 1000px) {
    .überschrift_box {
        position: absolute; /* Fixiert die Überschrift */
        top: 20px; /* Abstand von oben, anpassbar */
        left: 50%; /* Zentriert die Überschrift */
        transform: translateX(-50%); /* Korrektur, damit sie genau in der Mitte ist */
        text-align: left; /* Text zentrieren */
        z-index: 2; /* Sicherstellen, dass sie oben bleibt */
        color: white; /* Weiß für gute Sichtbarkeit */
        padding-left: 5%;
        padding-top: 3%;
    
    }
}

/* Schriftgröße für Überschrift und Unterüberschrift anpassen */
.überschrift1 {
    font-size: 26px; /* Schriftgröße für h1 */
    margin: 0; /* Verhindert zusätzlichen Abstand */
    width: 100%;
    font-family: 'Chalkduster', sans-serif;

}

.überschrift2 {
    font-size: 16px; /* Schriftgröße für h2 */
    margin: 10px 0 0; /* Abstand nach unten */
    width: 100%;
    color:darkgoldenrod;


}


/* Textfelder */
.text-box {
    position: absolute;
    width: 150px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    opacity: 0; /* Unsichtbar zu Beginn */
    transition: opacity 1.5s ease-out; /* Nur das Erscheinen */
    transition-delay: 2s; 
    color: white;
    font-size: 22px; /* Schriftgröße für h1 */
}

/* Sichtbar, wenn aktiv */
.transparent-container.active .text-box {
    opacity: 1; /* Sichtbar */
}

/* Sichtbare Linie, wenn aktiv */
.transparent-container.active .line {
    transform: scaleY(1); /* Linie wächst */
}

/* Linien und Textfelder platzieren */
.text-box-1 {
    top: 2%; /* Über Linie 1 */
    left: 34%;
    transform: translateX(-50%); /* Zentrieren */
}

.text-box-2 {
    top: 35%; /* Position außerhalb */
    left: 5%; /* Links außen */
}

.text-box-3 {
    top: 28%;
    right: 5%; /* Rechts außen */
}

.text-box-4 {
    bottom: 2%; /* Unter Linie 4 */
    left: 35%;
    transform: translateX(-50%); /* Zentrieren */
}

.text-box-5 {
    bottom: 32%; /* Position außerhalb */
    left: 5%; /* Links außen */
}

.text-box-6 {
    bottom: 25%;
    right: 5%; /* Rechts außen */
}

/* Allgemeine Linie - Grundstil */
.line {
    position: absolute;
    height: 3px; /* Linie ist horizontal */
    background-color: white; /* Weiße Linie */
    transform: scaleX(0); /* Unsichtbar zu Beginn */
    transition: transform 1.5s ease-out; /* Animationsübergang */
    transition-delay: 0.5s; 

}
    
.line_vertical {
    position: absolute;
    width: 3px;
    background-color: white; /* Weiße Linie */
    transform: scaleY(0); /* Unsichtbar zu Beginn */
    transition: transform 2s ease-out; /* Animationsübergang */
    transition-delay: 0.5s; 

}
    

/* Sichtbare Linie, wenn aktiv */
.transparent-container.active .line {
    transform: scaleX(1); /* Linie wächst horizontal */    
}

/* Sichtbare Linie, wenn aktiv */
.transparent-container.active .line_vertical {
    transform: scaleY(1); /* Linie wächst horizontal */    
}


/* Linie 1 (oben mittig) */
.line-1 {
    top: 10%; /* Startpunkt oben */
    left: 41%; /* Mittig */
    height: 15%; /* Endbreite */
    transform-origin: bottom; /* Animation beginnt am Bild */
}

/* Linie 2 (oben links, horizontal) */
.line-2 {
    top: 35%; /* Startpunkt oben links */
    left: 15%; /* Links außen */
    width: 15%; /* Endbreite */
    transform-origin: right; /* Animation beginnt am Bild */
}

/* Linie 3 (oben rechts, horizontal) */
.line-3 {
    top: 47%; /* Startpunkt oben rechts */
    right: 15%; /* Rechts außen */
    width: 15%; /* Endbreite */
    transform-origin: left; /* Animation beginnt am Bild */
}

/* Linie 4 (unten mittig) */
.line-4 {
    bottom: 10%; /* Unten mittig */
    left: 42%;
    height: 15%; /* Endbreite */
    transform-origin: top; /* Animation beginnt am Bild */
}

/* Linie 5 (unten links, horizontal) */
.line-5 {
    bottom: 43%; /* Startpunkt unten links */
    left: 15%; /* Links außen */
    width: 15%; /* Endbreite */
    transform-origin: right; /* Animation beginnt am Bild */
}

/* Linie 6 (unten rechts, horizontal) */
.line-6 {
    bottom: 39%; /* Startpunkt unten rechts */
    right: 15%; /* Rechts außen */
    width: 15%; /* Endbreite */
    transform-origin: left; /* Animation beginnt am Bild */
}

@media (min-width: 850px) {
    .new-text-box {
        display: none; /* Verstecke die Textbox bei weniger als 850px */
    }
}
@media (max-width: 850px) {
    /* Container */
    .transparent-container {
        display: flex;
        flex-direction: column; /* Elemente untereinander */
        align-items: center; /* Zentriert horizontal */
        justify-content: flex-start; /* Elemente von oben anordnen */
        gap: 20px;
        padding: 0px;
    }

    .center-box {
        flex-direction: column; /* Stapelt Bild und Text vertikal */
        width: 100%;
        border-radius: 0;
        padding: 0;
        padding-top: 50px;
        margin-top: 200px;
    }

    /* Neue sichtbare Textbox */
    .new-text-box {
        display: block; /* Sicherstellen, dass sie sichtbar ist */
        width: 90%;
        max-width: 600px;
        margin: 0 auto; /* Zentriert */
        text-align: left;
        font-size: 20px;
        color: white;
        padding: 10px;
        border-radius: 10px;
    }

    .newtext{
        font-size: 20px;
        color: white;
        padding: 10px;
    }
    /* Alte Textboxen ausblenden */
    .text-box {
        display: none; /* Unsichtbar machen */
    }

    /* Bild */
    .image {
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: 0 auto;
    }

    /* Linien ausblenden */
    .line, .line_vertical {
        display: none; /* Linien komplett ausblenden */
    }
    /* Textboxen */
    .text-box {
        position: static; /* Absolute Positionierung entfernen */
        width: 90%; /* Breite der Textbox */
        max-width: 600px; /* Maximale Breite für größere Bildschirme */
        margin: 0; /* Kein zusätzlicher Außenabstand */
        text-align: center; /* Zentrierter Text */
        font-size: 20px; /* Schriftgröße anpassen */
    }

    /* Bild */
    .image {
        width: 100%; /* Bild nimmt die volle Breite ein */
        max-width: 600px; /* Maximale Breite */
        height: auto; /* Verhältnis beibehalten */
        margin: 0 auto; /* Bild zentrieren */
    }

    /* Linien ausblenden */
    .line, .line_vertical {
        display: none; /* Linien komplett ausblenden */
    }
}


/* FOOTER ------------------------------------------------------------------------------------------------------------------------------------ */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #333;
    color: white;
}

/* Jede Spalte */
.footer-column {
    flex: 1;
    padding: 30px;
    text-align: center;

}
@media (max-width: 770px) {
    .footer-column.left {
        display: none;
    
    }
    .footer-column.right {
        width: 70%;
    
    }
    .footer-column.middle {
        width: 70%;
    
    }

}

/* Header-Balken in jeder Spalte */
.footer-header {
    height: 1px;
    background-color: white;
    margin-bottom: 15px; /* Abstand nach dem Balken */
}

/* Links in den Spalten */
.footer-nav a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 8px 0;
}

.footer-nav a:hover {
    color: #FFD700; /* Farbe bei Hover */
}

/* Mittlere Spalte - für Adresse und soziale Medien */
.footer-info p {
    margin: 15px 0;
}

.social-link {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.social-link:hover {
    color: #FFD700;
}

/* Responsives Design für kleinere Bildschirme */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        margin-bottom: 20px;
    }
}

/* Icons für soziale Medien */
.social-icons {
    display: flex;
    gap: 15px; /* Abstand zwischen den Logos */
    margin-top: 10px;
    justify-content: center;
    
}

.social-logo {
    width: 64px; /* Breite der Logos */
    height: 64px; /* Höhe der Logos */
    object-fit: contain; /* Passt die Bildgröße an */
    transition: transform 0.3s ease; /* Hover-Effekt */
}
.social-logo:hover {
    transform: scale(1.2); /* Vergrößerung beim Hover */
}
.location-logo {
    width: 64x; /* Breite der Logos */
    height: 64px; /* Höhe der Logos */
    object-fit: contain; /* Passt die Bildgröße an */
    transition: transform 0.3s ease; /* Hover-Effekt */
}

.email-logo {
    width: 64x; /* Breite der Logos */
    height: 64px; /* Höhe der Logos */
    object-fit: contain; /* Passt die Bildgröße an */
    transition: transform 0.3s ease; /* Hover-Effekt */
}
.telefon-logo {
    width: 64x; /* Breite der Logos */
    height: 64px; /* Höhe der Logos */
    object-fit: contain; /* Passt die Bildgröße an */
    transition: transform 0.3s ease; /* Hover-Effekt */
}
/* Kontaktzeile (Telefon & E-Mail) */
.contact-row {
    display: flex; /* Elemente nebeneinander anordnen */
    justify-content: space-between; /* Abstand zwischen Telefon und E-Mail */
    align-items: center; /* Vertikale Ausrichtung */
    gap: 10px; /* Abstand zwischen den Spalten */
    padding-left: 80px;
    padding-right: 80px;
    margin-bottom: 5px;
}

.contact-item {
    display: flex; /* Logo und Text nebeneinander */
    align-items: center; /* Vertikale Ausrichtung */
    gap: 10px; /* Abstand zwischen Logo und Text */
}
.contact-row2 {
    display: flex; /* Elemente nebeneinander anordnen */
    justify-content: space-between; /* Abstand zwischen Telefon und E-Mail */
    align-items: center; /* Vertikale Ausrichtung */
    gap: 10px; /* Abstand zwischen den Spalten */
    margin-bottom: 40px; /* Abstand nach unten */
    padding-left: 50px;
    padding-right: 50px;
}
@media (max-width: 500px) {
    .contact-row2 {
        display: none; /* Elemente nebeneinander anordnen */
        
    }
}

.contact-item2 {
    display: flex; /* Logo und Text nebeneinander */
    align-items: center; /* Vertikale Ausrichtung */
    gap: 10px; /* Abstand zwischen Logo und Text */
}

.contact-logo {
    width: 40px; /* Größe der Logos */
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease; /* Hover-Effekt */

}
.contact-logo:hover {
    transform: scale(1.2); /* Vergrößerung beim Hover */
}

.contact-item2 p {
    margin: 0; /* Entfernt Standard-Abstand */
    font-size: 14px;
    color: white;
}

.location_container{
    margin-bottom: 40px;
    
}

/*   ------------------------------------------------------------------------------------------------------------------------------------ */

.wasistpinsa_block {
    background-color: rgba(0, 0, 0, 0.95); /* Transparenter schwarzer Hintergrund */
    padding: 50px; /* Platz um das mittlere Feld */
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: center; /* Zentriert den Inhalt vertikal */
    min-height: 600px; /* Mindesthöhe des Containers */
    position: relative; /* Grundlage für absolute Positionierung */
    overflow: hidden; /* Verhindert Überschneidungen */
    text-align: left;
}


.wasistpinsa_box {
    background-color: #121212; /* Dunkelgrauer Hintergrund */
    padding: 50px; /* Innenabstand (je nach Bedarf anpassen) */
    border-radius: 15px; /* Abgerundete Ecken */
    display: flex;
    justify-content: center; /* Zentriert das Bild horizontal */
    align-items: center; /* Zentriert das Bild vertikal */
    position: relative; /* Für Positionierungen innerhalb */
    min-height: 350px; /* Optional: Mindesthöhe */
    width: 100%; /* Container füllt den Elternbereich */
    max-width: 850px; /* Maximale Breite des Containers */
    margin: 0 auto; /* Zentriert den Container auf der Seite */
}

.wasistpinsa_überschrift {
    position: absolute; /* Fixiert die Überschrift */
    top: 20px; /* Abstand von oben, anpassbar */
    left: 50%; /* Zentriert die Überschrift */
    transform: translateX(-50%); /* Korrektur, damit sie genau in der Mitte ist */
    text-align: left; /* Text zentrieren */
    z-index: 2; /* Sicherstellen, dass sie oben bleibt */
    color: white; /* Weiß für gute Sichtbarkeit */
    width: 100%;
    max-width: 85%;
    padding-top: 3%;

}
.wasistpinsa_text {
    font-size: 17px;
    line-height: 1.2;
    color: white;
    margin-top: 100px;
    display: block;
    width: 85%;
}

@media (max-width: 600px) {
    .wasistpinsa_block {
        padding: 0px;
       
    }
}
/*   ------------------------------------------------------------------------------------------------------------------------------------ */

.geschichte_block {
    background-color: rgba(255, 255, 255, 0.95); /* Transparenter schwarzer Hintergrund */
    padding: 50px; /* Platz um das mittlere Feld */
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: center; /* Zentriert den Inhalt vertikal */
    min-height: 600px; /* Mindesthöhe des Containers */
    position: relative; /* Grundlage für absolute Positionierung */
    overflow: hidden; /* Verhindert Überschneidungen */
    text-align: left;
}

.geschichte_box {
    background-color: #fffdfd; /* Dunkelgrauer Hintergrund */
    padding: 50px; /* Innenabstand (je nach Bedarf anpassen) */
    border-radius: 15px; /* Abgerundete Ecken */
    display: flex;
    justify-content: center; /* Zentriert das Bild horizontal */
    align-items: center; /* Zentriert das Bild vertikal */
    position: relative; /* Für Positionierungen innerhalb */
    min-height: 350px; /* Optional: Mindesthöhe */
    width: 100%; /* Container füllt den Elternbereich */
    max-width: 850px; /* Maximale Breite des Containers */
    margin: 0 auto; /* Zentriert den Container auf der Seite */
}

.geschichte_überschrift {
    position: absolute; /* Fixiert die Überschrift */
    top: 20px; /* Abstand von oben, anpassbar */
    left: 50%; /* Zentriert die Überschrift */
    transform: translateX(-50%); /* Korrektur, damit sie genau in der Mitte ist */
    text-align: left; /* Text zentrieren */
    color: black; /* Weiß für gute Sichtbarkeit */
    width: 100%;
    max-width: 85%;
    padding-top: 3%;
    margin-bottom: 20px;

}
.geschichte_text {
    font-size: 17px;
    line-height: 1.2;
    color: black;
    margin-top: 100px;
    display: block;
    width: 85%;
}

.image-container {
    display: flex;
    flex-direction: column; /* Stapelt die Bilder vertikal */
    align-items: center; /* Zentriert die Bilder horizontal */
    gap: 10px; /* Fügt Abstand zwischen den Bildern hinzu */
    width: 35%;
    margin-left: 30px;
}

.pinsasausgerollt1 {
    width: 100%; /* Breite des Bildes */
    height: auto; /* Erhält die Proportionen des Bildes */
    border-radius: 15px; /* Abgerundete Ecken */
}

.überschrift1_geschichte {
    font-size: 26px; /* Schriftgröße für h1 */
    margin: 0; /* Verhindert zusätzlichen Abstand */
    width: 100%;
    font-family: 'Chalkduster', sans-serif;

}

.überschrift2_geschichte {
    font-size: 16px; /* Schriftgröße für h2 */
    margin: 10px 0 0; /* Abstand nach unten */
    width: 100%;
    color:darkgoldenrod;

}
@media (max-width: 1000px) {
    .image-container {
        display: none;
    }
}
@media (max-width: 600px) {
    .geschichte_block {
        padding: 0px; 
    }
}

/* BESTELLUNG ------------------------------------------------------------------------------------------------------------------------------------ */

/* Allgemei
/* Kontaktformular */
.contact-section {
    max-width: 600px;
    margin: 50px auto;
    margin-top: 120px;
    background-color: rgba(26, 26, 26);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 24px;
    text-align: center;
    font-family: 'Chalkduster', sans-serif;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-label {
    font-weight: 600;
}

.contact-input,
.contact-textarea,
.contact-button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #3b3b3b;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

input:-webkit-autofill, 
textarea:-webkit-autofill, 
select:-webkit-autofill {
    background-color: #333 !important; /* Hintergrundfarbe */
    color: white !important; /* Schriftfarbe */
    border: 1px solid #555 !important; /* Rahmenfarbe */
    box-shadow: 0 0 0px 1000px #333 inset !important; /* Hintergrundfarbe fixieren */
    transition: background-color 5000s ease-in-out 0s; /* Animation entfernen */
    -webkit-text-fill-color: white !important; /* Schriftfarbe für Autofill */
    font-family: 'Montserrat', sans-serif;

}

/* Standard-Input-Styling, falls nicht Autofill */
input, textarea, select {
    background-color: #333;
    color: white;
    border: 1px solid #555;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

.contact-textarea {
    resize: vertical;
}

.contact-button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-button:hover {
    background-color: #0056b3;
}

/* DATENSCHUTZ ------------------------------------------------------------------------------------------------------------------------------------ */

.datenschutz_block{
    background-color: rgba(0, 0, 0, 0.95); /* Transparenter schwarzer Hintergrund */
    padding: 50px; /* Platz um das mittlere Feld */
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: center; /* Zentriert den Inhalt vertikal */
    min-height: 600px; /* Mindesthöhe des Containers */
    position: relative; /* Grundlage für absolute Positionierung */
    overflow: hidden; /* Verhindert Überschneidungen */
    text-align: left;
    margin: 0;
    padding: 0;
}

.datenschutz_box {
    background-color: #121212; /* Dunkelgrauer Hintergrund */
    padding: 50px; /* Innenabstand (je nach Bedarf anpassen) */
    border-radius: 15px; /* Abgerundete Ecken */
    min-height: 350px; /* Optional: Mindesthöhe */
    width: 100%; /* Container füllt den Elternbereich */
    max-width: 850px; /* Maximale Breite des Containers */
    margin: 0 auto; /* Zentriert den Container auf der Seite */
}

.datenschutz_text{
    font-size: 17px;
    line-height: 1.2;
    color: white;
    display: block;
    width: 85%;
}

.datenschutz_überschrift1 {
    font-size: 26px; /* Schriftgröße für h1 */
    margin: 0; /* Verhindert zusätzlichen Abstand */
    margin-top: 50px;
    width: 100%;
    color: white;

}

.datenschutz_überschrift2 {
    font-size: 16px; /* Schriftgröße für h2 */
    margin: 10px 0 0; /* Abstand nach unten */
    width: 100%;
    color: white;


}

.image-container_datenschutz {
    position: relative;
    display: inline-block;
}

.image-text_datenschutz {
    position: absolute;
    top: 50%; /* Zentriert vertikal */
    left: 50%; /* Zentriert horizontal */
    transform: translate(-50%, -50%); /* Genau mittig */
    
    color: white; /* Farbe des Textes */
    font-size: 24px; /* Schriftgröße */
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
    padding: 10px 20px;
    border-radius: 5px;
}

.Datenschutz_bild {
    display: block; /* Entfernt die Standard-Lücke durch Inline-Elemente */
    width: 100%; /* Falls nötig, damit das Bild sich richtig einfügt */
    margin: 0;
    padding: 0;
    
}
.Datenschutz_bild2 {
    display: block; /* Entfernt die Standard-Lücke durch Inline-Elemente */
    width: 100%; /* Falls nötig, damit das Bild sich richtig einfügt */
    margin: 0;
    padding: 0;
    
}

@media (min-width: 800px) {
    .Datenschutz_bild {
        display: none; /* Entfernt die Standard-Lücke durch Inline-Elemente */      
    }
}
@media (max-width: 800px) {
    .Datenschutz_bild2 {
        display: none; /* Entfernt die Standard-Lücke durch Inline-Elemente */    
    }
}

