/* ============================================
   HERO SECTION - Bright & Playful
   ============================================ */

.hero {
  background:
    linear-gradient(125deg, rgba(255, 217, 61, 0.15) 0%, rgba(168, 230, 207, 0.15) 45%, rgba(255, 183, 178, 0.15) 100%),
    url('../assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 0 3rem 3rem;
  padding: 3rem 0 4rem 0;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}

/* Playful bunny ear decorations on hero */
.hero::before {
  content: '🐰';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  opacity: 0.2;
  transform: rotate(15deg);
}

.hero::after {
  content: '🐾';
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 2.5rem;
  opacity: 0.15;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  animation: fadeIn 0.6s ease;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #FF8A7A, #FF9F4A, #FFD93D);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #4B3B38;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-badge {
  background: linear-gradient(135deg, #ff9a57 0%, #FFB84A 35%, #FFD93D 70%, #FFE4A0 80%);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
  border: none;
  box-shadow: var(--soft-shadow);
  color: #2C1A14;
}

.hero-badge i {
  margin-right: 6px;
  color: #FF8A2B;
}

/* Hero CTA Button */
.hero-text .btn-primary {
  background: linear-gradient(135deg, #FF9F4A, #FF8A2B);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  color: white;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  box-shadow: var(--button-shadow);
  transition: var(--bounce-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  width: auto;
}

.hero-text .btn-primary:hover {
  background: linear-gradient(135deg, #FF8A2B, #FF7A1A);
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08);
}

.hero-text .btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.hero-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.hero-image i {
  font-size: clamp(4rem, 12vw, 8rem);
  background: linear-gradient(135deg, #FFD93D, #FF9F4A, #FF8A7A);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(6px 8px 12px rgba(255, 159, 74, 0.3));
}

/* Ribbon - Playful */
.ribbon {
  background: linear-gradient(135deg, #FFD93D, #FFE4A0);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 2rem;
  margin: 2rem 0 1rem;
  border: none;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #2C1A14;
  box-shadow: var(--playful-shadow);
}

.ribbon i {
  font-size: 1.4rem;
  color: #FF8A2B;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets */
@media (max-width: 1024px) {
  .hero {
    padding: 2.5rem 0 3.5rem 0;
  }
  
  .hero-content {
    gap: 1.5rem;
  }
}

/* Mobile Devices */
@media (max-width: 780px) {
  .hero {
    padding: 2rem 0 3rem 0;
    border-radius: 0 0 2rem 2rem;
  }
  
  .hero::before {
    font-size: 2rem;
    top: 10px;
    right: 15px;
  }
  
  .hero::after {
    font-size: 1.8rem;
    bottom: 10px;
    left: 15px;
  }
  
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1.5rem;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-text p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-text .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    max-width: 400px;
  }
  
  .hero-badge {
    font-size: 0.85rem;
  }
  
  .ribbon {
    padding: 0.6rem 1.5rem;
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0 2.5rem 0;
    border-radius: 0 0 1.5rem 1.5rem;
  }
  
  .hero::before {
    font-size: 1.5rem;
  }
  
  .hero::after {
    font-size: 1.2rem;
  }
  
  .hero-content {
    gap: 1rem;
  }
  
  .hero-text .btn-primary {
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .ribbon {
    padding: 0.5rem 1.2rem;
  }
  
  .ribbon i {
    font-size: 1.2rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}