/* ═══════════════════════════════════════════════════════
   Al Assiel – Reservierungsseite
   ═══════════════════════════════════════════════════════ */

.res-page { padding-top: 80px; min-height: 100vh; }

/* ── Hero ──────────────────────────────────────────────── */
.res-hero {
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(200,134,10,.06) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.res-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--cream);
  margin: .5rem 0 1rem;
}
.res-hero-sub { color: var(--cream-dk); font-size: .95rem; max-width: 480px; margin: 0 auto; }

/* ── Container ─────────────────────────────────────────── */
.res-container { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }

/* ── Grid ──────────────────────────────────────────────── */
.res-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* ── Form ──────────────────────────────────────────────── */
.res-form-wrap h2 {
  font-family: var(--ff-head);
  font-size: 1.6rem; font-weight: 300; color: var(--cream);
  margin-bottom: 1.5rem;
}
.res-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }

.field label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--muted); font-weight: 400;
}
.field .optional { text-transform: none; letter-spacing: 0; color: #4a4030; }

.field input,
.field select,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: .9rem; font-weight: 300;
  padding: .75rem 1rem;
  transition: border .2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.4); cursor: pointer; }
.field select { cursor: pointer; }
.field textarea { resize: vertical; min-height: 90px; }

.btn-reserve {
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--ink);
  border: none; cursor: pointer;
  font-family: var(--ff-body);
  font-size: .85rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  transition: background .25s;
  align-self: flex-start;
  margin-top: .5rem;
}
.btn-reserve:hover { background: var(--gold-lt); }

.form-note { font-size: .75rem; color: var(--muted); margin-top: .25rem; }

.form-errors {
  background: rgba(192,57,43,.1);
  border: 1px solid rgba(192,57,43,.3);
  padding: .85rem 1.25rem; margin-bottom: .5rem;
}
.form-errors p { color: #e74c3c; font-size: .85rem; margin: .2rem 0; }

/* ── Sidebar ───────────────────────────────────────────── */
.res-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.res-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.res-info-card h3 {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .25em;
  color: var(--gold); margin-bottom: 1rem; font-weight: 400;
}
.res-info-card p { font-size: .88rem; color: var(--cream-dk); margin-bottom: .4rem; }
.res-info-card a { color: var(--cream-dk); }
.res-info-card a:hover { color: var(--gold); }

.hours-list { display: flex; flex-direction: column; gap: .5rem; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: .88rem; padding-bottom: .5rem;
  border-bottom: 1px solid rgba(200,134,10,.08);
}
.hours-row span:last-child { color: var(--cream); font-weight: 400; }

.res-info-highlight { border-color: rgba(200,134,10,.35); background: rgba(200,134,10,.04); }
.res-info-highlight p { font-size: .85rem; color: var(--cream-dk); margin-bottom: 1rem; }

.btn-gold-sm {
  display: inline-block;
  padding: .5rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold); font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase;
  transition: .25s;
}
.btn-gold-sm:hover { background: var(--gold); color: var(--ink); }

/* ── Success ───────────────────────────────────────────── */
.res-success {
  text-align: center;
  max-width: 520px; margin: 0 auto;
  padding: 4rem 2rem;
}
.success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold);
  margin: 0 auto 1.5rem;
}
.res-success h2 {
  font-family: var(--ff-head); font-size: 2rem;
  font-weight: 300; color: var(--cream); margin-bottom: 1rem;
}
.res-success p { color: var(--cream-dk); font-size: .95rem; margin-bottom: .75rem; }
.res-success .btn-gold { margin-top: 1.5rem; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .res-grid { grid-template-columns: 1fr; gap: 2rem; }
  .field-row { grid-template-columns: 1fr; }
}
