* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-weight: 400;
  }
  
  body {
    overflow-x: hidden;
    background:#E5E4E2 ;
  }
  
  /* HEADER */
  header {
    padding-top:5px ;
    position: fixed;
    top: 0;
    width: 100%;
    background: #636E72;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    z-index: 1000;
  }
  
  /* SOL MENÜ */
  .left-menu {
    position: absolute;
    left: 40px;
    display: flex;
    gap: 25px;
  }
  
  .left-menu a {
    text-decoration: none;
    color: #E5E4E2;
    font-size: 17px;
    font-weight: 600;
  }
  
  
  
  /* HAMBURGER */
  .hamburger {
    top: 30px;
    color: #E5E4E2;
    position: absolute;
    right: 40px;
    font-size: 30px;
    cursor: pointer;
    display: none;
  }
  
  /* SLIDER */
  .slider {
    margin-left: 17%;
    width: 65%;
    height: 60vh;
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s ease;
  }
  
  .slide {
    width: 100%;
    flex-shrink: 0;
  }
  
  .slide img {
  
    object-fit: cover;
    filter: brightness(0.9);
  }
  
  /* 🔥 ORTADA MENÜ */
  .mobile-menu {
  
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    overflow-wrap: inherit;
    visibility: hidden;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  
    z-index: 3000;
    transition: 0.3s;
  }
  
  /* aktif olunca */
  .mobile-menu.active {
    width: 250px;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }
  
  /* menü yazıları */
  .mobile-menu a {
    padding: 3%;
    background-color: rgba(0, 0, 0, 0.5); /* siyah, %50 saydam */
    color: white;
    font-size: 20px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
  }
  
  .mobile-menu a:hover {
    opacity: 0.7;
  }
  
  /* RESPONSIVE */
  @media(max-width: 768px) {
  
    .left-menu {
      display: none;
    }
  
    .hamburger {
      display: block;
    }
  
    .slider {
      height: 70vh;
      width: 90%;
      padding: 0;
      margin-left: 5%;
    }
  }
  /*metin kısmı*/
  .content {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .box {
    
    margin-bottom: 90px;
   
  }
  
  .box h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
  }
  
  /* mobil uyum */
  @media(max-width: 768px) {
      .box{border-bottom:2px solid gray;}
    .box h1 {
      font-size: 24px;
    }
  
    .box p {
      font-size: 14px;
    }
  }
  
  .footer {
   
    width: 100%;
    background: #31473A; /* yağ yeşili (olive tone) */
    color: white;
    text-align: center;
    padding-top:20px ; /* yüksekliği buradan uzattık */
    margin-top: 100px;
  }
  
  .footer h2 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  
  .footer p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
  }
  
  /* mobil */
  @media(max-width: 768px) {
    .footer {
        
      padding: 70px 20px;
    }
  
    .footer h2 {
      font-size: 24px;
    }
  
    .footer p {
      font-size: 14px;
    }
  }
  .logo img{
    width: 90px;
    height: 90px;
    border-radius: 100%;
  }
  .floating-buttons{
    position: fixed;
    right: 20px;
    bottom: 20px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 9999;
}

.float-btn{
    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    color: white;
    font-size: 28px;

    box-shadow: 0 5px 15px rgba(0,0,0,.20);
    transition: .3s;
}

.float-btn:hover{
    transform: scale(1.08);
}

.whatsapp{
    background: #25D366;
}

.phone{
    background: #333;
}


/* MOBİL */
@media(max-width:768px){

    .floating-buttons{
        right: 12px;
        bottom: 15px;
    }

    .float-btn{
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

}