/* Katana Hero Section Styles */

/* Container for the hero area */
.katana-hero-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  overflow: hidden;
  color: #e8cda2;
}

/* Semi-transparent overlay with curved right edge */
.katana-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 48%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
  border-top-right-radius: 300px;
  border-bottom-right-radius: 150px;
  pointer-events: none;
  z-index: 1;
}

/* Content wrapper */
.katana-hero-content {
  position: relative;
  z-index: 2;
  max-width: 48%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Heading styles */
.katana-hero-title-main {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: 0.05em;
  background-image: linear-gradient(to right, #f0cfa1, #d6a465, #b58244);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(208, 158, 82, 0.5), 0 0 40px rgba(208, 158, 82, 0.3), 0 0 60px rgba(208, 158, 82, 0.2);
}

.katana-hero-title-sub {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: #d0a25f;
  margin-top: 0.25rem;
}

/* Description paragraph */
.katana-hero-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.75);
}

/* Button */
.katana-hero-btn {
  display: inline-block;
  position: relative;
  padding: 0.75rem 2.25rem;
  border: 2px solid #d0a25f;
  color: #d0a25f;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  border-radius: 9999px;
  overflow: hidden;
  transition: color 0.5s ease, background-color 0.5s ease;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(208, 158, 82, 0.3), 0 0 30px rgba(208, 158, 82, 0.2);
}

.katana-hero-btn:hover {
  background-color: #d0a25f;
  color: #1a1a1a;
}

/* Fade in up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}