/* ===== HERO SECTION ===== */
.comic-hero {
  padding: 30px 0;
  /* background: #c5f0ff; */
  position: relative;
}

/* HERO IMAGE */
.hero-image {
  max-width: 280px;
  margin-bottom: 220px;
  filter: drop-shadow(6px 6px 0 #000);
}

@media (max-width: 768px) {
  .hero-image {
    max-width: 220px;
    margin-bottom: 50px;
  }
}

/* HERO TITLE */
.hero-title {
  font-size: 4.15rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title span {
  color: #b292d8;
  text-shadow: 3px 3px 0 #fff;
}

/* HERO TEXT */
.hero-text {
  position: relative;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  background: #fff;
  border: 3px solid #000;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* GRAFFITI SPLASH */
.hero-text::before {
  content: "";
  position: absolute;
  top: -25px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: #8840A5;
  opacity: 0.15;
  border-radius: 50% 40% 60% 45%;
  transform: rotate(25deg);
}

/* SPRAY DOTS */
.hero-text::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 8px;
  height: 8px;
  background: #8840A5;
  border-radius: 50%;
  opacity: 0.4;
  box-shadow:
    16px -10px 0 #8840A5,
    32px 6px 0 #8840A5,
    48px -6px 0 #8840A5;
}

/* HOVER EFFECT */
.hero-text:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 10px 10px 0 #000;
}

/* HERO CTA WRAPPER */
.hero-cta-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CONTRACT CARD */
.contract-card {
  background: #fff;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 15px 20px;
  box-shadow: 6px 6px 0 #000;
  min-width: 320px;
}

.contract-label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

/* CONTRACT BOX */
.contract-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f3f3f3;
  border: 2px dashed #8840A5;
  padding: 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  word-break: break-all;
}

.contract-box button {
  background: #ff3d00;
  color: #fff;
  border: 2px solid #000;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #000;
}

.contract-box button:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #000;
}

/* RIGHT SIDE SOCIAL BAR */
.hero-side-socials {
  width: 90px;
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

/* REUSE YOUR SOCIAL BUTTON STYLE */
.social-btn {
  position: relative;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 14px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  text-align: center;
  overflow: hidden;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .social-btn {
    padding: 12px 35px;
  }
}

/* GRAFFITI SPLASH */
.social-btn::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: #8840A5;
  opacity: 0.12;
  border-radius: 50% 40% 60% 45%;
  transform: rotate(20deg);
}

/* SPRAY DOTS */
.social-btn::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 10px;
  width: 6px;
  height: 6px;
  background: #8840A5;
  border-radius: 50%;
  opacity: 0.35;
  box-shadow:
    12px -6px 0 #8840A5,
    22px 4px 0 #8840A5,
    32px -4px 0 #8840A5;
}

/* HOVER */
.social-btn:hover {
  transform: translate(2px, 2px) rotate(-1deg);
  box-shadow: 2px 2px 0 #000;
}


/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-side-socials {
    width: 90px;
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 25px;
  }
}


