
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root{
    --main-color: black;
    --title-color: white ;
    --text-color: #ccc;
     --loader-bg: #000;        
  --loader-accent: #2b0101; 
}

html{
    box-sizing: border-box;
    font-size: 20px;
    background-color: var(--main-color);
    font-family: "Montserrat", sans-serif;
   
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body{
    margin: 0;
  padding: 0;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2b0101, #fff);
  border-radius: 5px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fff, #2b0101);
}
* {
  scrollbar-width: thin;
  scrollbar-color: #2b0101 #000;
}

#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--loader-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-image {
  width: 300px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
  filter: drop-shadow(0 0 10px var(--loader-accent));
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px var(--loader-accent));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--loader-accent));
  }
}

/* HEADER */

.header{
    
    width: 100%;
    position: fixed;
  top: 0;
  left: 0;
  z-index: 5555000;
  background-color: transparent;
  display: block;
  transition: ease-in 0.7s;
}
header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 6px rgba(129, 129, 129, 0.1);
  }

.menu-icon, .close-icon{
    display: none;
}

.navmenu{
  position: relative; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10vw;
    padding-top: .5rem;
    padding-bottom: 2.5rem;
    padding-right: 11.2vw;
    
}
.navmenu ul{
     background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 20px; 
  padding: 1rem 3rem; 
}

.navlist{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
      position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  gap: 60px;
  background: rgba(0,0,0,0.8);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.navitem{
    font-size: 20px;
    font-family: var(--body-font);
    letter-spacing: var(--navlist-letter-spacing);
    border-bottom: 1px solid transparent;
    transition: ease-in-out 0.5s;
}
.navitem i{
    font-size: 1.5rem;
    font-weight: 100;
}
.navitem:hover{
    border-bottom: 1px solid white;
    
}

.navlink{
    letter-spacing: var(--navlist-letter-spacing);
    color: var(--text-color);
    font-weight: 400 ;
 display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.navlink i {
  transition: transform 0.3s ease;
}

.navbuttons{
  position: relative;
    top: 25px;
    display: inline-flex;
    gap: .5rem;
    padding-bottom: 5px;
}

.navbuttons i:hover{
     border-bottom: 1px solid white;
}


.logo-img{
    width: 180px;
    height: auto;
    position: relative;
    top: 25px;
}

.navtext {
  display: block;
  font-size: 12px;
  color: var(--text-color);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, max-height 0.3s ease, transform 0.3s ease;
}

.navitem:hover .navlink i {
  transform: translateY(-5px);
}

.navitem:hover .navtext {
  opacity: 1;
  max-height: 20px; 
  transform: translateY(0);
}



.main{
    overflow: hidden;
    
}

/*********************HOME*************************/


.homecontainer{
    padding-left: 6rem;
    padding-right: 6rem;
    display: flex;
    justify-content: space-between;
    height: auto;
    align-content: center;
    padding-bottom: 6rem;
    padding-top: 6.5rem;
     background-image: url(dctphotos/detailing-home.webp);
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

   
}
.homedata{
    padding-bottom: 3rem;
    margin-top: 2rem;
    
    font-weight: 400;
     
}
.hometitle{
  text-transform: uppercase;
    font-weight: 700;
    font-size: 80px;
    color:  var(--title-color);
    margin-bottom: 1rem;
    
    
   
}
.homesubtitle{
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 3rem ;
    font-weight: 300;
    
}

.home-button {
  position: relative;
  display: inline-block;
  padding: 24px 48px;
  font-size: 25px;
  font-weight: 400;
  border-radius: 30px;
  color: white;
  background-color: #270202;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate; 
}

.home-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    #2c0101,
    #ec0d0d,
    #2b0101,
    #ec0d0d
  );
  animation: rotate 3s linear infinite;
  z-index: -1;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.4;
  transition: opacity 0.3s ease;
 
}

.home-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #2c0101;
  border-radius: 50px;
  z-index: -2;
}

.home-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px #2c0101;
}

.home-button:hover::before {
  opacity: 0.8;
}

.serviceshort {
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 100px;
            width: 100%;
            background-color: var(--main-color);
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            
        }

        .onepart, .twopart, .threepart {
            display: flex;
            align-items: center;
            width: 33%;
            height: 100%;
            background-color: var(--main-color);
            
            padding: 10px 20px;
            padding-left: 2rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.2s;
        }

        .onepart:hover, .twopart:hover, .threepart:hover {
            transform: scale(1.03);
            
        }

        .ri-bard-fill, .ri-car-washing-fill, .ri-shield-check-fill {
            width: 30px;
            height: 30px;
            background-color: var(--main-color);
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--title-color);
            font-weight: bold;
            font-size: 1.3rem;
        }

        .servicesmalltext {
            
            flex-grow: 1;
            font-size: 1rem;
            color: var(--text-color);
        }




 .sectiontitle {
  font-size: 2.5rem;
  color: var(--title-color);
  text-align: center;
  margin-bottom: 2.5rem;
 font-weight: 600;
  
}

.about {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #000000,#111 );
  color: white;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  
}

.about-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
  padding: 1rem;
  box-sizing: border-box;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--title-color);
}

.about-text p {
  font-size: 1rem;
  color: var(--text-color);
}

.about-gallery {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-gallery .swiper {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
 
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: white !important;
}


/************* Services Section ***************/
.servicescontainer {
  padding: 3rem 2rem;
 background: linear-gradient(to bottom, #111,#000000 );
  color: var(--title-color);
  
}

.services__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 0;
}

.servicebox {
  background-color: #1c1c1c;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.servicebox:hover {
  transform: translateY(-10px);
}

.servicebox i {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  
}
.servicebox .ri-car-washing-fill{
  margin: auto;
}

.servicebox h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}


/* Contact Section */
.contact-section {
  background: linear-gradient(to bottom, #111, #000000);
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 50px;
  
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-container p {
  font-size: 1rem;
  margin-bottom: 35px;
  color: #b6b6b6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.1rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.contact-item i {
  font-size: 1.5rem;
  color: #c60000;
}

.contact-item a, .contact-item span {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #666666;
}



/* Footer */
.footer {
  padding: 1.5rem;
  text-align: center;
  background-color: #000;
  color: #777;
  font-size: 0.9rem;
}

.footer a{
  color: var(--text-color);
}

.footer a:hover{
  color: var(--loader-accentr);
}

 @media (max-width: 1300px) {
.logo-img{
    padding-top:0 ;
    width: 110px;
  }
 
  .navmenu{
    height: var(--header-height);
   padding-top: 0.5rem;
   padding-bottom: 2.5rem;
   
  }

  .navlist{
    position: fixed;
    top: -120%;
    left:50%;
    background-color: var(--body-color);
    width: 100%;
    padding-block: 8rem;
    box-shadow: 0 2px 16px var(--text-color);
    border-radius: 0 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: ease-in-out .3s;
    
  }

  .navmenu ul{
     padding-top: 3rem;
  }
   
 .navitem{
  padding-block: .5rem;
 }
  .navbuttons{
    display: inline-flex;
    justify-content: space-around;
    gap: .5rem;
    z-index: 1000;
    font-size: 22px;
    opacity: 0.9;
    padding-top: .5rem;
  }

  .menu-icon{
    display: block;
    color: white;
    position: relative;
    bottom: 1.5px;
  }
  .show-menu{
    top: -20px;
  }
  
  .fb-icon, .ig-icon{
    z-index: -100000000;
  }

  .navtext {
    opacity: 1 !important;
    max-height: none !important;
    transform: none !important;
    transition: none !important;
  }

  .navlink i {
    transform: none !important;
    transition: none !important;
  }

  .navitem:hover .navlink i,
  .navitem:hover .navtext {
    transform: none !important;
  }
 }
   


 @media (max-width: 850px) {

    .homecontainer{
        
        flex-direction: column;
        align-items: center;
        padding-top: 3.5rem; 
        padding-left: 20px;
        padding-right: 20px;
    }

    .homedata{

        padding-bottom: .5rem;
        text-align: center;
        padding-right: 0;
        }

        .hometitle{
            font-size: 60px;
            color: #ffffff;
            margin-bottom: 1rem ;
            padding-bottom: 0;
        }
        .homesubtitle{
            font-size: 18px;
            padding-left: 10px;
            padding-right: 10px;
            margin-bottom: 2rem ;
            padding-bottom: 0;
        }
        .home-button{
           font-size: 18px;
           padding: 16px 32px;
        }
        
        .servicesmalltext{
          font-size: 18px;
        }

        .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }
  

  .about-text,
  .about-gallery {
    max-width: 100%;
  }

  .about-gallery {
    height: 400px;
  }

  .about-text p{
    font-size: 18px;
  }

}


@media (max-width: 580px) {
.sectiontitle{
  text-align: center;
  padding-right: 0;
}
   
   .serviceshort {
    flex-direction: column;
    
    width: 100%;
  }

   .onepart, .twopart, .threepart {
    width: 100%;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
   }
}

@media (max-width: 500px) {

 .hometitle{
            font-size: 40px;
            color: #ffffff;
            margin-bottom: 2rem ;
            padding-bottom: 0;
        }
        .homesubtitle{
            font-size: 16px;
            padding-left: 10px;
            padding-right: 10px;
            margin-bottom: 3rem ;
            padding-bottom: 0;
        }
        .home-button{
           font-size: 16px;

        }
        
        .servicesmalltext{
          font-size: 16px;
        }


  .ri-menu-line{
    font-size: 1.15rem;
  }

  .header{
    padding-left: 0;
  }
 .logo-img{
  width: 100px;
 }


 .about-text p{
    font-size: 17px;
  }
  .contact-container h2 {
    font-size: 40px;
  }

  .contact-info {
    font-size: 1rem;
    gap: 15px;
  }

  .contact-item i {
    font-size: 1.3rem;
  }

  .servicebox h3 {
  margin-bottom: 0.5rem;
  font-size: 28px;
}
.servicebox p{
  font-size: 16px;
}

.contact-container p {
  font-size: 18px;
 
}
.contact-item {
 font-size: 23px;
 gap: 10px;
 padding-bottom: 10px;
}
.contact-section{
  margin-bottom: 0;
}
}





@media (max-width: 480px) {
  .about {
    padding: 3rem 1rem;
  }

  .about-text h2 {
    font-size: 40px;
  }



  .about-gallery {
    height: 450px;
  }
}

.sponzori{
  padding: 3rem .5rem;
}

.firme {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.firme img {
  flex: 1 1 150px; /* min width 150px */
  max-width: 180px;
  height: 120px; /* uniform height */
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
  background: transparent;
  padding: 10px;
  box-sizing: border-box;
}


.firme img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}


.firme img:active {
  filter: grayscale(0%);
  transform: scale(0.98);
}


@media (max-width: 600px) {

  .about{
    padding-bottom: 0;
  }
  .firme img {
    flex: 1 1 50%;
  }

  .servicescontainer {
  padding: 1rem 2rem;

  
}
}