@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* Genel Ayarlar */
/* Genel Ayarlar */
.hakkimizda {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
  }
  
  .hakkimizda-container {
    display: flex;
    max-width: 1440px;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
  
  /* Metin Alanı */
  .hakkimizda-content {
    flex: 1;
  }
  
  .hakkimizda-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hakkimizda-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .hakkimizda-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .social-icon img {
    width: 36px; /* Instagram logosu küçültüldü */
    height: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .social-icon img:hover {
    transform: scale(1.2);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  /* Görsel Alanı */
  .hakkimizda-image-wrapper {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hakkimizda-image-box {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.10); /* İnce sınır */
    background: linear-gradient(#fff, #fff) padding-box,
      linear-gradient(45deg, #FFC633, rgba(0, 0, 0, 0.1)) border-box; /* Kenar renkleri */
    display: flex;
    justify-content: center;
    align-items: center;
    background-clip: border-box;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hakkimizda-image-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .hakkimizda-logo {
    max-width: 80%;
    height: auto;
  }
  
  /* Responsive Tasarım */
  @media (max-width: 1024px) {
    .hakkimizda-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .hakkimizda-image-wrapper {
      margin-top: 40px;
    }
  
    .hakkimizda-title {
      font-size: 36px;
    }
  
    .hakkimizda-description {
      font-size: 16px;
    }
  
    .social-icon img {
      width: 32px;
      height: 32px;
    }
  }
  
  @media (max-width: 768px) {
    .hakkimizda-container {
      padding: 20px;
    }
  
    .hakkimizda-title {
      font-size: 28px;
    }
  
    .hakkimizda-description {
      font-size: 14px;
    }
  
    .hakkimizda-image-box {
      width: 250px;
      height: 250px;
    }
  
    .social-icon img {
      width: 28px;
      height: 28px;
    }
  }
  