    body {
      background-color: lavender;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    h1 {
      text-align: center;
      color: white;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
      margin-top: 30px;
    }

    .container {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 20px;
      flex-wrap: wrap;
      margin: 90px auto;
      max-width: 1000px;
    }

    .box {
      position: relative;
      width: 400px;
      height: 230px;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
      transition: all 0.3s ease;
    }

    .box::before {
      content: "";
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(0.5);
      transition: all 0.4s ease;
    }

    /* Her kutunun arka plan resmi */
    .box.hakkimda::before { background-image: url('hakkımda.png'); }
    .box.projelerim::before { background-image: url('projeler.png'); }
    .box.iletisim::before { background-image: url('iletişim.png');}
    .box.Blog::before{ background-image: url('blogger2.png');}
    .box:hover::before {
      filter: brightness(0.8);
      transform: scale(1.05);
    }

 .box-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 85px;
  backdrop-filter: blur(2px); /* Başlangıçta daha buğulu */
  background-color: rgba(0, 0, 0, 0.4); /* Hafif karartma */
  border-radius: 15px;
  transition: all 0.4s ease; /* Hover geçişi yumuşak olsun */
}

.box:hover .box-content {
  backdrop-filter: blur(0.9px); /* Hover’da blur azalır */
  background-color: rgba(0, 0, 0, 0.2); /* Daha şeffaflaşır */
  transform: scale(1.02); /* Hafif büyüme efekti (isteğe bağlı) */
}


    .box h2 {
      font-size: 28px;
      margin: 0 0 15px;
    }

    .box p {
      font-size: 18px;
      color: #ffeb3b;
      font-weight: bold;
      margin: 0;
    }

    a { text-decoration: none; }