/* Allgemeine Einstellungen */
body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    color: #000;
    background-color: #fff;
}

/* Header Layout */
header {
    position: fixed;  /* Fixed, damit er am oberen Rand bleibt */
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 2%;
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 2%;
    background-color: transparent;
    color: #ffffff;
    z-index: 10;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    transition: top 0.3s, background-color 0.3s, color 0.3s; /* Für weiches Ein- und Ausblenden */
}

.logo{
    text-decoration: none;
    color: inherit;
}

header .logo h1 {
    margin: 0;
    font-size: 1.3em;
    font-weight: normal;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

header nav ul li {
    margin: 0;
}

header nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: normal;
    font-size: 1.2em;
    opacity: 1;
    transition: opacity 0.7s ease;
}

/* Hover-Effekt für das Dropdown-Menü */
header nav ul li a:hover {
    opacity: 1;
}

header nav ul li a.black {
    color: black;
}

header.transparent {
    color: #ffffff; /* Weiße Schrift */
    background-color: transparent;
}

header.white-background {
    color: #000; /* Schwarze Schrift */
    background-color: #ffffff;
}

header.background-extra {
    background-color: #ffffff;
    color: #000;
}

header.transparent-extra {
    background-color: transparent;
    color: #ffffff;
}

/* Styling des Hamburger-Menü-Buttons */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 28px;
    height: 28px;
    z-index: 20;
}

/* Styling der einzelnen Striche */
.bar {
    background-color: #ffffff;
    height: 1px;
    width: 100%;
    margin: 5px 0; 
    transition: 0.3s ease;
    position: absolute;
    left: 0;
}

/* Position der einzelnen Striche */
.bar1 {
    top: 0;
    transform-origin: center center;
}

.bar2 {
    top: 31%;
    transform: translateY(-33%); /* Vertikal zentrieren */
    transform-origin: center center;
}

.bar3 {
    bottom: 0;
    transform-origin: center center;
}

/* Animation für das X-Icon */
.menu-toggle.open .bar1 {
    transform: rotate(45deg);
    top: 31%;
    height: 1px;
    background-color: #000000;
}

.menu-toggle.open .bar2 {
    opacity: 0;
    transition: 0.1s;
}

.menu-toggle.open .bar3 {
    transform: rotate(-45deg);
    bottom: 31%;
    height: 1px;
    background-color: #000000;
}

/* Hover-Effekt für vertikale Linien, wenn Menü noch nicht geöffnet ist */
.menu-toggle:not(.open):hover .bar1,
.menu-toggle:not(.open):hover .bar2, 
.menu-toggle:not(.open):hover .bar3 {
    transform: scale(1.2); /* Vergrößere die vertikalen Linien beim Hover */
}

/* Hover-Effekt für Nicht-Touch-Geräte */
.menu-toggle:not(.touch-device):hover .bar {
    transition: transform 0.3s ease; /* Sanfter Übergang */
}

/* Für Touch-Geräte den Hover-Effekt deaktivieren */
.menu-toggle.touch-device .menu-toggle {
    transition: none; /* Entferne den Übergangseffekt auf Touch-Geräten */
}

/* Verhindern, dass der Hover-Effekt das X-Symbol beeinflusst */
.menu-toggle.open .bar1, 
.menu-toggle.open .bar3 {
    transition: none; /* Keine Transformation beim Hover auf das X */
}


.menu-toggle.black .bar{
    background-color: #000000;
}

/* Anzeigen des Hamburger-Buttons auf kleinen Bildschirmen */
@media (max-width: 1000px) {
    .menu-toggle {
        display: block;
    }

    header {
        padding-top: 1.3rem;
        padding-left: 1.7rem;
        padding-right: 1.7rem;
        padding-bottom: 1.3rem;
        align-items: center;
    } 

    header nav ul {
        display: flex; /* Ändere von 'none' zu 'flex' für bessere Steuerung */
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: -100%; /* Initial außerhalb des Bildschirms platzieren */
        height: 100vh;
        width: 60%; /* Breite des Menüs */
        background-color: #ffffff;
        text-align: center;
        padding: 20px 0;
        transition: transform 0.3s ease-in-out; /* Weiche Animation */
        transform: translateX(100%); /* Menü ist rechts außerhalb */
    }

    header nav ul.active {
        transform: translateX(0); /* Menü wird sichtbar */
        right: 0; /* Korrekt ausrichten */
    }
    header nav ul li a {
        color: #000000;
    }
    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Abdunkelung */
        display: none; /* Standardmäßig unsichtbar */
        z-index: 5; 
    }

    /* Menu und Overlay */
    header nav ul.active + #overlay {
        display: block; /* Overlay sichtbar, wenn das Menü aktiv ist */
    }
}

/* CONTACT MODAL*/

/* Überschrift im Modal */
.modal-content .modal-h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

/* Einladungstext */
.contact-intro {
    text-align: center;
    font-size: 1rem;

    color: #555;
    line-height: 1.5;
    width: 90%; /* Füge diese Zeile hinzu, um die Breite wie den restlichen Inhalt zu setzen */
    margin-left: auto; /* Zentriert das Element */
    margin-right: auto; /* Zentriert das Element */
}

.contact-intro .email-link {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;;
}

.contact-intro .email-link:hover {
    color: #000;
    text-decoration: underline;
}


/* Modal-Hintergrund */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal-Inhalt */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px; /* Abgerundete Ecken */
    width: 60%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
}

/* Schließen-Button */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    font-weight: normal;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Modal-Body */
.modal-body {
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: column;
    gap: 20px; /* Abstand zwischen den Elementen */
}

/* Container für die Felder */
.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Spalten bei größeren Bildschirmen */
  /* Kleinerer Abstand zwischen den Feldern */
    width: 100%;

}

/* Style für die Eingabefelder */
input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 100%; /* Sicherstellen, dass die Felder die volle Breite des Containers einnehmen */
    box-sizing: border-box;
    font-size: 0.9rem;
    transition: all 0.3s ease; /* Sanfter Übergang für visuelle Änderungen */
}

/* Fokus-Stil für Eingabefelder */
input:focus, textarea:focus {
    border-color: #c06d47; /* Blaue Rahmenfarbe */
    box-shadow: 0 0 5px rgba(192, 109, 71, 0.5); /* Leichter blauer Schimmer */
    outline: none; /* Entfernt den Standard-Browser-Rahmen */
}

/* Textarea nicht vergrößerbar */
form textarea {
    resize: none;
}

/* Absenden-Button */
form button {
    padding: 10px 15px;
    width: 100%;
    background-color: #c06d47;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: #9c583a;
}

/* Scrollen verhindern */
.no-scroll {
    overflow: hidden;
    height: 100%; /* Blockiert auch das vertikale Scrollen */
}

/* Bei größeren Bildschirmen (ab 768px) nebeneinander */
@media (min-width: 1000px) {
    .form-container {
        grid-template-columns: 1fr 1fr; /* 2 Spalten nebeneinander */
        gap: 10px;
    }
    .form-container input {
        width: 100%; /* Beide Felder sollen nebeneinander angezeigt werden */
    }
}

/* Bei kleinen Bildschirmen (unter 1000px) untereinander */
@media (max-width: 1000px) {
    .form-container {
        grid-template-columns: 1fr; /* Ein Feld pro Zeile */
    }
    .form-container input {
        width: 100%; /* Felder nehmen die volle Breite des Containers ein */
    }
    .modal-content .contact-intro .Umbruch {
        display: none;
    }
    .modal-content {
        max-height: 90%;
        margin: 5% auto 5% auto;
    }
}


/* Bei kleinen Bildschirmen (unter 768px) untereinander */
@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr; /* Ein Feld pro Zeile */
    }
    .form-container input {
        width: 100%; /* Felder nehmen die volle Breite des Containers ein */
    }
    .modal-content {
        width: 80%;
        max-height: 90%;
        margin: 5% auto 5% auto;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .modal-content .contact-intro .Umbruch {
        display: none;
    }
    .contact-intro {
        font-size: 16px;
    }
    .modal-body {
        max-height: 100vh;
        padding-bottom: 20px;
        overflow-y: auto;
    }
    input, textarea {
        font-size: 16px;
    }
}

/*under construction*/

.hero-text {
      position: absolute;
      top: 190px; /* 200px Abstand vom oberen Rand */
      left: 50%;
      transform: translateX(-50%);
      color: white;
      text-align: center;
      font-size: 1.3rem;
      font-weight: normal;
      text-shadow: 0 4px 10px rgba(0,0,0,0.6); /* bessere Lesbarkeit */
    }


/* MAINPAGE */

/* Slider Styling */
.slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.slider img.active {
    opacity: 1;
}

.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}

.slider img:first-child {
    opacity: 1;
}

.test {
    height: 100vh;
}
.test1 {
    height: 100vh;
    background-color: #000000;
}

.test2 {
    height: 100vh;
}


/*PAGE-STANDARD*/

.page-standard{
    min-height: 100vh;
    padding-top: 70px;
    padding-left: 7%;
    padding-right: 7%;
}

.page-standard h2 {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.page-standard h3{
    font-size: 1.8rem;
    font-weight: normal;
    color: #000;
}

.separator{
    border: none;
    height: 1px;
    width: 40%;
    background-color: #000;
    margin-top: 20px;
}

@media(max-width: 1000px){
    .page-standard{
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media(max-width: 768px){
    .page-standard{
        padding-left: 2%;
        padding-right: 2%;
    }
    .page-standard h2 {
        font-size: 1.8rem;
    }
}



/* POLICIES PAGE STANDARD */

.policies main {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    padding-top: 70px;
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
}

.policies-h2 {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}
@media (max-width: 768px) {
    .policies-h2 {
    font-size: 1.8rem;
    }
}

.policies main h3{
    font-size: 1.1rem;
    margin-top: 20px;
    color: #333;
}

.policies main h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 20px;
    color: #c06d47;
}

.policies main p {
    margin-bottom: 10px;
}

.policies main a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s;
}

.policies main a:hover {
    color: #0056b3;
}


/* FOOTER */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent; /* Schwarzer Hintergrund */
    color: #fff; /* Weiße Schrift */
    padding: 10px;
    padding-left: 3%;
    padding-right: 3%;
    font-size: 0.9em;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Inhalte umbrechen bei schmalen Bildschirmen */
}

/* Linker Bereich */
.footer-left {
    flex: 1; /* Platz aufteilen */
    text-align: left;
}

/* Mittlerer Bereich */
.footer-center {
    flex: 1; /* Platz aufteilen */
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1.3rem; /* Abstand zwischen Links */
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ddd; /* Hellerer Farbton beim Hover */
}

/* Rechter Bereich */
.footer-right {
    flex: 1; /* Platz aufteilen */
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.3rem; /* Abstand zwischen Icons */
}

.footer-right img {
    height: 1.3rem;
    transition: transform 0.3s ease;
}

.footer-right a:hover img {
    transform: scale(1.2); /* Icons beim Hover vergrößern */
}

.soundcloud-link{
    width: 1.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 1rem;
        gap: 10px; /* Abstand zwischen Bereichen */
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }
}

.test-full-page{
    height: 100vh;
    background-color: #000;
}