/* Βασικό RSVP container*/
.rsvp-section {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 32px;
  text-align: center;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(20,20,20,0.06);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  z-index: 10;
}

/* --- ΣΤΥΛ ΛΟΥΛΟΥΔΙΩΝ --- */
.flower {
  position: fixed;
  width: 20vw;
  height: 20vw;
  background: url("background-remove.png") no-repeat center;
  background-size: contain;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.flower-top-left {
  top: 0;
  left: 0;
}

.flower-bottom-right {
  bottom: 0;
  right: 0;
}

/* Τίτλος και υπότιτλος */
.rsvp-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #1f4d3d; /* pine green */
  margin-bottom: 12px;
}

.rsvp-subtitle {
  font-size: 17px;
  color: #6b6b6b; /* muted text color */
  margin-bottom: 25px;
}

/* Form στυλ */
.rsvp-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f4d3d;
  font-size: 15px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e6e0d6;
  border-radius: 14px;
  font-size: 15px;
  background: #fafafa;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #b76b49; /* accent warm */
  outline: none;
  box-shadow: 0 0 8px rgba(183,107,73,0.3);
  background: #fff;
}

/* Button στυλ */
.rsvp-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: 0;
  background: #b76b49; /* accent warm */
  color: white;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(183,107,73,0.18);
  transition: all 0.3s ease;
}

.rsvp-btn:hover {
  background: #9b1b1b; /* accent red */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20,20,20,0.1);
}