* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
 display: flex;
flex-direction: column;
align-items: center;
padding: 10px 20px;
height: 170px;
}
header{
height: 170px;
border-bottom: solid 1px rgb(206, 206, 206);
box-shadow: rgb(224, 224, 224) 0 1px 0 0;
background-color: white;
}
.logo{
      display: flex;
      align-items: center;
      color: #666565;
      font-family: 'Aboreto', system-ui;
      font-weight: lighter;
      font-style: italic;
      font-size: 55px;
      height: 30px;
      margin-top: 55px;
  }
  .containerbar{
      max-width: 1920px;
      margin: 0 auto;
 }
  .menu-toggle {
      display: none;
  }
  
  .bar {
      width: 30px;
      height: 3px;
      background-color: #666565;
      margin: 6px 0;
  }
  
  /* Navbar Linkleri */
  .nav-links {
      list-style: none;
      display: flex;
      margin-left: 55px;
      margin-top: 50px;
}
  
  .nav-links li {
 margin-right: 40px;
      
  }
  .nav-links li a {
    text-decoration: none;
    color: #312d2d;
    font-size: 18px;
    font-weight: lighter;
    font-family: 'Aboreto', system-ui;
}
/* Genel stiller */

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    margin-top: 8px;
}

.cards {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}


.cards img {
    width: 100%;
    height: 200px;
    border-bottom: 1px solid #ddd;
}

.card-content{
    padding: 20px;
}

.card-content h3 {
    margin-top: 0;
   text-align: center;
  padding-bottom: 10px;
  font-family: 'Nunito', sans-serif;
}
.card-content p{
  font-family: 'Nunito', sans-serif;
  line-height: 20px;
  text-align:center;
}

.cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn{
  margin-top: 20px;
  padding: 18px 40px;
  border-radius: 35px;
  border: gray;
  font-family: 'Aboreto', system-ui;
}
.btn:hover{
  background-color: #72808e;
  color: white;
  
}
.btn-1{
 margin-left: 50px;
 margin-top: 15px;
  padding: 18px 40px;
  border-radius: 35px;
  border: gray;
  font-family: 'Aboreto', system-ui;
}
.btn-1:hover{
  background-color: #72808e;
  color: white;
  
}

/*mobie*/
@media (max-width: 600px) {
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
  
    body {
      font-family: 'Arial', sans-serif;
      background-color: #f8f9fa;
      color: #333;
    }
  
    header{
        height: 120px;
      }
      .main-content {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          padding: 10px;
         max-width: 1200px;
      }
      .containerbar {
         max-width: auto;
      }
      .logo{
      font-size: 30px;
      margin-top: 10px;
      }
      .container {
          display: flex;
          flex-direction: column;
          max-width: auto;
          margin: 10px;
      }
      .navbar {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        height: 80px;
        position: relative;
      }
      .menu-toggle {
          display: block;
          margin-top: 10px;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        background: rgba(255, 255, 255, 0.8);
        position: absolute;
        top: 70px;
        right: 40px;
        left: 0px;
        z-index: 1;
        border-radius: 15px;
       }
       .nav-links.active {
          display: flex;
        }
        .nav-links li a {
          font-size: 17px;
          color: #666565;
      }
        .nav-links li {
          margin: 10px 0;
        }
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(177px, 1fr));
  }
}
  /* tablet*/
  @media (min-width: 601px) and (max-width: 1024px) {
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
  
    body {
      font-family: 'Arial', sans-serif;
      background-color: #f8f9fa;
      color: #333;
    }
  
    header {
      height: 120px;
      border-bottom: 1px solid rgb(206, 206, 206);
      box-shadow: 0 1px 0 0 rgb(224, 224, 224);
    }
  
    .navbar {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 20px;
      height: 120px;
    }
  
    .logo {
      color: #666565;
      font-family: 'Aboreto', system-ui;
      font-weight: lighter;
      font-style: italic;
      font-size: 45px;
      margin-top: 20px;
    }
  
    .containerbar {
      max-width: 100%;
      margin: 0 auto;
    }
  
    .menu-toggle {
      display: none;
    }
  
    .nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
    }
  
    .nav-links li {
      margin-bottom: 10px;
    }
  
    .nav-links li a {
      text-decoration: none;
      color: #312d2d;
      font-size: 18px;
      font-weight: lighter;
      font-family: 'Aboreto', system-ui;
    }
  
    @media (min-width: 601px) {
      .nav-links {
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
      }
  
      .nav-links li {
        margin-right: 20px;
        margin-bottom: 0;
      }
    }
  }
/*disc*/
@media (min-width: 1025px) {
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
  
    body {
      font-family: 'Arial', sans-serif;
      background-color: #f8f9fa;
      color: #333;
    }
  
    header {
      height: 170px;
      border-bottom: 1px solid rgb(206, 206, 206);
      box-shadow: 0 1px 0 0 rgb(224, 224, 224);
    }
  
    .navbar {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 20px;
      height: 170px;
    }
  
    .logo {
      color: #666565;
      font-family: 'Aboreto', system-ui;
      font-weight: lighter;
      font-style: italic;
      font-size: 65px;
      margin-top: 55px;
    }
  
    .containerbar {
      max-width: 1920px;
      margin: 0 auto;
    }
  
    .menu-toggle {
      display: none;
    }
  
    .nav-links {
      list-style: none;
      display: flex;
      margin-left: 55px;
      margin-top: 50px;
    }
  
    .nav-links li {
      margin-right: 40px;
    }
  
    .nav-links li a {
      text-decoration: none;
      color: #312d2d;
      font-size: 18px;
      font-weight: lighter;
      font-family: 'Aboreto', system-ui;
    }
  }
