/* ======= GENEL YAPI ======= */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  color: #fff;
  text-align: center;
}

/* ======= ÜST MENÜ ======= */
header {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #333;
}

/* Logo alanı: logo + yazılar */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-img {
  height: 45px;
}

.logo-text h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 2px;
  color: #ff9900;
  font-weight: bold;
}

.logo-text p {
  margin: 0;
  font-size: 13px;
  color: #ccc;
  margin-top: 4px;
}

/* Menü bağlantıları */
nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #ff9900;
}

/* Dil seçimi */
.lang-switch {
  margin-left: 20px;
  font-size: 14px;
}

.lang-switch a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
}

.lang-switch a:hover {
  color: #fff;
}

/* ======= ANA ALAN ======= */
.hero {
  padding: 120px 20px;
  max-width: 700px;
  margin: auto;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.hero p {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* ======= BUTONLAR ======= */
.buttons .btn {
  background: #ff9900;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  margin: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.buttons .btn:hover {
  background: #ffcc00;
}

.buttons .secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #ff9900;
}

.buttons .secondary:hover {
  background: #ff9900;
  color: #000;
}

/* ======= ALT KISIM ======= */
footer {
  margin-top: 80px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #333;
  padding: 20px 0;
}

/* ======= MOBİL ======= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
  }

  .logo {
    flex-direction: column;
    align-items: center;
  }

  .logo-text {
    align-items: center;
  }

  nav {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .lang-switch {
    margin-top: 10px;
  }
}
