* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b0b0f;
  color: white;
}

/* ANA CONTAINER */
.container {
  display: flex;
  height: 100vh;
}

/* SOL TARAF */
.left {
  width: 50%;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 20px;
  filter: grayscale(20%);
  transition: 0.4s;
}

.left img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* SAĞ TARAF */
.right {
  width: 50%;
  padding: 80px;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.right h3 {
  color: #aaa;
  margin-bottom: 20px;
}

.right p {
  color: #bbb;
  line-height: 1.6;
  max-width: 450px;
}

/* SOSYAL BUTONLAR */
.social {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
  width: fit-content;
}

/* HOVER */
.btn:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.05);
}

/* RENKLER */
.instagram i { color: #E1306C; }
.tiktok i { color: #fff; }
.youtube i { color: #FF0000; }
.linkedin i { color: #0A66C2; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
    height: 50vh;
  }

  .right {
    padding: 40px;
    text-align: center;
    align-items: center;
  }

  .social {
    align-items: center;
  }
}