.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 50%, var(--orange-primary) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-family: var(--font-main);
  font-size: 5rem;
  color: var(--white);
  text-shadow: 3px 3px 0px var(--orange-dark), 6px 6px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  line-height: 1;
}

.hero-text h1 .gib-highlight {
  font-size: 6rem;
  display: block;
  color: var(--cream);
  animation: pulse 2s ease-in-out infinite;
}

.hero-text .tagline {
  font-family: var(--font-main);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 30px;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.hero-text .sub-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 0 400px;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  border: 5px solid var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--red-accent);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 50px;
  transform: rotate(12deg);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.5);
  animation: wiggle 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .hero-text h1 .gib-highlight {
    font-size: 4.5rem;
  }

  .hero-text .sub-tagline {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    flex: 0 0 280px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h1 .gib-highlight {
    font-size: 3.5rem;
  }

  .hero-text .tagline {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
