/* ========================================
   HERO SECTION - TCG THEME
   ======================================== */
.hero {
  background: linear-gradient(135deg, #fff0f0 0%, #ffffff 50%, #f0f4ff 100%);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Decorative floating cards effect (Joyful TCG vibe) */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 210px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  z-index: 0;
  opacity: 0.6;
}

.hero::before {
  top: 10%;
  left: 5%;
  transform: rotate(-15deg);
  background: linear-gradient(135deg, #ffebee 0%, #fff 100%); /* Pokemon Red hint */
}

.hero::after {
  bottom: 10%;
  right: 5%;
  transform: rotate(15deg);
  background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%); /* One Piece Blue hint */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Image Container - Makes the image pop */
.hero-image-wrapper {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: rotate(-2deg); /* Slight tilt for a playful look */
  transition: transform 0.3s ease;
  border: 4px solid var(--white);
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments for Hero */
@media (min-width: 768px) {
  .hero {
    padding: 6rem 2rem;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero::before {
    width: 200px;
    height: 280px;
    left: 10%;
  }
  .hero::after {
    width: 200px;
    height: 280px;
    right: 10%;
  }
}