:root {
  color-scheme: light;
  --sunset: #ffb347;
  --gold: #ffda69;
  --crimson: #ed254e;
  --raspberry: #c81d65;
  --teal: #0cbaba;
  --deep-teal: #0a4f6a;
  --cream: #fff4e3;
  --ink: #2a1a1f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff8f0 0%, #ffe0cb 45%, #ffd1c0 75%)
      fixed,
    repeating-linear-gradient(
        -45deg,
        rgba(12, 186, 186, 0.08) 0,
        rgba(12, 186, 186, 0.08) 8px,
        rgba(255, 211, 120, 0.08) 8px,
        rgba(255, 211, 120, 0.08) 16px
      )
      fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
}

.curtain-shadow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(237, 37, 78, 0.15), transparent 40%),
    radial-gradient(circle at top right, rgba(200, 29, 101, 0.15), transparent 35%);
  mix-blend-mode: multiply;
}

.marquee {
  width: min(960px, 100%);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  position: relative;
  box-shadow: 0 30px 80px rgba(42, 26, 31, 0.15);
  border: 6px solid #ffe9c2;
}

.hero h1 {
  font-family: "Baloo 2", "DM Sans", cursive;
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  margin: 0.25rem 0 1rem;
  letter-spacing: 1px;
  color: var(--crimson);
  text-shadow: 0 8px 24px rgba(200, 29, 101, 0.25);
}

.hero .eyebrow {
  font-family: "Baloo 2", cursive;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--raspberry);
  margin: 0;
}

.hero .lede {
  font-size: 1.1875rem;
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 2rem;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.notify {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: var(--cream);
  border-radius: 18px;
  padding: 0.75rem;
  border: 2px dashed rgba(237, 37, 78, 0.3);
}

.notify input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  min-width: 200px;
}

.notify input:focus {
  outline: 2px solid rgba(12, 186, 186, 0.45);
  outline-offset: 2px;
}

.notify button {
  border: none;
  padding: 0.85rem 1.8rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Baloo 2", cursive;
  background: linear-gradient(135deg, var(--crimson), var(--raspberry));
  color: #fff;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
  box-shadow: 0 10px 25px rgba(237, 37, 78, 0.3);
}

.notify button:hover {
  transform: translateY(-2px) scale(1.01);
}

.note {
  margin: 0;
  font-size: 0.95rem;
  color: #5b3b44;
}

.note a {
  color: var(--deep-teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 186, 186, 0.3);
}

.tent-card {
  margin-top: 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 227, 0.95));
  border-radius: 22px;
  padding: 2rem;
  border: 3px solid rgba(12, 186, 186, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-opacity='0.25'%3E%3Cpath stroke='%23ED254E' stroke-width='6' d='M0 60h120'/%3E%3Cpath stroke='%230CBABA' stroke-width='3' d='m0 90 120-60'/%3E%3Cpath stroke='%23FFB347' stroke-width='3' d='m0 30 120 60'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.tent-card p {
  margin-top: 1.5rem;
  font-weight: 600;
  position: relative;
}

.tent {
  width: clamp(220px, 40vw, 320px);
  margin: 0 auto;
  position: relative;
}

.flag {
  position: absolute;
  left: 50%;
  width: 54px;
  height: 54px;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 25%, 0 50%);
  transform: translate(-50%, -105%);
  box-shadow: 0 6px 12px rgba(10, 79, 106, 0.25);
}

.roof {
  height: 90px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: -12px;
  width: 33.33%;
}

.roof.stripe-1 {
  left: 0;
  background: linear-gradient(135deg, var(--crimson), var(--raspberry));
}

.roof.stripe-2 {
  left: 33.33%;
  background: var(--gold);
}

.roof.stripe-3 {
  left: 66.66%;
  background: linear-gradient(135deg, var(--teal), var(--deep-teal));
}

.tent-body {
  background: #fff;
  border-radius: 12px 12px 20px 20px;
  padding: 2.5rem 1.5rem 3rem;
  border: 5px solid rgba(10, 79, 106, 0.15);
  box-shadow: inset 0 0 0 6px rgba(255, 206, 130, 0.45);
  position: relative;
}

.door {
  width: 50%;
  height: 120px;
  margin: 0 auto;
  border-radius: 0 0 110px 110px;
  background: linear-gradient(180deg, var(--raspberry), var(--crimson));
  border: 4px solid rgba(255, 244, 227, 0.8);
  box-shadow: inset 0 0 0 8px rgba(0, 0, 0, 0.1);
}

.star {
  position: absolute;
  top: 25%;
  font-size: 2rem;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(255, 179, 71, 0.5);
}

.star-left {
  left: 1rem;
}

.star-right {
  right: 1rem;
}

footer {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(42, 26, 31, 0.65);
  font-family: "Baloo 2", cursive;
}

@media (max-width: 640px) {
  body {
    padding: 2rem 1rem 4.5rem;
  }

  .marquee {
    padding: 2.5rem 1.5rem;
  }

  .notify {
    flex-direction: column;
  }

  footer {
    position: static;
    margin-top: 1.5rem;
  }
}
