.hero-hero {
  --hero-overlay: rgba(0, 0, 0, 0.55);
  --hero-text: rgba(255, 255, 255, 0.98);
  --hero-subtext: rgba(255, 255, 255, 0.78);
  --hero-accent: var(--c-accent);
  position: relative;
  box-sizing: border-box;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 64px 24px;
  color: var(--hero-text);
  background: url('/Image/kapadokya.webp') center / cover no-repeat;
}

.hero-content {
  width: 100%;
  max-width: 960px;
  padding: 0 24px;
}

.hero-title {
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  margin: 0 auto 34px;
  max-width: 780px;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.55;
  color: var(--hero-subtext);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: var(--hero-accent);
  color: rgba(255, 255, 255, 0.98);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semi-bold);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(255, 90, 31, 0.35);
  transition: opacity 0.2s, transform 0.2s, filter 0.2s;
}

.hero-cta:hover {
  opacity: 0.96;
  transform: translateY(-1px);
  filter: brightness(1.02);
}

@media (max-width: 768px) {
  .hero-hero {
    padding: 56px 16px;
  }

  .hero-content {
    padding: 0 8px;
  }
}
