/* Card layout */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1.5rem 6rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  gap: 1.5rem;
}

.card-heading,
.card-title {
  font-family: Bentham, Georgia, serif;
  font-weight: normal;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.3em;
  white-space: nowrap;
  background: repeating-linear-gradient(135deg, #C87F3B 0%, #E8B87A 18%, #F5DEB3 20%, #E8B87A 22%, #C87F3B 40%);
  background-size: 100% 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-flowers {
  width: 100%;
  max-width: 420px;
}

.card-flowers img {
  width: 100%;
  height: auto;
  max-height: 45vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

@media (height <= 700px) {
  .card {
    gap: 1rem;
  }
}

.card-date {
  font-family: "Century Gothic", Futura, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-text);
  letter-spacing: 0.2em;
  transition: color 0.4s ease;
}

/* Content sections */
.section {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

.section-heading {
  font-family: Bentham, Georgia, serif;
  font-weight: normal;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.2em;
  color: var(--color-header);
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.section p {
  font-family: "Century Gothic", Futura, sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  transition: color 0.4s ease;
}

.section p:last-child {
  margin-bottom: 0;
}

/* Contact link */
.contact-link {
  color: var(--color-accent-green);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.7;
}

/* Decorative flower */
.decorative-flower {
  position: fixed;
  bottom: -2rem;
  right: -2rem;
  width: 280px;
  height: 280px;
  background-image: url("/assets/flowers_no_background-f6c914e4.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

@media (width <= 768px) {
  .decorative-flower {
    width: 150px;
    height: 150px;
    bottom: -1rem;
    right: -1rem;
    opacity: 0.12;
  }
}
