/* General Layout */
body {
  background: linear-gradient(135deg, #fffaf5, #ffe9d6, #ffd6a5);
  font-family: "Poppins", sans-serif;
  color: #4b2e2e;
  margin: 0;
  padding: 0;
}

/* Card */
.reservation-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 2.5rem;
  max-width: 460px;
  margin: 2rem auto;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1s ease-out;
}

/* Logo */
.logo-wrap {
  text-align: center;
  margin-bottom: 1rem;
}
.logo {
  width: 85px;
  border-radius: 14px;
}

/* Headings */
.title {
  font-size: 2rem;
  font-weight: 700;
  color: #b7410e;
  text-align: center;
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
}
.subtitle {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1.2rem;
  color: #6b4a34;
}
/* Note / Instruction Text */
.note-text {
  font-size: 0.95rem;
  text-align: center;
  color: #6b4a34;
  margin: 1.2rem 0;
  font-style: italic;
  background: #fff9f2;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px dashed #ffb866;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.note-text strong {
  color: #b7410e;
  font-weight: 700;
}

/* Info Box */
.info-box {
  background: #fff9f2;
  border: 1px solid #ffd5a1;
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #5c4033;
}

/* Inputs */
.input-field {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #e6c8a0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.input-field:focus {
  border-color: #ff922b;
  box-shadow: 0 0 6px rgba(255, 146, 43, 0.35);
  outline: none;
}

/* --- Primary Button --- */
.primary-btn {
  min-width: 160px;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  border-radius: 2rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;

  background: linear-gradient(135deg, #ff922b, #f76707, #e8590c);
  background-size: 220% 220%;

  box-shadow: 0 4px 12px rgba(255, 132, 0, 0.35),
              inset 0 2px 6px rgba(255,255,255,0.25);

  transition: all 0.3s ease;
  animation: primaryPulse 2.5s infinite;
  margin: 0.4rem auto;
}
.primary-btn:hover {
  transform: translateY(-2px) scale(1.04);
}


/* --- Danger Button --- */
.danger-btn {
  min-width: 130px;
  padding: 0.7rem 0.5rem;
  font-size: 0.70rem;
  font-weight: 700;
  color: #fff;
  border-radius: 2rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;

  background: linear-gradient(135deg, #ff4e50, #d62929, #ff6f61);
  background-size: 220% 220%;
  box-shadow: 0 4px 10px rgba(214, 41, 41, 0.4),
              inset 0 2px 6px rgba(255,255,255,0.2);

  transition: all 0.3s ease;
  animation: dangerPulse 2.5s infinite;
  margin: 0.7rem auto;
}
.danger-btn:hover {
  transform: translateY(-2px) scale(1.05);
}

/* --- Cancel Button (Top Right) --- */
.cancel-btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 2rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
