* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', sans-serif;
  background: url("bg.jpg") no-repeat center center/cover;
  color: #fff;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(8,28,48,0.85), rgba(8,28,48,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

.content {
  max-width: 900px;
}

/* Başlıklar (Noto Sans Black - 900) */
h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 10px;
}

h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 15px;
}

.description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

/* Sosyal butonların link formu için düzenlendi */
.social {
  padding: 10px 18px;
  background: #fff;
  color: #0b2a47;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.social:hover {
  background: #ff8c00;
  color: #fff;
}

.email {
  color: #ff8c00;
  font-size: 14px;
}

/* Üst köşe yazıları */

.top-text {
  position: absolute;
  top: 40px;
  font-size: 16px;
}

.left {
  left: 40px;
  text-align: left;
}

.right {
  right: 40px;
  text-align: right;
}

/* Vurgulu metinler (Noto Sans Black - 900) */
.top-text span {
  color: #ff8c00;
  font-weight: 900;
}

.top-text strong {
  font-weight: 900;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {

  .top-text {
    display: none;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 18px;
  }

  .description {
    font-size: 14px;
  }

  .logo {
    width: 90px;
  }
}