/* Home Hero Styles */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, #FF1B6B 0%, #7B2CBF 50%, #FFB627 100%);
  background-size: 200% 200%;
  /* animation: shimmer 8s ease infinite; */
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 32px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: white;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  font-family: 'Bebas Neue', 'Heebo', sans-serif;
  font-size: 96px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 4px 4px 0 var(--black);
  margin-bottom: 24px;
}

.hero-text h1 .accent {
  color: var(--yellow);
  display: block;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 500;
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--black);
  color: var(--yellow);
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  animation: pulse-cta 2.5s ease-in-out infinite;
}

.btn-hero-primary:hover {
  background: var(--pink);
  color: white;
  animation: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: white;
  color: var(--black);
  border: 2px solid white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.hero-image {
  aspect-ratio: 4/5;
  background: white;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 64px;
  }

  .hero-image {
    display: none;
  }
}