/* Yapım aşamasında sayfası — city-construction-site şablonu temel alındı */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #c5ebae;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  color: #6b847f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.wrap {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.intro {
  margin-bottom: 8px;
}

.brand {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7f9d88;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #4f6b62;
}

.lead {
  margin: 0 auto;
  max-width: 46ch;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  color: #6b847f;
}

/* SVG illüstrasyon */
svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1007px;
  margin: 4px auto 0;
}

#wheel,
#top-toggle,
#side-toggle,
#button1,
#button2 {
  cursor: pointer;
}

/* Animasyon JS ile açılır; JS yoksa şehir görünür kalsın (bkz. no-js kuralı) */
.city path {
  visibility: hidden;
}

.hint {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #7f9d88;
}

.foot {
  margin-top: 22px;
  font-size: 0.82rem;
  color: #8cb594;
}

.foot p {
  margin: 0;
}

/* JS devre dışıysa: şehri göster, etkileşim ipucunu gizle */
html.no-js .city path {
  visibility: visible;
}

html.no-js .hint {
  display: none;
}

@media (max-width: 600px) {
  body {
    padding: 22px 14px;
  }

  .hint {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .city path {
    visibility: visible;
  }
}
