* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1a1a1a;
  color: white;
  font-family: "Arial", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 40px 20px;

  /* ARKA PLAN GÖRSELİ - */
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Tüm içerik doğrudan görselin üzerinde gösterilecek */
.top-nav,
.main-content,
.footer-address {
  position: relative;
  z-index: 1;
}

/* Metinlerin okunabilirliği için hafif gölge eklendi  */
.top-nav a,
.brand-name,
.coming-soon,
.sub-message,
.footer-address {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Üst Menü */
.top-nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.top-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-nav a:hover {
  color: #aaaaaa;
}

/* Ana içerik */
.main-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  width: 100%; /* tam genişlik */
  margin-top: -20px;
  margin-left: -15px;
}

/* LOGO GÖRSELİ */
.logo {
  width: 450px;
  height: auto;
  align-self: flex-start; /* sola hizala */
  margin-top: -20px;
  margin-left: -15px;
}

/* Yazı logosu (eğer görsel logo yoksa) */
.brand-name {
  font-size: 72px;
  font-weight: bold;
  letter-spacing: 15px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.sub-message {
  font-size: 30px;
  letter-spacing: 6px;
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  margin-top: 10rem;
}

.coming-soon {
  font-size: 45px;
  letter-spacing: 12px;
  margin-bottom: 3px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  font-weight: 800;
}
.message {
  text-align: left;
  align-self: flex-start;
  margin-left: 20px;
}
.footer-address {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  width: 100%;
  max-width: 800px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  text-align: left;
  align-self: flex-start;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-icon {
  width: 32px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Mobil uyum */
@media (max-width: 600px) {
  .brand-name {
    font-size: 40px;
    letter-spacing: 8px;
  }
  .sub-message {
    font-size: 10px;
    letter-spacing: 6px;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-top: 25rem;
  }

  .coming-soon {
    font-size: 25px;
    letter-spacing: 12px;
    margin-bottom: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 800;
  }
  .top-nav {
    justify-content: center;
    gap: 20px;
  }
  .logo {
    width: 300px;
  }
  .footer-address {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    width: 100%;
    max-width: 800px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    text-align: left;
    align-self: flex-start;
    margin-left: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
