/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Lato:wght@400;700&display=swap');

/* Base Styling */
body {
  font-family: 'Lato', sans-serif;
  background: #fdf6f8;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #b76e79;
}

.text-gold {
  color: #b76e79;
}

.bg-gold {
  background-color: #b76e79;
}

.btn-gold {
  background-color: #b76e79;
  color: #fff;
  border: none;
  transition: background 0.3s ease;
}

.btn-gold:hover {
  background-color: #a55c67;
}

.rsvp-form {
  background-color: #fff;
  border: 1px solid #f8e1e7;
  border-radius: 10px;
}

.rsvp-form .form-label {
  font-weight: 600;
  color: #b76e79;
}

.rsvp-form input,
.rsvp-form select {
  border-radius: 6px;
  border: 1px solid #f8e1e7;
}

.event-details .badge {
  margin: 0 5px;
  font-size: 1rem;
  padding: 0.5em 1em;
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
}

footer a {
  color: #b76e79;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Optional floral accents */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/floral-top-right.png') no-repeat top right,
              url('../img/floral-bottom-left.png') no-repeat bottom left;
  background-size: 300px;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}