/* Section background inspired by logo */
.kyobe-inspiration {
  position: relative;
  padding: 100px 15px;
  min-height: 20vh;

  /* Background image */
  background:
    linear-gradient(
      rgba(11, 93, 59, 0.279),
      rgba(11, 93, 59, 0.423)
    ),
    url("images/kyobe-idex1.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  overflow: hidden;
}

/* Soft nature overlay */
.kyobe-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.25), transparent 45%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 50%);
  z-index: 1;
}

/* Content */
.kyobe-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text */
.kyobe-text {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #f9faf7;
  line-height: 1.4;
}

/* Typing */
.typing-wrapper {
  display: inline-flex;
  align-items: center;
  color: #f2c94c;
  font-weight: 800;
  min-width: 230px;
  margin: 0 6px;
}

/* Cursor */
.typing-cursor {
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* Mobile */
@media (max-width: 480px) {
  .kyobe-inspiration {
    padding: 80px 16px;
  }
}
