@font-face {
    font-family: 'Schnyder';
    src: url('https://ext.same-assets.com/3369476548/2818040209.octet-stream') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Flight'; 
    src: url('Fonts/Flight.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal; 
}

.content13 {
    color: white;
    text-align: center;
    z-index: 1;
    font-size: 45px;
    font-family: 'montseratmedium';
    transition: transform 0.1s ease-out;
}

.content13 img.logo {
    max-width: 300px;
    margin-bottom: 10px;
}

.content13 p {
    font-size: 45px;
    margin-top: 10px;
    letter-spacing: 20px;
}

.headertextteam {
    margin-top: 20px;
}

.team-container-header {
    width: 100%;
    height: 700px;
    background-image: url('bilder/Studio1gradient.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.team-container-header h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: 'montseratmedium'; 
    margin: 0;
}

.leistungen-container {
    width: 1024px;
    margin: 0 auto;
    padding: 50px 0;
}


.leistungen-container {
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    display: grid;
}


.leistung {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0x;
}


.leistung-bild img {
    width: 600px;
    height: 450px;
    object-fit: cover;
    
}


.leistung-text {
    font-family: 'Nunito', sans-serif;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;

}

.leistung-text h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Schnyder';
    margin-bottom: 30px;
}

.leistung-text p {
    font-size: 18px;
    margin: 15px 0;
    font-family: 'Flight';
    margin-bottom: 35px;
}


.mehr-erfahren {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    border: 1px solid rgb(59, 59, 59);
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Flight';
}

.mehr-erfahren:hover {
    background-color: #000000;
    color: #ffffff;
}


.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
    width: 100%;
    font-family: "montseratmedium";
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: opacity 0.3s;
}

.social-icon:hover img {
    opacity: 0.7;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #4a90e2;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #4a90e2;
}

.footer-contact p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.copyright {
    color: #777;
    font-size: 13px;
}

.language-select select {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

.language-select select:focus {
    outline: none;
}


@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}



@media (max-width: 1100px) {
    .leistungen-container {
        width: 90%;
    }

    .leistung {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leistung-bild {
        order: -1; 
    }
}