/* ===========================
   HOME / HERO SECTION
=========================== */

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 76px 20px;
  min-height: 60vh;
  /*background: linear-gradient(180deg, #ffffff 0%, #d9e7ff 100%);*/
 /* border-top: 4px solid #ffef00;*/
  /*border-bottom: 4px solid #ffef00;*/
  position: relative;
  z-index: 5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 800px;
}

.hero-img {
  width: 160px;
  height: auto;
  filter: drop-shadow(2px 2px 0 #ff0033) drop-shadow(-2px -2px 0 #00d26a);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.hero-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  text-shadow: 2px 2px 0 #ffef00;
}

.hero-text span {
  color: #0073ff;
}

.tagline {
  font-size: 1.1rem;
  color: #222;
  margin-top: 10px;
}

.poetic {
  font-style: italic;
  font-size: 1rem;
  margin: 15px 0;
  color: #444;
  opacity: 0.8;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #ffef00;
  color: #000;
  border: 2px solid #000;
  padding: 8px 20px;
  font-weight: bold;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}

/* Responsive */
@media (max-width: 700px) {
  .hero {
    padding: 60px 15px;
  }

  .hero-img {
    width: 120px;
  }

  .hero-text h2 {
    font-size: 1.6rem;
  }
}


