:root {
  --color-bg: #faf7f2;
  --color-bg-soft: #fbf9f6;
  --color-card: rgba(255, 255, 255, 0.6);
  --color-primary: #d4af37;
  --color-primary-soft: rgba(212, 175, 55, 0.12);
  --color-primary-dark: #b89025;
  --color-accent: #b76e79;
  --color-text: #2c2522;
  --color-text-muted: #6b5a54;
  --color-border-subtle: rgba(212, 175, 55, 0.15);
  --shadow-soft: 0 18px 45px rgba(44, 37, 34, 0.08);
  --radius-large: 26px;
  --radius-pill: 999px;
}

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

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  color: var(--color-text);
  background: linear-gradient(-45deg, #fbf9f6, #f3ede2, #fbf9f6, #f5ede8);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.15), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(183, 110, 121, 0.15), transparent 65%),
    radial-gradient(circle at 0% 90%, rgba(212, 175, 55, 0.1), transparent 60%);
}

.page-background::before,
.page-background::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 60%);
  opacity: 0.5;
  filter: blur(8px);
  animation: floatBlob 18s ease-in-out infinite alternate;
}

.page-background::before {
  top: -120px;
  left: -60px;
}

.page-background::after {
  bottom: -140px;
  right: -80px;
  animation-delay: 4s;
}

.background-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(32px);
  opacity: 0.85;
}

.background-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.background-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 70%);
  opacity: 0.7;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translate3d(0, 20vh, 0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translate3d(0, -25vh, 0) scale(1.05);
    opacity: 0;
  }
}

@keyframes floatBlob {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(40px, 20px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(-30px, 10px, 0) scale(1.02);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.5rem 4rem;
}

.hero-shell {
  width: min(1120px, 100%);
}

.hero__content {
  width: 100%;
  padding: 2.8rem 3.1rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__content::before,
.hero__content::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.32);
  opacity: 0.75;
}

.hero__content::before {
  top: -140px;
  left: -60px;
}

.hero__content::after {
  bottom: -150px;
  right: -80px;
}

.hero__content--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.6rem;
  align-items: center;
}

.hero__col {
  position: relative;
  z-index: 1;
}

.hero__col--text {
  text-align: left;
}

.hero__col--visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.hero__overtitle {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  margin: 1.1rem 0 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d4af37, #b76e79, #d4af37);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}


.hero__subtitle {
  margin: 0 0 1.6rem;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 179, 160, 0.4);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.hero__meta-separator {
  opacity: 0.5;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.hero__secondary-link {
  font-size: 0.9rem;
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero-photo-card {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 3/4;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  transform: translateY(4px);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.hero-photo-card__image {
  width: 100%;
  height: 100%;
  background-image: url('finall.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-photo-card__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-photo-card__badge-date {
  padding-left: 0.75rem;
  border-left: 1px solid rgba(210, 131, 123, 0.4);
}

.hero-photo-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.28);
}

.hero-stats {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-stats__item {
  padding: 0.7rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.03);
  min-width: 90px;
}

.hero-stats__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.1rem;
}

.hero-stats__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.hero__scroll-indicator {
  margin-top: 0.75rem;
  width: 22px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.hero__scroll-indicator::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  animation: scrollDot 1.5s infinite ease-in-out;
}

@keyframes scrollDot {
  0% {
    top: 6px;
    opacity: 0;
  }

  30% {
    top: 10px;
    opacity: 1;
  }

  80% {
    top: 20px;
    opacity: 0;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #d2837b, #e4b68e);
  color: #fff;
  box-shadow: 0 12px 30px rgba(210, 131, 123, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(210, 131, 123, 0.4);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(210, 131, 123, 0.35);
  color: var(--color-primary-dark);
}

.btn--outline:hover {
  background: rgba(210, 131, 123, 0.08);
}

main {
  padding: 0 1.5rem 3rem;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.section--compact {
  padding: 3.2rem 0;
}

.section--reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.section--reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section--light {
  color: var(--color-text);
}

.section--dark {
  color: #fff;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(252, 220, 203, 0.13), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(250, 204, 255, 0.18), transparent 60%),
    #1a1412;
  z-index: -1;
}

.section--card {
  z-index: 0;
}

.section--card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(248, 213, 197, 0.45), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(250, 212, 237, 0.45), transparent 60%);
  opacity: 0.55;
  z-index: -2;
}

.section--card .section__inner {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.section--soft {
  padding-block: 4rem;
}

.section__inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 3rem 3rem 3.4rem;
}

.section__inner--narrow {
  width: min(880px, 100%);
}

.section__inner--center {
  text-align: center;
}

.welcome-simple {
  text-align: center;
  padding: 2.2rem 2rem 2.4rem;
  border-radius: 2rem;
  background: radial-gradient(circle at 0 0, rgba(248, 213, 197, 0.4), transparent 55%),
    rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.welcome-simple__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.welcome-simple__pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.welcome-pill {
  min-width: 150px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(210, 131, 123, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.welcome-pill__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.welcome-pill__text {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.welcome-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(210, 131, 123, 0.6);
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section__title--accent {
  color: var(--color-primary-dark);
}

.section__intro {
  margin: 0 0 2.5rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

.section__intro--muted {
  color: var(--color-text-muted);
}

.section__subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.6rem;
  color: var(--color-text-muted);
}

.grid {
  display: grid;
  gap: 2.5rem;
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--stack-on-mobile {
  align-items: center;
}

.details {
  display: grid;
  gap: 2rem;
}

.details__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.details__time {
  margin: 0 0 0.4rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.details__note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(248, 231, 222, 0.85);
}

.details__divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0,
      rgba(0, 0, 0, 0.08) 18%,
      rgba(0, 0, 0, 0.08) 82%,
      transparent 100%);
}

.date-reveal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.date-reveal__card {
  padding: 1.3rem 1.4rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.date-reveal__card--highlight {
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.15);
}

.date-reveal__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.date-reveal__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--color-text);
}

.date-reveal__footer {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Save the Date: compact + glass + rounded dark backdrop */
#date-reveal.section {
  padding: 2.6rem 0;
}

#date-reveal.section--dark {
  color: var(--color-text);
}

#date-reveal.section--dark::before {
  content: none;
}

#date-reveal .section__inner {
  width: min(760px, 100%);
  padding: 1.9rem 2.1rem 2.1rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

#date-reveal .section__title {
  margin-bottom: 0.55rem;
}

#date-reveal .section__intro {
  margin-bottom: 1.2rem;
}

#date-reveal .date-reveal {
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

#date-reveal .date-reveal__card {
  padding: 0.95rem 1.05rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

#date-reveal .date-reveal__label {
  margin-bottom: 0.3rem;
}

#date-reveal .date-reveal__value {
  font-size: 1.55rem;
}

#date-reveal .date-reveal__footer {
  font-size: 0.9rem;
}

.location-grid {
  margin-top: 1.4rem;
}

.location__name {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.location__address {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.location__note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.location__map-placeholder {
  border-radius: 26px;
  background-image: linear-gradient(135deg,
      rgba(210, 131, 123, 0.4),
      rgba(245, 200, 210, 0.4)),
    url('https://lh3.googleusercontent.com/gps-cs-s/AHVAwerXSnZXsD8Fwl3vfctitOb6-Ah-rJCE4VG--kxlBDkTBFVaPwC9XTjifMlbtfpLoCnHTIn4VUWuHIFrUzgWuCHY1E92ntbAwapGm6WZBpX9FlNW3-gisoDW2J8OcBlRKLUkiy_d=s1360-w1360-h1020-rw');
  background-size: cover;
  background-position: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.location__map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.1rem 1.2rem;
}

.location__map-overlay span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
  margin-bottom: 1rem;
}

.countdown__unit {
  padding: 1.2rem 1rem;
  border-radius: 1.5rem;
  background: var(--color-bg-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.countdown__value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.countdown__label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.countdown__message {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.countdown__unit:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(210, 131, 123, 0.35);
}

.timeline {
  border-left: 1px dashed rgba(0, 0, 0, 0.12);
  margin-top: 0.5rem;
  padding-left: 1.7rem;
  display: grid;
  gap: 1.7rem;
}

.timeline__item {
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.7rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(210, 131, 123, 0.7);
}

.timeline__time {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.timeline__content h3 {
  margin: 0.3rem 0 0.35rem;
  font-size: 1rem;
}

.timeline__content p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.rsvp {
  margin-top: 0.75rem;
}

.rsvp__note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer {
  text-align: center;
  padding: 2rem 1.5rem 2.4rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer__note {
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero__content {
    padding: 2.4rem 2.1rem 2.8rem;
    border-radius: 32px;
  }

  .section__inner {
    padding: 2.5rem 2rem 2.8rem;
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  body {
    background: radial-gradient(circle at top,
        #fbe4d6 0,
        #fdf8f5 45%,
        #fce9f2 100%);
  }

  .hero__content--split {
    grid-template-columns: 1fr;
  }

  .hero__col--visual {
    align-items: flex-start;
  }

  .grid--two {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-inline: 1.6rem;
  }

  .section__inner {
    padding-inline: 1.6rem;
  }

  .section {
    padding-block: 3.5rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .date-reveal {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 1.35rem;
  }

  .timeline__item::before {
    left: -1.45rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-inline: 1rem;
  }

  main {
    padding-inline: 1rem;
  }

  .hero__content {
    padding-inline: 1.3rem;
  }

  .section__inner {
    padding-inline: 1.35rem;
  }

  .section__title {
    font-size: 1.7rem;
  }

  .hero__title {
    font-size: 2.4rem;
  }
}

/* Custom Cursor */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.8);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  backdrop-filter: blur(2px);
}

#custom-cursor.cursor-hover {
  width: 40px;
  height: 40px;
  background-color: rgba(183, 110, 121, 0.2);
  border-color: rgba(183, 110, 121, 0.6);
}

/* Hide default cursor on desktop */
@media (min-width: 768px) {

  body,
  a,
  button,
  .hero-photo-card,
  .date-reveal__card {
    cursor: none;
  }
}

/* Falling Blossoms */
#blossom-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blossom {
  position: absolute;
  top: -10vh;
  background: radial-gradient(circle at 30% 30%, rgba(255, 230, 240, 0.9), rgba(255, 200, 215, 0.7));
  border-radius: 50% 0 50% 50%;
  opacity: 0.6;
  filter: blur(1px);
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-10vh) rotate(0deg) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(110vh) rotate(360deg) scale(0.8);
    opacity: 0;
  }
}