@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Rowdies:wght@400;700&display=swap');

/* ==========================================================================
   KRYSSORD HERO SECTION
   ========================================================================== */
.hero-section.kryssord-hero {
  background: url('../img/hero-kryssord.png') center center / cover no-repeat;
  padding: 4rem 5%;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 150px rgba(0,0,0,0.8);
  border-bottom: 4px solid var(--gold, #f5b041);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-section.kryssord-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.kryssord-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.kryssord-hero-title {
  font-family: 'Rowdies', cursive;
  font-size: 5rem;
  margin: 0 0 1rem 0;
  text-shadow: 0 4px 15px rgba(0,0,0,1);
  color: #fff;
  line-height: 1.1;
  letter-spacing: 2px;
}

.kryssord-hero-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0,0,0,1);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-section.kryssord-hero {
    min-height: 300px;
    padding: 3rem 5%;
    margin-bottom: 1rem;
  }
  .kryssord-hero-title {
    font-size: 3rem;
  }
  .kryssord-hero-description {
    font-size: 1.1rem;
  }
}
