:root {
  --pink: #ffb6d5;
  --deep-pink: #ff4f93;
  --red: #d9275c;
  --white: #fffafc;
  --gold: #ffd36e;
  --text: #4a1f2d;
  --shadow: rgba(184, 38, 91, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", serif;
  background: linear-gradient(135deg, #fff0f6, #ffe4ef, #fff9ec);
  color: var(--text);
  overflow-x: hidden;
}

/* Opening section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 214, 232, 0.95), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(255, 211, 110, 0.45), transparent 30%),
    linear-gradient(135deg, #fff0f7, #ffe3ef, #fff8e8);
}

.hero::before {
  content: "♡ ✦ ♡ ✧ ♡ ✦ ♡";
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(217, 39, 92, 0.18);
  font-size: clamp(2rem, 6vw, 5rem);
  letter-spacing: 18px;
  white-space: nowrap;
  animation: sparkleMove 5s ease-in-out infinite;
}

.hero-card {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: center;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 55px;
  border-radius: 40px;
  box-shadow: 0 30px 90px rgba(184, 38, 91, 0.25);
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
}

.hero-text {
  text-align: left;
}

.small-text {
  color: var(--deep-pink);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--red);
  margin-bottom: 24px;
  text-shadow: 0 8px 30px rgba(255, 79, 147, 0.22);
}

.hero h1 span {
  display: block;
  color: var(--deep-pink);
  font-style: italic;
}

.hero-message {
  font-size: 1.25rem;
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 600px;
  color: #633044;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.main-button,
.surprise-button {
  border: none;
  background: linear-gradient(135deg, var(--deep-pink), var(--red));
  color: white;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.soft-button {
  background: rgba(255, 255, 255, 0.75);
  color: var(--red);
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(184, 38, 91, 0.15);
  border: 1px solid rgba(217, 39, 92, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-button:hover,
.surprise-button:hover,
.soft-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px var(--shadow);
}

.hero-photo-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-ring {
  width: min(330px, 78vw);
  height: min(330px, 78vw);
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #ff7eb6, #ffd36e, #ffffff);
  box-shadow: 0 25px 70px rgba(184, 38, 91, 0.28);
  animation: heroFloat 4s ease-in-out infinite;
}

.photo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 8px solid white;
}

.love-note {
  position: absolute;
  bottom: 10px;
  right: 8px;
  background: white;
  padding: 14px 20px;
  border-radius: 22px;
  box-shadow: 0 15px 45px rgba(184, 38, 91, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeUp 1.4s ease forwards;
}

.love-note span {
  color: var(--deep-pink);
  font-size: 1.7rem;
}

.love-note p {
  color: var(--red);
  font-weight: bold;
  font-size: 0.95rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  animation: glowFloat 7s ease-in-out infinite;
}

.glow-one {
  width: 180px;
  height: 180px;
  background: rgba(255, 79, 147, 0.35);
  top: 12%;
  left: 8%;
}

.glow-two {
  width: 230px;
  height: 230px;
  background: rgba(255, 211, 110, 0.35);
  right: 8%;
  bottom: 12%;
  animation-delay: 1s;
}

.glow-three {
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.9);
  right: 20%;
  top: 12%;
  animation-delay: 2s;
}

/* General sections */
.section {
  padding: 90px 20px;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--red);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #7a4052;
}

/* Gallery */
.gallery-card {
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  background: var(--white);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 20px 60px var(--shadow);
  overflow: hidden;
}

.slide {
  display: none;
  animation: softFade 0.6s ease;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

.slide p {
  margin-top: 15px;
  font-size: 1.05rem;
  color: #713044;
}

.gallery-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  color: var(--red);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--shadow);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Heart collage */
.heart-section {
  background: rgba(255, 255, 255, 0.35);
}

.heart-collage {
  width: 360px;
  height: 390px;
  margin: 0 auto;
  position: relative;
}

.photo {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 22px;
  position: absolute;
  box-shadow: 0 10px 30px var(--shadow);
  border: 4px solid white;
  transition: transform 0.3s ease;
}

.photo:hover {
  transform: scale(1.08) rotate(3deg);
}

.p1 { top: 0px; left: 80px; }
.p2 { top: 0px; right: 80px; }

.p3 { top: 70px; left: 25px; }
.p4 { top: 70px; left: 132px; }
.p5 { top: 70px; right: 25px; }

.p6 { top: 145px; left: 55px; }
.p7 { top: 145px; right: 55px; }

.p8 { top: 220px; left: 95px; }
.p9 { top: 220px; right: 95px; }

.p10 { top: 285px; left: 132px; }

/* Message */
.message-section {
  padding-top: 110px;
}

.message-box {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 20px 60px var(--shadow);
  text-align: left;
}

.message-box h2 {
  text-align: center;
}

.message-box p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.signature {
  text-align: right;
  color: var(--red);
  font-weight: bold;
}

/* Memories */
.memories-section {
  background: rgba(255, 255, 255, 0.35);
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.memory-card {
  background: rgba(255, 255, 255, 0.82);
  padding: 30px 28px;
  border-radius: 28px;
  box-shadow: 0 15px 40px var(--shadow);
  transition: transform 0.3s ease;
  text-align: left;
}

.memory-card:hover {
  transform: translateY(-8px);
}

.memory-card h3 {
  color: var(--deep-pink);
  margin-bottom: 16px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
}

.memory-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #3f1020;
  margin-bottom: 12px;
}

.memory-card .short-note {
  font-style: italic;
  color: #8a4058;
}
/* Surprise */
.surprise-section {
  padding-bottom: 140px;
}

.surprise-popup {
  position: fixed;
  inset: 0;
  background: rgba(80, 20, 40, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
  padding: 20px;
}

.surprise-popup.show {
  display: flex;
}

.popup-content {
  max-width: 520px;
  background: white;
  padding: 45px 30px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  animation: popIn 0.4s ease;
}

.popup-content h2 {
  color: var(--red);
  margin-bottom: 20px;
}

.popup-content p {
  font-size: 1.15rem;
  line-height: 1.8;
}

.big-heart {
  font-size: 4rem !important;
  animation: heartbeat 1s infinite;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--red);
}

/* Floating hearts */
.floating-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.heart {
  position: absolute;
  bottom: -30px;
  color: rgba(255, 79, 147, 0.55);
  animation: floatHeart linear infinite;
}

/* Animations */
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@keyframes glowFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-25px) scale(1.08);
  }
}

@keyframes sparkleMove {
  0%, 100% {
    opacity: 0.25;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(12px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFade {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatHeart {
  from {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  to {
    transform: translateY(-110vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

/* Mobile */
@media (max-width: 800px) {
  .memory-grid {
    grid-template-columns: 1fr;
  }

  .slide img {
    height: 430px;
  }

  .message-box {
    padding: 30px 22px;
  }
}

@media (max-width: 430px) {
  .heart-collage {
    transform: scale(0.85);
    transform-origin: center;
  }

  .slide img {
    height: 360px;
  }
}
@media (max-width: 850px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 35px 24px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-message {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-photo-area {
    margin-top: 10px;
  }

  .love-note {
    right: 50%;
    transform: translateX(50%);
    bottom: -18px;
  }
}
@media (max-width: 950px) {
  .memory-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
  }

  .memory-card {
    text-align: left;
  }
}
/* Password intro */
body.locked {
  overflow: hidden;
}

.password-screen {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 182, 213, 0.95), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(255, 211, 110, 0.5), transparent 30%),
    linear-gradient(135deg, #fff0f7, #ffe3ef, #fff8e8);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.password-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.password-box {
  max-width: 520px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  padding: 45px 30px;
  border-radius: 35px;
  text-align: center;
  box-shadow: 0 25px 80px rgba(184, 38, 91, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: fadeUp 1s ease forwards;
}

.password-small {
  color: var(--deep-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.password-box h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
  color: var(--red);
  margin-bottom: 15px;
}

.password-hint {
  color: #7a4052;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.password-box input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 79, 147, 0.25);
  outline: none;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 18px;
  background: white;
}

.password-box input:focus {
  border-color: var(--deep-pink);
  box-shadow: 0 0 0 4px rgba(255, 79, 147, 0.12);
}

.password-box button {
  border: none;
  background: linear-gradient(135deg, var(--deep-pink), var(--red));
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s ease;
}

.password-box button:hover {
  transform: translateY(-3px) scale(1.03);
}

.password-error {
  color: var(--red);
  margin-top: 15px;
  min-height: 24px;
  font-weight: bold;
}

/* Countdown */
.countdown-section {
  background: rgba(255, 255, 255, 0.35);
}

.countdown-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.72);
  padding: 45px 30px;
  border-radius: 35px;
  box-shadow: 0 20px 60px var(--shadow);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.countdown-card {
  background: var(--white);
  border-radius: 25px;
  padding: 25px 15px;
  box-shadow: 0 12px 35px rgba(184, 38, 91, 0.18);
}

.countdown-card span {
  display: block;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--red);
  font-weight: bold;
  margin-bottom: 8px;
}

.countdown-card p {
  color: #7a4052;
  font-size: 1rem;
}

/* Heart burst after password */
.burst-heart {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1001;
  pointer-events: none;
  color: var(--deep-pink);
  font-size: 28px;
  animation: heartBurst 1.4s ease-out forwards;
}

@keyframes heartBurst {
  from {
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 1;
  }

  to {
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 700px) {
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-box {
    padding: 35px 20px;
  }
}
/* Soft lily/orchid flower decorations */
.flower-decorations {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.flower-cluster {
  position: absolute;
  display: flex;
  gap: 8px;
  opacity: 0.45;
  filter: drop-shadow(0 8px 15px rgba(184, 38, 91, 0.18));
}

.flower-cluster span {
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: #ff7eb6;
  animation: flowerFloat 4s ease-in-out infinite;
}

.flower-cluster span:nth-child(2) {
  color: #ffffff;
  animation-delay: 0.7s;
}

.flower-cluster span:nth-child(3) {
  color: #ffd36e;
  animation-delay: 1.2s;
}

.flower-top-left {
  top: 25px;
  left: 25px;
  transform: rotate(-15deg);
}

.flower-top-right {
  top: 25px;
  right: 25px;
  transform: rotate(15deg);
}

.flower-bottom-left {
  bottom: 25px;
  left: 25px;
  transform: rotate(15deg);
}

.flower-bottom-right {
  bottom: 25px;
  right: 25px;
  transform: rotate(-15deg);
}

/* Floating flower petals */
.floating-flowers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.floating-flower {
  position: absolute;
  top: -40px;
  color: rgba(255, 126, 182, 0.65);
  animation: flowerFall linear forwards;
}

@keyframes flowerFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(8deg);
  }
}

@keyframes flowerFall {
  from {
    transform: translateY(-40px) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .flower-cluster {
    opacity: 0.3;
  }

  .flower-top-left,
  .flower-top-right {
    top: 12px;
  }

  .flower-bottom-left,
  .flower-bottom-right {
    bottom: 12px;
  }
}
/* Floral image overlays */
.flower-overlay {
  position: fixed;
  pointer-events: none;
  z-index: 2;
  opacity: 0.38;
  filter: drop-shadow(0 15px 30px rgba(184, 38, 91, 0.22));
}

.flower-overlay-one {
  width: 420px;
  top: 0;
  left: 0;
}

.flower-overlay-two {
  width: 460px;
  right: 0;
  bottom: 0;
}

@media (max-width: 700px) {
  .flower-overlay {
    opacity: 0.25;
  }

  .flower-overlay-one {
    width: 260px;
  }

  .flower-overlay-two {
    width: 300px;
  }
}
/* PHONE PERFECT FIXES */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 65px 16px;
  }

  .section h2 {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* Opening page */
  .hero {
    min-height: 100vh;
    padding: 35px 14px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px;
    border-radius: 30px;
  }

  .hero-text {
    text-align: center;
  }

  .small-text {
    font-size: 0.85rem;
    letter-spacing: 1.3px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 0.95;
  }

  .hero-message {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .main-button,
  .soft-button,
  .surprise-button {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .photo-ring {
    width: 230px;
    height: 230px;
  }

  .love-note {
    bottom: -16px;
    right: 50%;
    transform: translateX(50%);
    padding: 11px 16px;
    white-space: nowrap;
  }

  .love-note p {
    font-size: 0.8rem;
  }

  /* Password screen */
  .password-box {
    padding: 34px 20px;
    border-radius: 28px;
  }

  .password-box h1 {
    font-size: 2.4rem;
  }

  .password-hint {
    font-size: 0.95rem;
  }

  .password-box input {
    font-size: 1rem;
  }

  /* Countdown */
  .countdown-box {
    padding: 32px 18px;
    border-radius: 28px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .countdown-card {
    padding: 20px 10px;
  }

  .countdown-card span {
    font-size: 2.4rem;
  }

  /* Gallery */
  .gallery-card {
    max-width: 100%;
    padding: 12px;
    border-radius: 24px;
  }

  .slide img {
    height: 430px;
    border-radius: 18px;
    object-fit: cover;
    object-position: center;
  }

  .slide p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .gallery-btn {
    width: 36px;
    height: 36px;
    font-size: 1.7rem;
  }

  /* Heart collage */
  .heart-collage {
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -45px;
  }

  /* Birthday message */
  .message-box {
    padding: 28px 20px;
    border-radius: 26px;
    text-align: left;
  }

  .message-box p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .signature {
    text-align: right;
  }

  /* Memories */
  .memory-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .memory-card {
    padding: 24px 20px;
    border-radius: 24px;
    text-align: left;
  }

  .memory-card h3 {
    font-size: 1.45rem;
    text-align: center;
  }

  .memory-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  /* Surprise popup */
  .popup-content {
    padding: 36px 22px;
    border-radius: 26px;
  }

  .popup-content h2 {
    font-size: 1.8rem;
  }

  .popup-content p {
    font-size: 1rem;
  }

  /* Flowers */
  .flower-overlay {
    opacity: 0.18;
    z-index: 0;
  }

  .flower-overlay-one {
    width: 240px;
    top: 0;
    left: -45px;
  }

  .flower-overlay-two {
    width: 270px;
    right: -55px;
    bottom: 0;
  }

  .flower-cluster {
    opacity: 0.22;
  }

  /* Floating hearts/flowers should not block the page */
  .floating-hearts,
  .floating-flowers,
  .flower-decorations {
    pointer-events: none;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-card {
    padding: 28px 16px;
  }

  .photo-ring {
    width: 205px;
    height: 205px;
  }

  .slide img {
    height: 360px;
  }

  .heart-collage {
    transform: scale(0.72);
    margin-bottom: -85px;
  }

  .countdown-card span {
    font-size: 2rem;
  }

  .message-box p,
  .memory-card p {
    font-size: 0.95rem;
  }

  .flower-overlay {
    opacity: 0.14;
  }
}