::placeholder {
    color: white;
    opacity: 1; /* Volle Deckkraft */
}

/* Falls Firefox die Farbe ignoriert */
::-moz-placeholder {
    color: white;
    opacity: 1;
}

.containercontact {
    width: 60%;
    margin: 80px auto 80px auto; /* Mehr Abstand nach oben */
    display: flex;
    justify-content: center;
}

.checkboxs{
    width: 20px;
}

.book {
    box-shadow: 0px 5px 13px -3px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-wrap: wrap;
    background: #2c2c2c;
    border-radius: 10px;
    padding: 20px;
}

.description, .form {
    width: 45%;
    padding: 5%;
    color: white;
}

.description h1 {
    text-transform: uppercase;
    color: #ff5722;
    font-weight: 400;
    margin-top: 0;
}

.description h1 strong {
    font-weight: 700;
    color: #fff;
}

.description p {
    color: #ddd;
    font-size: 14px;
    line-height: 22px;
}

.quote p {
    font-style: italic;
    padding: 2%;
    border-left: 4px solid #ff5722;
}

.description ul {
    padding-left: 16px;
    list-style: circle;
    color: #fff;
}

.description ul li {
    margin: 10px 0;
}

.form {
    background: #3a3a3a;
    border-radius: 10px;
    padding: 20px;
}

.form form {
    display: flex;
    flex-wrap: wrap;
    color: white;
}

.inpbox {
    width: 42%;
    background: #505050;
    padding: 10px;
    margin-bottom: 20px;
    margin-right: 2%;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.inpbox.full {
    width: 100%;
}

.inpbox.full.tx {
    height: 100px;
}

.inpbox span {
    padding-right: 10px;
    color: #ff5722;
}

.form select, form input {
    border: none;
    width: 90%;
    padding: 8px;
    background: #444;
    color: white;
    border-radius: 5px;
}

.form select:focus, form input:focus {
    outline: 2px solid #ff5722;
}


button.subt {
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    background: #ff5722;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button.subt:hover {
    background: #ff5722;
}

button.rst {
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    background: #555;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button.rst:hover {
    background: #333;
}

*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.5s;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background: #111;
}

html::-webkit-scrollbar-thumb{
    background: #ff5722;
    border-radius: 5rem;
}

body{
    background: #111;
    overflow-x: hidden;
}

.mainlogo-img{
    transition: transform 0.3s ease;
}

.mainlogo-img:hover{
    transform: scale(1.1);
}

.mainlogo-img:active{
    transform: scale(0.9);
}

section{
    padding: 3rem 9%;
}

.heading{
    text-align: center;
    margin-bottom: 2rem;
}

.heading span{
    color: #ff5722;
    font-size: 2rem;
}

.heading h1{
    font-size: 4rem;
    color: #fff;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: #ff5722;
    border: 0.5rem solid #ff5722;
    border-radius: 5rem;
    cursor: pointer;
    background: none;
    transition: 0.5s;
    font-weight: bold;
}

.btn:hover{
    background: #ff5722;
    color: #111;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #111111;
 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 9%;
}

.header .navbar.active{
    -webkit-clip-path: polygon(0 0,100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.header .navbar a{
    font-size: 2rem;
    color: white;
    display: inline-block;
    margin: 0 1rem;
    font-family: "Montserrat", serif;
    font-weight: 555;
    
}

.header .navbar a:hover{
    color: #ff5722;
}

.header .btn{
    margin-top: 0;
}

/*
.logo{
    font-size: 2.5rem;
    color: #fff;
    font-weight: bolder;
}

.logo i{
    color: #ff5722;
    padding-right: 0.5rem;
}
*/

.logo {
    display: flex;
    align-items: center;
    font-size: 3rem;
    color: #ff5722;
    font-weight: bolder;
}

/* Stil für das Logo-Bild */
.logo-img {
    width: 6rem;  /* Größe des Logos, kann angepasst werden */
    height: auto;
    margin-right: 1rem;  /* Abstand zwischen Logo und Text */
}

/* Hover-Effekt für das Logo */
.logo:hover {
    color: #fff;
}

#menu-btn{
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

.home{
    margin: 0 auto;
    margin-top: 9rem;
    width: 100%;
    border-radius: 1rem;
    background: linear-gradient(rgb(100 100 100 / 70%), rgba(17, 17, 17, 07)), url(/img/mclaren.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    min-height: 80vh;
    align-items: center;
    justify-content: center;
    padding-bottom: 5rem;

        /* Hintergrund-Animation */
        animation: zoomBackground 20s infinite ease-in-out;
}



.home .content{
    text-align: center;
}

.home .content span{
    font-weight: bolder;
    color: #ff5722;
    -webkit-text-stroke: 0.3rem #fff;
    font-size: 6vw;
    display: block;
}

.home .content h3{
    font-size: 6vw;
    color: #fff;
}

.home .content p{
    max-width: 60rem;
    margin: 1rem auto;
    font-size: 1.4rem;
    color: #aaa;
    line-height: 2;
}

.about{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 5rem;
}

.about .img-container {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;

    
}



.about .img-container img{
    border-radius: 1rem;
    width: 100%;
}

.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
    margin-bottom: 5rem;
}

.about .content span{
    color: #ff5722;
    font-size: 2rem;
}

.about .content h3{
    color: #fff;
    font-size: 4rem;
    margin-top: 0.5rem;
}

.about .content p{
    padding: 1rem 0;
    font-size: 1.4rem;
    color: #aaa;
    line-height: 2;
}

.contactsymbols {
    display: flex; /* Setzt die Symbole nebeneinander */
    justify-content: center; /* Zentriert die Symbole horizontal */
    gap: 40px; /* Abstand zwischen den Symbolen */
    margin-top: 40px; /* Abstand zum Titel */
}

.contactsymbols a {
    font-size: 36px; /* Größe der Symbole */
    color: white; /* Farbe der Symbole */
    text-decoration: none; /* Entfernt die Unterstreichung */
    transition: transform 0.3s ease; /* Sanfte Übergänge bei Hover */
}

.contactsymbols a:hover {
    transform: scale(1.2); /* Vergrößert das Symbol bei Hover */
}



.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem
}

.footer .box-container .box{
    padding: 1rem 0;
}

.footer .box-container .box .logo{
    padding-bottom: 1rem;
}

.footer .box-container .box h3{
    font-size: 2.2rem;
    color: #fff;
    padding: 1rem 0;
}

.footer .box-container .box p{
    font-size: 1.4rem;
    color: #aaa;
    padding: 1rem 0;
    line-height: 2;
}

.footer .box-container .box p i{
    padding-right: 0.5rem;
    color: #ff5722;
}

.footer .box-container .box .share{
    padding-top: 1rem;
}

.footer .box-container .box .share a{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4rem;
    font-size: 2rem;
    border-radius: 50%;
    font-size: 1.7rem;
    border: 0.2rem solid #ff5722;
    color: #ff5722;
    margin-right: 0.5rem;
    text-align: center;
}

.footer .box-container .box .share a:hover{
    background: #ff5722;
    color: #111;
}

.footer .box-container .box .links{
    font-size: 1.4rem;
    color: #aaa;
    padding: 1rem 0;
    display: block;
}

.footer .box-container .box .links:hover{
    color: #ff5722;
}

.footer .box-container .box .links:hover i{
    padding-right: 2rem;
}

.footer .box-container .box .links i{
    padding-right: 0.5rem;
    color: #ff5722;
}

.footer .box-container .box form .email{
    width: 100%;
    border-radius: 5rem;
    border: 0.2rem solid #ff5722;
    background: none;
    font-size: 1.5rem;
    text-transform: none;
    color: #aaa;
    margin-bottom: 1rem;
    padding: 1.2rem 1.4rem;
}

.credit{
    background: #222;
    text-align: center;
    font-size: 2rem;
    padding: 2rem 1rem;
    color: #aaa;
}

.credit span{
    color: #ff5722;
}

.reveal{
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: 2s all ease;
  }
.reveal.active{
    transform: translateY(0);
    opacity: 1;
}

/* Stil für die Datenschutzsektion */
.datenschutz-section {
    background-color: #1e1e1e; /* Dunkler Hintergrund für besseren Kontrast */
    color: #ffffff; /* Weiße Schrift für bessere Lesbarkeit */
    padding: 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Überschriften in der Datenschutzsektion */
.datenschutz-section h2,
.datenschutz-section h3 {
    color: #ff5722; /* Goldene Akzentfarbe für Überschriften */
    margin-top: 20px;
}

/* Links in der Datenschutzsektion */
.datenschutz-section a {
    color: #4da6ff; /* Helles Blau für Links */
    text-decoration: none;
}

.datenschutz-section a:hover {
    text-decoration: underline;
}

/* Listen schöner gestalten */
.datenschutz-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Absätze mit mehr Abstand */
.datenschutz-section p {
    margin-bottom: 15px;
}


@media (max-width: 450px){
    html{
        font-size: 50%;
    }

    .about .content h3{
        font-size: 3.5rem;
    }

    .banner .content h3{
        font-size: 2.7rem;
    }
}

@media (max-width: 768px){
    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #222;
        -webkit-clip-path: polygon(0 0,100% 0,100% 0,0 0);
        clip-path: polygon(0 0,100% 0, 100% 0, 0 0);
    }

    .header .navbar .active{
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a{
        margin: 2rem;
        font-size: 2rem;
        display: block;
    }

    .home{
        margin-top: 10rem;
    }

    .home .content span{
        font-size: 8vw;;
    }

    .home .content h3{
        font-size: 9vw;
    }

    .mainlogo-img{
        height: 300px;
    }
}

@media (max-width: 991px){
    html{
        font-size: 55%;
    }

    .header{
        padding: 1.5rem 2rem;
    }

    section{
        padding: 3rem 2rem;
    }
}

@media (min-width: 1200px){
    /* Keyframe-Animation für das Zooming */
@keyframes zoomBackground {
    0% {
        background-size: 100%; /* Anfangsgröße */
        background-position: center; /* Startposition */
    }
    50% {
        background-size: 120%; /* Maximaler Zoom */
        background-position: center; /* Bild bleibt zentriert */
    }
    100% {
        background-size: 100%; /* Zurück auf die ursprüngliche Größe */
        background-position: center;
    }
}
}

@media (max-width: 1024px) {
    .containercontact {
        width: 80%;
    }

    .book {
        flex-direction: column;
        align-items: center;
    }

    .description, .form {
        width: 90%;
        padding: 5%;
    }

    .inpbox {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .containercontact {
        width: 95%;
    }

    .description, .form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .containercontact {
        width: 100%;
        padding: 10px;
    }

    .book {
        padding: 15px;
    }

    .inpbox {
        width: 100%;
    }

    .datenschutz {
        flex-direction: column;
        text-align: center;
    }
}

