/* --- CONTACT FORM STYLES --- */

/* Gaya Label (Teks kecil di atas input) */
.form-label-custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: black;
  margin-bottom: 0.4rem;
}

/* Gaya Kotak Input */
.form-control-custom {
  border-radius: 0; /* Sudut kotak tegas sesuai gambar */
  border: 1px solid #7a7a7a; /* Warna garis pinggir abu-abu */
  padding: 0.8rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  background-color: transparent; /* Agar warna cream dari background tembus */
}

/* Mengubah warna teks placeholder (bayangan teks di dalam input) */
.form-control-custom::placeholder {
  color: #ffff;
}

/* Efek saat input sedang diklik/diketik (Focus) */
.form-control-custom:focus {
  border-color: #9C6F3B; /* Garis berubah menjadi coklat/emas saat aktif */
  box-shadow: none; /* Menghilangkan efek glow biru bawaan Bootstrap */
  background-color: transparent;
}

/* Gaya Tombol Submit */
.btn-submit-custom {
  background-color: #9C6F3B; /* Warna Coklat Keemasan / Bronze */
  color: #ffffff;
  border-radius: 0; /* Sudut kotak tegas */
  font-family: 'Playfair Display', serif; /* Menggunakan font Serif agar klasik */
  font-size: 1.3rem;
  border: none;
  transition: background-color 0.3s ease;
}

/* Efek saat tombol diarahkan kursor */
.btn-submit-custom:hover {
  background-color: #7A552C; /* Warna menjadi sedikit lebih gelap */
  color: #ffffff;
}


/* --- LAYOUT MERAH & HITAM --- */

/* MERAH: Kontainer Induk */
.custom-pill-container {
  background-color: #d9534f; /* Warna merah ilustrasi, nanti bisa Anda ganti gambar/warna lain */
  border-radius: 200px; /* Membuat bentuk oval (pill) ekstrim */
  padding: 60px 100px; /* Jarak ruang di dalam oval */
  min-height: 600px; /* Menentukan seberapa tinggi kontainer merahnya */
  
  /* Jika nanti Anda ingin memakai foto makanan seperti screenshot salad Anda, gunakan ini: */
  /* background-image: url('link-gambar-salad-anda.jpg');
     background-size: cover;
     background-position: center; */
}

/* HITAM: Kontainer Form */
.custom-form-box {
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px; /* INI KUNCINYA: Form tidak akan bisa lebih lebar dari 450px */
}
textarea.form-control {
  resize: none;
}

.parallax-container-form {
  background-color: rgba(26, 26, 26, 0.7);
  background-image: url('/Assets/Restaurant/kusnadi-restaurant-02.jpg');
  min-height: 400px;
  background-attachment: fixed;
  background-size: cover;
}

/* --- RESPONSIVE UNTUK LAYAR HP --- */
@media (max-width: 991px) {
  .custom-pill-container {
    /* Di layar HP, bentuk oval memanjang akan terpotong, jadi kita ubah radiusnya jadi kotak tumpul biasa */
    border-radius: 30px; 
    padding: 30px 20px;
    justify-content: center !important; /* Form pindah ke tengah di layar HP */
  }
}