    * {
    margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}

:root{
--primary-color: #ffffff;
--secondary-color: #ffffff;
--accent-color: #000000;
--text-color: #0f0101;
--border-color: #030303;
--highlight: #fffb00;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
  }
  
  .navbar {
    
    padding: 1.5rem 5%;
    background-color: rgb(5, 5, 5);
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
  }

  .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color:var(--primary-color);
      letter-spacing: -1px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
.logo span{
  color: var(--highlight);
}
    


    .nav-links  {

         display:flex;
         gap: 4rem;
        
    }

    .nav-links a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      position: relative;

    }

    .nav-links a::after{
      content:'' ;
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary-color);
      transition: width 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .hero{
      height: 100vh;
      background: linear-gradient(45deg,rgba(226, 224, 224, 0),rgba(160, 157, 157, 0.116) ),
            url(img/foto2.jpg) center/cover fixed;
       display: flex;
       align-items: center;
       padding: 0 3%;
       position: relative;
       overflow: hidden;

    }

    .hero-content {
     
      max-width:800px;
      transform: translate 50px;
      opacity: 0;
      animation: slideup 1s forwards 0.5s;

    }
    @keyframes slideup {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .hero-content h1 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--primary-color);
      line-height: 1.1;
      position: relative;    
    }

    .hero-content h1 span{
      color: var(--highlight);
    }

    .hero-content p { 
      font-size: 2rem;
      color: rgb(255, 255, 255);
      margin-bottom: 2rem;
      line-height: 1.6;
      max-width: 700px;
    }
 
    .cta-container{
      display: flex;
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .cta-button{
      padding: 1.2rem 2.5rem;
      background-color: var(--highlight);
      color: var(--accent-color);
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      font-weight: 600;
      border-radius: 22px;
     
    }
   

  .cta-button-secondary{
    border-radius: 12px;
    background-color: transparent;
    color: var(--highlight);
    border: 3px solid var(--highlight);
    font-size: 27px
  }

  .cta-button:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(0,0,0,0.15);
  }

 .scroll-indicator{
   position: absolute;
   bottom: 2rem;
   left: 50%;
   color: var(--highlight);
   transform:translateX(-50%);
  animation: bounce 2s infinite;
  font-size: 85px;
 
 }

 @keyframes bounce{
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);} 
  60% {transform: translateY(-15px);}  
}

.featured-cars{
  padding: 8rem 5%;
  background-color: var(--secondary-color);
}

.section-title{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--accent-color);
}


/*Menu Section*/

.menu{
  padding: 4rem 5%;
  background: rgb(255, 255, 255);

}

.menu h2{
  text-align:center;
  font-size: 4rem;
  margin-bottom: 2rem;
}

.menu-filters{
  
  justify-content:center;
  gap: 0.5rem;;
  margin-bottom: 3rem;
}

.filter-btn{
  font-size: 13px;

  background:transparent;
  border: 9px solid  #ff954f;
  color: var(--border-color);
  padding: 1.5rem 2rem;
  border-radius: 40px;
  cursor:pointer;
  transition:all 0.3s;

  margin-top: 10px;
      margin-bottom: 10px;

      margin-left: 20px;
      margin-right: 1px;
}

.filter-btn.active, .filter-btn:hover{
  background:#ff954f;
  color:white;
  
}

.menu-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 100px;
}

.menu-card{
  background: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgb(0, 0, 0,0.1);
  transition :transform 0,3s, box-shadow 0.3s
}

.menu-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.menu-card img{

  width:100%;
  object-fit: cover;
}

.menu-card-content{
  padding: 1.5rem;
}

.menu-card h3{
  font-size: 1.3rem;
  margin-bottom: 0,5rem;
}

.menu-card p{
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.menu-card.price{
  font-size: 1.2rem;
  font-weight: 700;
  color: chocolate;
}

/* Fotograflar section */
h2{
  text-align:center;
  font-size: 4rem;
  margin-bottom: 2rem;
}
.class{
  text-align:center;
}
.section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #a5b1c2;
}

.carousel{
  overflow: hidden;

  background-color: #1e272e;
  padding: 30px 0;
  margin-top: 60px;
  border-radius: 5px;
  box-shadow: 20px 35px 35px rgb(0,0,0,0.5);
}

.fotograflar-container{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 250px;
  justify-items: stretch;
  animation: animation 40s linear infinite;
}

.fotograflar-container img{
  text-align:center;
  width: 220px;
  height: 400px;
  border-radius: 15px;
  object-fit:cover ;
  border:1px solid #a5b1c2;
}

@keyframes animation{
  to{
    translate: calc(-4*1700px);
  }
}

 /* why choose section */
 /* why choose section */
 
 .why-choose {
  padding: 5rem 5%;
  background-color: var(--primary-color);
 }

 .section-header{
  text-align: center;
  margin-bottom: 4rem;
 }

 .section-subtitle{
  color: #3c3d41;
  font-size: 3.1rem;
  margin-top: 1rem;
 }

 .benefits-grid{
  
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
 }

 .benefits-card {
  padding: 2rem;
  border-radius: 22px;
  background-color:#f1f1f1;
  border: 3px solid var(--border-color);
 transition:transform 0.3s;
 text-align: center;
 }

 .benefits-card:hover{
  transform: translateY(-5px);
 }

 .benefit-icon{
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem ;
 }

 .benefit-icon i{
  color: var(--highlight);
  font-size: 1.5rem;
 }


 /* İletişim section */


 
 .section{
  height: 100vh;
  display: grid;
  align-items:center;
  background: #e1e1e1;
  font-size: 3.1rem;
  margin-bottom: 0rem; 
 }
 
 .contact-wrap {
  width: 80%;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  border-radius: 6px;
 }
 
 .contact-in{
  padding: 40px 30px;
 }
  
 .contact-in:nth-child(1)
 {
  flex: 30%;
  color: #ffffff;
  background: url( img/iletişim.jpg)

 }
 .contact-in:nth-child(2)
 {
  flex: 25%;
  background: #50020f;
  
 }
 .contact-in:nth-child(3)
 {
  flex: 45%;
  padding: 0;
 }

 .contact-in h1 {
  font-size: 34px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
 }

 .contact-in h2 {
  font-size: 25px;
  font-weight: 400px; 
  margin-bottom: 25px;
  text-align:left;
  
  
 }

 .contact-in h2 i {
  font-size: 16px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #f5f5f5;
  color: #000;
  border-radius: 50px;
  line-height: 40px;
  text-align: center;
 }

 .contact-in p {
  font-size: 17px;
  font-weight: 300; 
  margin-bottom: 20px;
  color: #fff;
 }

 .contact-in ul{
  padding: 0;
  margin: 0;
 }

 .contact-in ul li{
  list-style:none;
  display: inline-block;
  margin-right: 5px;
  margin-top: 5px;
 }

 .contact-in ul li a{
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  background: #fff;
  border-radius: 50px;
 }

 .contact-in ul li a i{
  font-size: 35px;
  line-height: 50px;
  color: #000;
 }

 .contact-in iframe{
  width: 100%;
  height: 100%;
 }

 @media only secreen and (max-widty:480px){
  .contact-in:nth-child(1)
 {
  flex: 50%;


 }
 .contact-in:nth-child(2)
 {
  flex: 50%;

 }
 .contact-in:nth-child(3)
 {
  flex: 100%;
  
 }

 }

 @media only secreen and (max-widty:360px){
  .contact-in:nth-child(1)
 {
  flex: 50%;


 }
 .contact-in:nth-child(2)
 {
  flex: 50%;

 }
 .contact-in:nth-child(3)
 {
  flex: 100%;
  
 }

 }
 
 /*Footer*/

 footer{
  background: var(--accent-color);
  color: white;
  padding: 4rem 5%;
  text-align: center;
  font-size: 1.2rem;
  
 }
 
 .footer-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:3rem;
  border-bottom: 1px solid rgb(225, 225, 225,0.1);
  padding-bottom: 3rem;
 }

 .footer-col h3 {
  color:yellow;
  margin-bottom: 1.5rem;
 }

 .footer-col ul {
  list-style: none;
 }

 .footer-col li {
  margin-bottom:0.8rem; 
 }

 .footer-col a{
  color: white;
  text-decoration: none;
  transition: color 0.3s;
 }

 .footer-col a:hover{
  color:yellow
 }

 .social-links{
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;

 } 
 
 .social-linksa{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
 }  

 .social-links a{
  color:white;
  font-size: 3rem;
  transition: color 0.3s;
 }

 .social-links a:hover {
  color:yellow;
 }

 .copyright{
  margin-top: 2rem;
  font-size: 2rem;
  opacity: 0.8;
 }
 
 /* Responsive Desing */

 @media (max-width:768px){
  .hero{
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }

  .here-image{
    order: -1;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-links{
    display: none;
  }

  .menu-filters{
    flex-wrap: wrap;
  }

 }
