* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter Tight", sans-serif;
}



.navigation-section {
    background-color: black;
    padding: 5vh 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

/* Navigation Wrapper */
.nav {
    width: 90%;
}

/* Navigation Liste */
.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 20px;
    line-height: 1.6;
}

/* Navigation Links */
.nav-list li a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Hover-Effekt für Links */
.nav-list li a::after {
    content: ""; 
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #ff9200;
    transition: width 0.3s ease-in-out;
}

.nav-list li a:hover {
    color: #d8a07b;
}
.nav-list li a:hover::after {
    width: 100%;
}

/* Logo-Styling */
.nav-logo img {
    height: 100px;
    width: auto;
}

.nav-logo {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

/* Gleichmäßige Abstände */
.nav-list li {
    flex-grow: 1;
    text-align: center;
}

/* ✅ MEDIA QUERIES */

/* Tablets & kleinere Laptops */
@media (max-width: 1024px) {
    .nav-list {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav-logo img {
        height: 80px;
    }

    .nav-list li a {
        font-size: 1.3rem;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .navigation-section {
        height: auto;
        padding: 30px 10px;
    }

    .nav {
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list li a {
        font-size: 1.2rem;
        padding: 10px 0;
    }

    .nav-logo img {
        height: 60px;
    }
}

 
.footer {
    position: relative;
    background-color: black;
    width: 100%;
    height: auto; /* Footer nimmt die gesamte Höhe ein */
    display: flex;
    padding-bottom: 10px;
}
.footer-logo img{
    height: 75px;
    width: auto;
}
/* Linke Seite */
.footer-container-one {
    width: 50%; /* Nimmt die Hälfte der Breite ein */
    height: 100%; /* Volle Höhe */
    background-color: rgb(0, 0, 0); /* Zum Testen */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Rechte Seite */
.footer-container-two {
    width: 50%; /* Nimmt die andere Hälfte ein */
    height: 40%; /* Volle Höhe */
    background-color: rgb(0, 0, 0); /* Zum Testen */
    display: flex;
    flex-direction: column; /* Falls zwei untergeordnete Divs enthalten sind */
    align-items: center;
    justify-content: center;
}
.footer-item.small {
    width: 80%;
    height: 30%;
    background-color: transparent;
    display: flex;
    justify-content: center; /* Zentriert die Links horizontal */
    align-items: center; /* Zentriert die Links vertikal */
    gap: 20px; /* Abstand zwischen den Links */
}

.footer-item.small a {
    color: #ff9200; /* Kupferfarbener Ton passend zur Website */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 200;
    transition: color 0.3s ease-in-out;
}

.footer-item.small a:hover {
    color: white; /* Farbwechsel beim Hover */
}

/* Unteres großes Div */
.footer-item.large {
    width: 80%;
    height: 70%;
    background-color: transparent;
    display: flex;
    flex-direction: column; /* Elemente untereinander anordnen */
    justify-content: center; /* Vertikale Zentrierung */
    align-items: center; /* Horizontale Zentrierung */
    text-align: center;
    gap: 10px; /* Abstand zwischen den Elementen */
}

.footer-item.large a {
    color: #ff9200; /* Kupferfarbener Ton passend zur Website */
    text-decoration: underline;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    margin-top: -200px;
}

.footer-item.large a:hover {
    color: white;
}

.footer-item.large p {
    color: white;
    font-size: 1rem;
    font-weight: 200;
    margin: 0; /* Kein zusätzlicher Außenabstand */
}

.footer-links {
    width: 80%; /* Falls eine bestimmte Größe gewünscht ist */
    height: 80%;
    background-color: rgb(0, 0, 0); /* Zum Testen */
    display: flex;
    flex-direction: row; /* Elemente nebeneinander anordnen */
    align-items: flex-start; /* Links oben ausrichten */
    justify-content: flex-start; /* Links ausrichten */
    gap: 300px; /* VIEL Abstand zwischen Links und Kontaktinfos */
    padding-left: 20px; /* Etwas Abstand vom linken Rand */
}

/* Container für die Navigation-Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Abstand zwischen den Links */
}

/* Container für die Kontaktinfos */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px; 
    margin-left: -100px;
}

.footer-links a {
    color: #ff9200; /* Kupferfarbener Ton passend zur Website */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 200;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: white; /* Farbwechsel beim Hover */
}

/* Styling für Kontaktinfos */
.footer-contact p {
    color: white;
    font-weight: 100;
    font-size: 0.8rem;
    margin: 0;
}

.footer-contact a {
    font-size: 0.8rem;
    font-weight: 600;
}


@media (max-width: 1024px) {
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
    }

    .footer-container-one,
    .footer-container-two {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-item.large a {
        margin-top: 0;
        font-size: 1.7rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .footer-logo img {
        height: 100px;
    }
    .footer-logo{
        visibility: hidden;
    }
    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .footer-item.small {
        flex-direction: column;
        gap: 20px;
    }

    .footer-item.small a {
        font-size: 1.2rem;
    }

    .footer-item.large a {
        font-size: 1.5rem;
    }
    .footer-contact{
        margin-left: 0px;
    }
    .footer-item.large p {
        font-size: 1.2rem;
    }

    .footer-contact a {
        font-size: 1.5rem;
    }

    .footer-links a {
        font-size: 1.2rem;
    }
}

html{
        font-family: "Inter Tight", sans-serif;
        font-optical-sizing: auto;
        font-weight: bold;
        font-style: normal;
}

.black-footer {
    height: 20vh;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center; /* Vertikal zentrieren */
    justify-content: center; /* Horizontal zentrieren */
}
.footer-line {
    width: 85%; /* 85% der Seitenbreite */
    height: 2px; /* Dünne Linie */
    background-color: white; /* Weiße Farbe */
}

.r-one {
    position: relative;
    width: 100%;
    height: 40vh;
    background: url("J1.jpg") no-repeat center center black;
    background-size: cover; /* Vollständige Abdeckung der Section */
    font-family: "Inter Tight", sans-serif;
    display: flex;
    align-items: center; /* Vertikal zentrieren */
    justify-content: center; /* Horizontal zentrieren */
    padding: 0 100px;
    overflow: hidden;
}
.div-one {
    display: flex;
    align-items: center; /* Vertikal ausrichten */
    justify-content: center; /* Horizontal ausrichten */
    text-align: center;
    background: rgba(0, 0, 0, 0.273); /* Leichte Verdunklung für besseren Kontrast */
    padding: 80px 160px;
}
.div-one h1 {
    color: white;
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 10px;
}

.r-two {
    position: relative;
    width: 100%;
    min-height: auto;
    font-family: "Inter Tight", sans-serif;
    display: flex;
    flex-direction: column; /* Untereinander anordnen */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    padding: 50px 0;
  }
  
  .div-two-one,
  .div-two-two {
    width: 90%;
    max-width: 900px;
    padding: 30px 20px;
    text-align: left;
    font-weight: 200;
  }
  .div-two-one{
    border-bottom: 2px solid #ff9200;
  }
  .div-two-two{
    padding-bottom: 0;
  }
  .div-two-one h2 {
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  @media screen and (max-width: 1024px) {
    .div-two-one,
    .div-two-two {
      padding: 25px 15px;
      font-size: 1rem;
    }
  
    .div-two-one h2 {
      font-size: 1.8rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .div-two-one,
    .div-two-two {
      padding: 20px 10px;
      font-size: 0.95rem;
    }
  
    .div-two-one h2 {
      font-size: 1.6rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .div-two-one,
    .div-two-two {
      padding: 15px 10px;
      font-size: 0.9rem;
    }
  
    .div-two-one h2 {
      font-size: 1.4rem;
    }
  }
   

@media (max-width: 600px){
    .div-one h1 {
        font-size: 2rem;
    }
}

/* Section Styling */
.r-three {
    position: relative;
    width: 100%;
    height: 50vh; /* Volle Höhe */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Zentrierung verbessert */
    background-color: black;
    gap: 10px; /* Engerer Abstand zwischen den Zeilen */
    font-family: "Inter Tight", sans-serif;

}

/* Zeilen mit je 2 Boxen */
.row {
    display: flex;
    width: 60%; /* Breiter für bessere Optik */
    justify-content: space-between;
    gap: 40px; /* Weniger Abstand zwischen den Boxen */
}

/* Job-Boxen als Links */
.r-three a {
    width: 50%; /* Boxen nehmen jeweils die Hälfte der Zeile */
    height: 18vh;
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding-left: 25px;
    background-color: rgba(216, 160, 123, 0);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, filter 0.3s ease-in-out;
    overflow: hidden;
    font-family: "Inter Tight", sans-serif;

}

/* Hintergrundbilder */
.div-three-one { background: url("J4.jpg") center/cover no-repeat; }
.div-three-two { background: url("J6.jpg") center/cover no-repeat; }
.div-three-three { background: url("J3.jpg") center/cover no-repeat; }
.div-three-four { background: url("J5.jpg") center/cover no-repeat; }

/* Text-Styling */
.r-three h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-align: left;
    margin-bottom: 5px;
    font-family: "Inter Tight", sans-serif;

}

/* Hover-Effekte */
.r-three a:hover {
    transform: scale(1.03);
    filter: brightness(100%);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        width: 80%;
        align-items: center;
        gap: 20px;
    }

    .r-three a {
        width: 100%;
        height: auto;
        padding: 15px;
    }

    .r-three h3 {
        font-size: 1.6rem;
    }
}

.family-section {
    position: relative;
    width: 100%;
    height: 20vh; /* Höhe der Section */
    background-color: black; /* Schwarzer Hintergrund */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styling für das innere Box-Element */
.family-box {
    padding: 20px 40px;
    border: 2px solid white;
    text-align: center;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Styling für die Überschrift */
.family-box h3 {
    font-size: 3rem;
    font-weight: bold;
    color: #ff9200;
    letter-spacing: 2px;
}

/* Hover-Effekt */
.family-box:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1024px) {
    .family-box h3 {
      font-size: 2.5rem;
    }
  
    .family-box {
      padding: 20px 30px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .family-section {
      height: auto;
      padding: 30px 10px;
    }
  
    .family-box {
      padding: 15px 20px;
    }
  
    .family-box h3 {
      font-size: 2rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .family-box h3 {
      font-size: 1.6rem;
      letter-spacing: 1px;
    }
  
    .family-box {
      padding: 10px 15px;
    }
  }
  
.black-footer-long {
    height: 10vh;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center; /* Vertikal zentrieren */
    justify-content: center; /* Horizontal zentrieren */
}
.footer-line-long {
    width: 90%; /* 85% der Seitenbreite */
    height: 2px; /* Dünne Linie */
    background-color: white; /* Weiße Farbe */
}