/* RSVP Section - RESPONSIF */
.rsvp-section {
  padding: 80px 0;
  text-align: center;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin: 40px 0;
}

@media (max-width: 768px) {
  .rsvp-section {
    padding: 60px 0;
    margin: 30px 0;
  }
}

@media (max-width: 576px) {
  .rsvp-section {
    padding: 50px 0;
    margin: 25px 0;
  }
}

.rsvp-form {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: left;
  background: var(--light);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1 1 300px;
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary);
  font-size: 1rem;
}

.required::after {
  content: " *";
  color: #e74c3c;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e8d5c4;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 135, 0.2);
  transform: translateY(-2px);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.attendance-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.attendance-option {
  flex: 1;
  min-width: 120px;
}

.attendance-option input {
  display: none;
}

.attendance-label {
  display: block;
  padding: 12px 20px;
  background: white;
  border: 2px solid #e8d5c4;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.attendance-option input:checked + .attendance-label {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(212, 175, 135, 0.3);
}

.btn-submit {
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(139, 107, 76, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 107, 76, 0.4);
}

.form-note {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: #7a7a7a;
  font-size: 0.9rem;
}
