
@font-face {
    font-family: 'Flight'; 
    src: url('Fonts/Flight.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal; 
}

@font-face {
    font-family: 'montseratbold'; 
    src: url('Fonts/MontserratBolt.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal; 
}

@font-face {
    font-family: 'montseratmedium'; 
    src: url('Fonts/MontserratMedium.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal; 
}



.parallax-container {
    position: relative;
    height: 100vh; 
    width: 100%;  
    overflow: hidden;
    background-image: url('bilder/Studio1gradient.png'); 
    background-size: cover;
    background-position: center;
}


.content12 {
    position: absolute;
    top: 60%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    color: white;
    text-align: center;
    z-index: 1;
    font-size: 45px;
    font-family: 'montseratmedium';
    transition: transform 0.1s ease-out; 
}

.content12 img.logo {
    max-width: 500px; 
    margin-bottom: 10px; 
}

.content12 h1 {
    font-size: 3rem;
    margin: 0;
}

.content12 p {
    font-size: 45px;
    margin-top: 10px;
    letter-spacing: 10px;
}


.rectangle-container.mosaic{
  display: grid !important;         
  width: 100%;
  height: 600px;                    
  gap: 0;
  position: relative;
  overflow: hidden;

  grid-template-columns: 2fr 1fr;   
  grid-template-rows: 1fr 1fr;

  grid-template-areas:
    "big top"
    "big bottom";
}

.rectangle-container.mosaic::after{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 25%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0) 70%
  );

  pointer-events: none; 
  z-index: 5;
}

.tile-big    { grid-area: big; }
.tile-top    { grid-area: top; }
.tile-bottom { grid-area: bottom; }

.tile{
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile-top img{
  object-position: 80% 30%;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    font-family: 'Flight'; 
    background-color: #ffffff; 
}

.strip {
    display: none; 
    grid-template-columns: 55% 45%; 
    width: 100%;
    background-color: #ffffff; 
    padding: 0px 0;
}

.strip2 {
    display: none; 
    grid-template-columns: 50% 50%; 
    width: 100%;
    background-color: #ffffff; 
    padding: 20px 0;
}

.strip-content {
    display: contents; 
}



.carousel-container {
    position: relative;
    width: 100%;
    height: 820px;
    overflow: hidden;
}

.carousel {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    animation: slide 18s infinite ease-in-out;
    animation-delay: 5s; 
}

@keyframes slide {
    0% {
        transform: translateX(0%); 
    }
    33.33% {
        transform: translateX(0%); 
    }
    38.88% {
        transform: translateX(-100%); 
    }
    72.22% {
        transform: translateX(-100%); 
    }
    77.77% {
        transform: translateX(-200%); 
    }
    100% {
        transform: translateX(-200%); 
    }
}

.strip-image-container1 {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    overflow: hidden;
}

.strip-image-container1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.281);
}


.strip-image-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.strip-image-container1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.281);
    border-radius: 10px;
}
.strip-image-container2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.295);
}

.strip-text-container {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 20px;
}

.strip-text {
    display: flex;
    flex-direction: column;
    max-width: 450px; 
    text-align: left;
    justify-content: center;
}

.strip-text2 {
    display: flex;
    flex-direction: column;
    max-width: 600px; 
    text-align: left;
    justify-content: center;
}

.strip-text h1 {
    margin-top: 0px;
    font-size: 40px;
    margin-bottom: 10px;
    font-family: 'Flight'; 
    font-weight: lighter;
}

.strip-text p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Flight'; 
    font-weight: lighter;
}
.strip-text2 p {
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Flight'; 
    font-weight: lighter;
}

.strip-text2 h2 {
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Flight'; 
    font-weight: lighter;
}

.p2 {
    font-size: 20px!important;
    line-height: 1.5;
    font-family: 'Flight'; 
    font-weight: bold!important;
}

hr {
    margin: 20px auto;
    width: 100%;
    border: none;
    border-top: 1px solid #8a8a8a67;
}

.links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
}

.links a {
    text-decoration: underline;
    font-size: 20px;
    color: #000000;
    transition: color 0.3s;
    font-family: 'Flight'; 
    font-weight: lighter;
}

.links a:hover {
    color: #79522d;
}

.button-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    background-color: #313131;
    color: #fff !important;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    width: 200px;
    gap: 10px;
    margin-top: 15px;
}

.button-link2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    background-color: #313131;
    color: #fff !important;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    width: 200px;
    gap: 10px;
}
.button-logo {
    width: 25px; 
    height: 25px; 
}

.strip-full-width {
    display: flex;
    width: 100%;
    height: 400px; 
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.strip-full-width2 {
    display: flex;
    width: 100%;
    height: 600px; 
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.service-container {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 60%; 
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.938), rgba(0, 0, 0, 0.116));
    pointer-events: none; 
    z-index: 1;
}

.text-container {
    position: absolute;
    z-index: 2; 
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0); 
    padding: 20px;
    max-width: 860px;
}

.text-container h1 {
    margin: 10px 0;
    margin-bottom: 28px;
    font-size: 45px;
    font-family: 'montseratbold';

}

.text-container p {
    margin: 10px 0;
    font-size: 12px;
    font-family: 'montseratmedium';
    letter-spacing: 2px;
}

.text-container h3 {
    margin:0px;
    margin-bottom: 30px;
    font-size: 20px;
    font-family: 'Flight'; 
    font-weight: lighter;
}

.text-container button {
    margin-top: 20px;
    font-size: 1rem;
    border: 1px solid #ffffff;
    background-color: #00000000;
    color: white;
    cursor: pointer;
    width: auto;
    padding: 18px 70px;
    font-size: 14px;
    letter-spacing: 2px;
    font-family: 'montseratmedium';
    font-weight: bolder;
    transition: background-color  0.8s ease;
}

.text-container button:hover {
    background-color: #ffffff;
    color: #000;
}

.social-media-container {
    margin-top: 60px;
    display: flex;
    gap: 20px; 
    justify-content: start; 
}

.social-link {
    text-decoration: none;
    color: #000; 
    display: flex;
    align-items: center;
    gap: 10px; 
    font-size: 16px;
}

.social-link:hover {
    color: #555; 
}

.social-icon {
    width: 30px; 
    height: 30px;
    border-radius: 6px;
}

.strip-full-bewertung-width {
    width: 100%; 
    height: 400px; 
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0; 
    flex-direction: column;
}

.bewertungs-container {
    width: 1200px; 
    max-width: 100%; 
    margin: 0 auto; 
    text-align: center; 
    background: #ffffff; 
    padding: 20px;
}

.bewertung-content {
    width: 1200px;
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bewertung-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 600px; 
    text-align: left;
}

.bewertung-stars {
    font-size: 1.2em;
    color: #ffcc00; 
    margin-bottom: 10px;
}

.bewertung-text {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
}

.bewertung-source {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

.bewertung-source a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.bewertung-source a:hover {
    color: #0056b3;
}

.carousel-container-bewertungen {
    position: relative;
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 10px;
    overflow: hidden; 
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-item {
    flex: 0 0 calc(33.33% - 20px); 
    margin-right: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.212);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 1;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.brand-strip {
    width: 100%; 
    height: 350px; 
    background-color:#1a1a1a; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.brand-text {
    color: white; 
    margin-bottom: 20px; 
}

.small-text {
    font-size: 15px; 
    margin: 0;
    margin-top: 20px;
    font-family: 'montseratmedium';
    font-weight: lighter;
}

.large-text {
    font-size: 2.5rem; 
    font-weight: bold; 
    margin: 5px 0;
    font-family: 'montseratbold';
}

.divider {
    width: 100%; 
    height: 1px;
    background-color: rgba(255, 255, 255, 0.13);
    margin: 20px auto;
    margin-top: 0px!important;
}

.brand-logos {
    display: flex;
    justify-content: center;
    height: 80px;
    gap: 110px; 
    margin-top: 50px;
}


.logo-left {
    width: 300px;  
    height: 60px;  
}

.marginspezial{
    margin-bottom: 20px;
}


.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;
}



.map-section{
  width: 100%;
}

.map-full{
  width: 100%;
  height: 450px;        
  overflow: hidden;
}

.map-full iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



@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;
    }
}
