*{
    box-sizing: border-box;
}
body{
    margin:0;
    padding: 0;
    background-color: #1C1612;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}
img{
    width: 100%;
    height: auto;
}
h1,h2,h3{
    color: #C8A96A;
    font-family: 'Playfair Display', serif;
}
li{
    list-style: none;
}
main{
    margin-top: 100px;
}
.mainH{
    text-align: center;
}
p{
    color: #EADFCF;
}
.navlink,.conections,.footerLink{
    color: #ffffffcc;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
.navlink::after,.footerLink::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #d4af37;
    transition:0.3s;
}
.navlink:hover::after,.footerLink:hover::after{
    width: 100%;
}
.btn{
    background: #f1d97a;
    color:#1a120b;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
}
.btn:hover{
    background:#e6c65a;
    text-decoration: none;
    color:#1a120b;
}
header{
    width: 100%;
    background-color:#1C1612;
}
header,section,main,footer{
    padding: 0% 20px;
}
nav{
    margin: 0 auto;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}
#logo{
    width: 200px;
}
.InfNavBar{
    display: flex;
    gap: 40px;
    align-items: center;
}
.NavInf{
    font-size: 18px;
}
.icons{
    width: 30px;
    height: 15px;
    fill:#EADFCF;
    align-self: center;
}
.NavTel{
    display: flex;
    align-items:center;
}
.Tel{
    font-weight: 600;
    color: #fff;
    font-size: 20px;
}
.NavLinks{
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0px 25px;
}
.adress{
    font-size: 13px;
}
section{
    display: grid;
    gap: 30px;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1905px;
    margin-top:50px;
}
.cursor-Tracker{
    border-radius: 8px;
    width: 100%;
    max-width: 850px;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.slides{
    display: flex;
    transition: transform 0.3s ease;
    min-width: 100%;
}
.slide{
    min-width: 100%;
}
.slide-img{
    width: 100%;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    display: block;
    border-radius:8px;
}
.slidebtns{
    display: flex;
    justify-content:center;
    margin-top: 10px;
}
.slideBtn{
    width: 25px;
    height: 25px;
    stroke:#ffffffcc; 
    transition: all 0.3s ease;
    opacity: 0.7;
    cursor: pointer;
    font-size: 18px;
}
.slideBtn:active{
    transform: scale(0.95);
}
.dots{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left:20px;
    margin-right: 20px; 
    gap: 10px;
}
.dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #EADFCF;
    cursor: pointer;
    opacity: 0.7;
}
.dot.active {
    background: #d4af37;
}
.infoSection{
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-self: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}
.infTxt{
    font-size: 22px;
    margin: 0%;
}
.heroHeader{
    font-size: 40px;
    margin: 0%;
}
.conections{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease;
    transition-delay: 0.4s;
}
.conections:hover{
    color: #d4af37;
    transform: translateX(3px);
}
.heroIcons{
    width: 30px;
    height: 20px;
    stroke: #EADFCF;
}
.serviceImg{
    width: 300px;
    border-radius: 8px;
}
.serviceLayout{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.serviceCards{
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: #241A15;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    box-shadow:  0px 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.serviceCards:hover{
    transform:  translateY(-5px);
}
.ReifenImg{
    width: 310px;
}
.serviceBtn{
    margin-top: 30px;
display: grid;
justify-items: center;
}
.cta-text,.mainp{
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}
#OurWork{
    margin-top: 100px;
}
.service-list{
  list-style: none;
  padding: 0;
  margin-top: 18px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.service-list li{
  color: #f5f5f5;
  font-size: 17px;
  position: relative;
  padding-left: 20px;
}

.service-list li::before{
  content: "★";
  position: absolute;
  left: 0;
  color: #c89b4d;
}
.OurWorkImgs{
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content:space-between ;
    margin-top: 30px;
}
.workImg{
    width: 350px;
    border-radius: 8px;
    transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.workImg:hover{
    transform: scale(1.02);
    cursor: pointer;
}
.zoom-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}
.zoom-overlay img{
    max-width: 90%;
    cursor: grab;
}
.moreDitails{
    align-self: center;
    padding: 5px 12px;
    text-decoration: none;
    color: #EADFCF;
    border: 2px solid #EADFCF;
    opacity: 0.5;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s ease;
}
.moreDitails:hover{
    opacity: 0.8;
}
.WorkCard{
    display: flex;
    flex-direction: column;
}
.workTxt{
    margin: 0%;    
}
.workH{
    margin-bottom: 5px;
    font-size: 20px;
}
#whyweImg{
    width: 100%;
    max-width: 750px;
    border-radius: 8px;
}
.whywegrid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
#whywe{
    border-radius: 8px;
    background-color: #241A15;
    width: 100%;
    min-height: 500px;
    height: auto;
    margin-top: 100px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
}
.txtcontainer{
    padding-right:20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 750px;
}
#whayweBtn{
    align-self: center;
    margin-top: 50px;
}
.usp-list, ul {
    align-self: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.usp-list li , li {
    margin-bottom: 15px;
    color: #ffffffcc;
    font-size: 20px;
}
#whywetxt{
    margin-top: 0%;
}
.priceGrid{
    display: flex;
    flex-wrap:wrap ;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}
.priceCard{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color:#241A15;
    width: 100%;
    max-width: 400px;
    height: auto;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
}
#premiumwash{
    background-color: #C8A96A;
    border-style: solid;
    border-color: #e6d3a3;
    border-width: 40px 4px 4px 4px;
    position: relative;
}
#premiumwash::before{
    content: "Von uns Empfohlen";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #1a120b;
}
.cardDiscription{
    text-align: center;
    position: relative;
}
.cardDiscription::after{
    content:"";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    background-color: #EADFCF;
    width: 150px;
    height: 1px;
}
#premiumH{
    color: #1a120b;
}
.PriceTag{
    font-size: 24px;
}
ul{
    text-align: center;
}
li{
    font-size: 15px;
    color: #EADFCF;
}
.strong{
    font-size:28px;
    font-weight: 700;
}
#preicelist{
    color: #241A15;
}
#premiumtxt{
    color: #1a120b;
}
#premiumtxt::after{
    background-color: #241A15;
}
#premiumPrice{
    color: #1a120b;
}
#premiumBtn{
    background: #241A15;
    color:#EADFCF;
}
#premiumBtn:hover{
    background-color: #1a120b;
}
#price{
    margin-top: 100px;
}
.kontaktImg{
    width:450px;
}
.kontaktGrid{
    display: flex;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    min-height:600px;
    height: auto;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37, #c3a15a);;
    max-width: 500px;
    width: 100%;
    padding: 30px 70px;
    /*max-height: 695px;*/
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
input, select, textarea {
    width: 100%;
    max-width: 350px;
}
input{
    height: 30px;
    border-radius: 8px;
    border: #1a120b 1px solid;
}
select{
    height: 30px;
    border-radius: 8px;
    border: #1a120b 1px solid;
}
textarea{
    border-radius: 8px;
    border: #1a120b 1px solid;
}
.sendBtn{
   width: 100%;
  padding: 18px 35px;
  font-size: 16px;
  border-radius: 8px;
  background: #241A15;
  color: white;
  border: #241A15 1px solid;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
#sendDateBtn:disabled{
    box-shadow: none;
    background: #140F0D;
    cursor: default;
}
.sendBtn:hover{
    background-color:#1a120b;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
#sndBtnBox{
    align-self: center;
}
#kontaktKontainer{
    display: flex;
    justify-content: center;
}
#kontakt{
    margin-top: 100px;
}
input, select, textarea {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  transition: 0.3s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1a120b;
  box-shadow: 0 0 8px rgba(212,175,55,0.3);
}
label {
  color: #ffffffcc;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.popupContent{
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}
.popupContent h2{
    margin-bottom: 10px;
}
.popupContent button{
    margin-top: 15px;
    padding: 10px 20px;
    cursor: pointer;
}
footer{
    background-color: #140F0D;
    padding-top:50px;
    padding-bottom: 50px;
    margin-top: 100px;
    overflow: hidden;
}
.footerLogo{
    width: 300px;
}
.footerLayout{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
}
.footerLinks{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footerInfoData{
    display: flex;
    gap: 10px;
}
.footerIcons,.whatsappIcon{
    fill: #fff;
    width: 23px;
    height: 23px;
}
#copyright{
    background-color: #c3a15a;
    width: 100%;
    height: 40px;
}
#copyrightContent{
    display: grid;
    justify-items: center;
    align-items: center;
    height:40px;
}
.copyrightText{
    margin: 0%;
}
@media (min-width: 1200px) {
    header, section, main{
        padding: 0 100px;
    }
    .textcontainer{
        padding-right: 100px;
    }
}
@media (max-width: 1024px) {
    .InfNavBar {
        gap: 20px;
    }
    #logo {
        width: 150px;
    }
    .serviceCards{
        display: flex;
        flex-direction: column;
    }
    .servicetxt{
        width: 100px;
    }
}
@media(max-width:1656px){
    .adress,.NavTel{
        display: none;
    }
}
@media(max-width: 600px){
    #logo{
        display: none;
    }
    .OurWorkImgs{
        gap: 30px;
    }
    .priceGrid{
        gap: 30px;
    }
    .kontaktImg{
        display: none;
    }
    .InfNavBar{
        display: none;
    }
    #whyweImg{
        display: none;
    }
    .footerLayout{
        gap: 41px;
    }
    .whywegrid{
        padding-bottom: 20px;
    }
    #whywe{
        margin-top: 50px;
    }
    input{
        width: 300px;
        align-self: center;
    }
    .dataInputs{
        display: flex;
        flex-direction: column;
    }
    form{
        padding: 30px 70px;
        max-height: auto;
    }
    .navlink{
        font-size: 12px;
    }
    .NavLinks{
        padding:20px 0px;
    }
    .dot{
        width: 8px;
        height: 8px;
    }
    .slideBtn{
        width: 18px;
        height: 18px;
    }
}
@media(max-width:1400px){
    .whywegrid{
        display: flex;
        justify-content:center;
    }
    .WwImgContainer{
        display: none;
    }
    #whywe{
        max-width: 600px;
        margin: 0 auto;
    }
    #OurWork{
        margin-bottom: 100px;
    }
}