/* ─── Badge ──────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--text);
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  font-weight: 600;
  padding: 3px 16px;
  border-radius: 40px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-day {
  font-family: 'Caveat', cursive;
  font-size: clamp(3rem, 10vh, 6rem);
  font-weight: 700;
  color: var(--green);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.title-date {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.6rem, 9vh, 5.4rem);
  font-weight: 700;
  color: var(--green);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.details {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.details p {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.85rem, 2.6vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.details strong { font-weight: 800; }

/* ─── Mug illustration ───────────────────────────────────────────────────────── */
.mug-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
}

.mug-wrap {
  position: relative;
  width: clamp(180px, 38vh, 300px);
  height: clamp(120px, 28vh, 200px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hand-svg {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 90px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(2px 2px 6px rgba(62, 74, 24, 0.12));
}

.mug-svg {
  width: 85%;
  height: auto;
  filter: drop-shadow(3px 6px 16px rgba(62, 74, 24, 0.22));
  animation: mugFloat 4s ease-in-out infinite;
}

@keyframes mugFloat {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-8px); }
}

/* ─── About ──────────────────────────────────────────────────────────────────── */
.about {
  margin: 0;
  text-align: center;
  max-width: 420px;
}

.about-text {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.92rem, 2.8vw, 1.05rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
}

.about-text em {
  font-style: italic;
  color: var(--green);
  font-weight: 600;
}

/* ─── CTA ────────────────────────────────────────────────────────────────────── */
.cta-section {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-label {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 600;
}

.cta-btn {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 50px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(94, 114, 40, 0.25);
}

.cta-btn:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 74, 24, 0.28);
}

.cta-btn:active { transform: translateY(0px); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  border-top: 1.5px solid var(--green-light);
  padding-top: 10px;
  width: 100%;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─── Responsive: landing ────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .mug-wrap {
    width: clamp(140px, 52vw, 220px);
    height: clamp(96px, 24vw, 160px);
  }
  .hand-svg { width: 70px; }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  footer { margin-top: 8px; }
}

@media (max-width: 360px) {
  .title-day  { font-size: 3rem;   }
  .title-date { font-size: 2.6rem; }
}
