* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f7f3df;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(247, 243, 223, 0.94), rgba(247, 243, 223, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(32, 81, 75, 0.12) 120px 122px),
    repeating-linear-gradient(0deg, transparent 0 119px, rgba(32, 81, 75, 0.12) 120px 122px);
}

.content {
  position: relative;
  z-index: 2;
  width: min(900px, 90%);
  padding: 58px 36px 64px;
  text-align: center;
  border: 6px solid #20514b;
  border-radius: 28px;
  background: #fffdf3;
  box-shadow: 14px 14px 0 #f3a51b;
}

.eyebrow {
  margin: 0 0 12px;
  color: #20514b;
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

h1 {
  margin: 0;
  color: #20514b;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.subtitle {
  max-width: 650px;
  margin: 28px auto 0;
  color: #554d3d;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

/* Actual pickleball paddle: solid paddle face + short handle */
.paddle {
  position: relative;
  width: 84px;
  height: 100px;
  margin: 0 auto 14px;
  transform: rotate(-12deg);
}

.paddle .face {
  position: absolute;
  left: 4px;
  top: 0;
  width: 76px;
  height: 72px;
  border-radius: 45% 45% 38% 38%;
  background: #f3a51b;
  border: 5px solid #20514b;
  box-shadow: inset 0 0 0 7px rgba(255,255,255,0.25);
}

.paddle .handle {
  position: absolute;
  left: 30px;
  top: 64px;
  width: 25px;
  height: 42px;
  border-radius: 6px 6px 10px 10px;
  background: #20514b;
  border: 4px solid #173e3a;
}

.pickleball {
  position: absolute;
  z-index: 1;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #c9df39;
  box-shadow: inset -12px -10px 0 rgba(32, 81, 75, 0.12);
}

/* Curved seam/holes styling evokes a perforated pickleball */
.pickleball::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 5px dashed #f7f3df;
  border-radius: 50%;
}

.pickleball::after {
  content: "••••••••";
  position: absolute;
  inset: 34px 20px;
  color: #f7f3df;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 4px;
  transform: rotate(35deg);
}

.ball-one {
  top: 8%;
  left: 8%;
  transform: rotate(-18deg);
}

.ball-two {
  right: 8%;
  bottom: 8%;
  transform: rotate(20deg);
}

.mini-balls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.mini-balls span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c9df39;
  border: 2px dashed #f7f3df;
  box-shadow: 0 0 0 2px #20514b;
}

@media (max-width: 600px) {
  .content {
    padding: 48px 20px;
    border-width: 4px;
    box-shadow: 8px 8px 0 #f3a51b;
  }

  .pickleball {
    width: 80px;
    height: 80px;
  }

  .pickleball::before {
    inset: 13px;
    border-width: 3px;
  }

  .pickleball::after {
    inset: 20px 10px;
    font-size: 14px;
    line-height: 18px;
  }
}
