/* =========================================================
   HERO SECTION — BÆSJ & BLING
   ========================================================= */
.hero-baesj {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}


/* ----------------------------
   HERO CONTENT
---------------------------- */
.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1400px;
  padding: 0 8vw;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-family: var(--font-heading, "Poppins", sans-serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-text p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-btn.primary {
  background: var(--color-gold, #c7a75e);
  color: #fff;
  box-shadow: 0 5px 15px rgba(199, 167, 94, 0.3);
}
.hero-btn.primary:hover {
  background: #b4924a;
  transform: translateY(-3px);
}
.hero-btn.secondary {
  border: 2px solid var(--color-gold, #c7a75e);
  color: var(--color-gold, #c7a75e);
}
.hero-btn.secondary:hover {
  background: var(--color-gold, #c7a75e);
  color: #fff;
}

.hero-graphic {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================================================
   POOP HERO SVG (static)
   ========================================================= */
.poop-hero-svg {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: min(100%, 520px);
  height: auto;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
}

/* =========================================================
   SVG ELEMENTS — EYES, SMELL, FLIES (for poop SVG)
   ========================================================= */
.eye {
  transform-origin: center;
  animation: blink 6s ease-in-out infinite;
}
@keyframes blink {
  0%,90%,100% { transform: scaleY(1); }
  92%,98% { transform: scaleY(0.1); }
}

.smell path {
  animation: wave 4s ease-in-out infinite;
}
@keyframes wave {
  0%,100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-8px); opacity: 1; }
}

/* FLIES INSIDE SVG (backup small wiggle) */
#flies {
  overflow: visible;
}
.fly circle {
  animation: buzz 0.2s infinite alternate;
  transform-origin: center;
  fill: #000;
}
@keyframes buzz {
  from { transform: translate(0,0); }
  to { transform: translate(.5px,-.5px); }
}
.fly ellipse {
  stroke: rgba(0,0,0,0.25);
  stroke-width: .3;
  fill: rgba(255,255,255,.9);
  opacity: 0.8;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px){
  .hero-inner {
    flex-direction: column;
    text-align:center;
    padding:6rem 5vw;
  }
  .hero-text {
    flex: 1 1 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .poop-hero-svg {
    position: static;
    margin: 3rem auto 0;
    transform: none;
    width: clamp(220px, 55vw, 380px);
  }
}

@media (max-width: 600px){
  .hero-baesj{
    padding:4rem 0 2.5rem;
  }
  .hero-inner{
    padding:3rem 1.5rem 0;
    gap:2.5rem;
  }
  .hero-text h1{
    font-size:2.2rem;
  }
  .hero-text p{
    font-size:1rem;
  }
  .hero-buttons{
    width:100%;
    justify-content:stretch;
    flex-direction:column;
  }
  .hero-btn{
    width:100%;
    text-align:center;
  }
  .hero-graphic{
    width:100%;
  }
}

/* =========================================================
   HTML FLY OVERLAY SYSTEM (external layer)
   ========================================================= */
.poop-hero-wrapper {
  position: relative;
  display: inline-block;
}
.hero-footer-wrapper {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #fffaf3 0%, #fff0d9 100%);
  overflow: hidden;
}

/* soft concave curve into next section */
.hero-footer-wrapper::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #f6f8fa;
  border-radius: 50% / 20%;
  transform: translateY(50%);
  z-index: 2;
}

/* footer layout */
.hero-footer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 2rem 3rem;
  background: linear-gradient(180deg, #fffaf3 0%, #fff0d9 100%);
  border-top: 2px solid rgba(199, 167, 94, 0.25);
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3.5rem;
}

/* category item (no more cards, just refined icon + text) */
.hero-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #5c4b2a;
  transition: all 0.25s ease;
  position: relative;
}

.hero-category img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: floaty 5s ease-in-out infinite;
}

/* ensure all icons appear identical in size ratio */
.hero-category img {
  aspect-ratio: 1 / 1;
  max-height: 70px;
}

/* labels */
.hero-category span {
  margin-top: 0.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #3c2e1a;
  transition: color 0.3s ease;
}

/* hover animation */
.hero-category:hover img {
  transform: scale(1.15) rotate(-3deg);
  filter: drop-shadow(0 5px 6px rgba(199, 167, 94, 0.4)) brightness(1.15);
}

.hero-category:hover span {
  color: #c7a75e;
}

/* golden ring + sparkle when hovering */
.hero-category::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 2px solid rgba(199, 167, 94, 0.4);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.4s ease;
}

.hero-category:hover::after {
  width: 110px;
  height: 110px;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* floating idle motion */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* top shimmer effect */
.hero-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffd880, #c7a75e, #ffd880, transparent);
  opacity: 0.5;
  animation: shimmer 8s linear infinite;
  background-size: 200% auto;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@media (max-width: 700px) {
  .hero-categories {
    gap: 2rem;
  }
  .hero-category img {
    width: 55px;
    height: 55px;
  }
  .hero-category span {
    font-size: 0.9rem;
  }
}

@media (max-width: 500px) {
  .hero-footer{
    padding:2rem 1.25rem 2.5rem;
  }
  .hero-categories{
    gap:1.25rem;
  }
  .hero-category img {
    width:48px;
    height:48px;
  }
  .hero-category span{
    font-size:0.85rem;
  }
}
