/* RANDEVU SAYFASI */
.reserve {
  padding: 60px 0 80px;
}

/* Başlık – Playfair Display */
.reserve-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

/* Açıklama – Poppins */
.reserve-intro {
  font-size: 15px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* FORM */
.reserve-form {
  max-width: 550px;
  margin: 0 auto;
  background-color: #f7eadc;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

input, select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d6c4b5;
  background-color: #fff;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
select:focus {
  border-color: #b99578;
  box-shadow: 0 0 0 3px rgba(185, 149, 120, 0.3);
  outline: none;
}

/* Buton */
.reserve-btn {
  padding: 12px 40px;
  background-color: #e2c29b;
  color: #6f4a3c;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.reserve-btn:hover {
  background-color: #d2af85;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* MOBİL */
@media (max-width: 768px) {
  .reserve-form {
    padding: 22px;
  }
}
