/* meet.stefanlink.online — Calendly-Look */
* { box-sizing: border-box; }
:root {
  --blue: #0069ff;
  --blue-bg: rgba(0, 105, 255, 0.065);
  --blue-bg-strong: rgba(0, 105, 255, 0.15);
  --text: #1a1a1a;
  --muted: rgba(26, 26, 26, 0.61);
  --border: rgba(26, 26, 26, 0.1);
  --card-border: #dadada;
}
html, body { margin: 0; padding: 0; }
body {
  font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #f7f8f9;
  font-size: 16px;
  line-height: 1.4;
}
a { color: var(--blue); text-decoration: none; }

.page-center {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 66px 16px 40px;
}
.card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* ---------- Profilseite ---------- */
.profile-card { max-width: 1060px; padding-bottom: 32px; }
.profile-head { text-align: center; padding: 42px 24px 26px; max-width: 460px; margin: 0 auto; }
.avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; }
.avatar-sm { width: 64px; height: 64px; }
.profile-head h1 { font-size: 20px; margin: 14px 0 18px; color: rgba(26,26,26,0.61); font-weight: 700; }
.profile-desc { color: #3f5163; margin: 0; font-size: 16px; }
.et-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  padding: 0 34px;
}
.et-item {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 8px 90px;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.et-item:hover .et-name { text-decoration: underline; }
.et-dot { width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto; }
.et-name { font-size: 18px; font-weight: 700; flex: 1; }
.et-chev { color: var(--text); display: flex; }

/* ---------- Buchungskarte (2 Spalten) ---------- */
.booking-card { max-width: 1100px; display: flex; min-height: 560px; }
.info-panel {
  width: 340px; flex: 0 0 340px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.info-top {
  padding: 22px 26px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.back-btn {
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: var(--blue);
}
.back-btn:hover { background: var(--blue-bg); }
.logo { max-width: 220px; max-height: 60px; object-fit: contain; }
.info-body { padding: 22px 26px; }
.info-owner { color: var(--muted); font-weight: 700; font-size: 16px; margin-top: 10px; }
.info-title { font-size: 26px; font-weight: 700; margin: 4px 0 18px; }
.info-meta {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--muted); font-weight: 700; font-size: 15px;
  margin-bottom: 14px;
}
.info-meta svg { flex: 0 0 auto; margin-top: 1px; }
.info-when { color: var(--text); }

/* ---------- Spot-Picker ---------- */
.picker-panel { flex: 1; padding: 24px 30px; min-width: 0; }
.panel-title { font-size: 20px; font-weight: 700; margin: 0 0 18px; }
.picker-wrap { display: flex; gap: 28px; }
.cal-col { flex: 1 1 auto; max-width: 460px; }
.cal-head {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin: 10px 0 18px;
}
.cal-month { font-size: 16px; font-weight: 600; min-width: 140px; text-align: center; }
.cal-nav {
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: none; color: var(--blue); font-size: 22px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.cal-nav:hover { background: var(--blue-bg); }
.cal-nav:disabled { color: rgba(26,26,26,0.3); cursor: default; background: none; }
.cal-table { width: 100%; border-collapse: collapse; }
.cal-table th {
  font-size: 13px; font-weight: 600; color: var(--text);
  padding: 6px 0 10px;
}
.cal-table td { text-align: center; padding: 3px; }
.day-btn {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  font-size: 15px; font-weight: 700; cursor: pointer;
  background: none; color: rgba(26,26,26,0.6);
  font-family: inherit;
  position: relative;
}
.day-btn[disabled] { cursor: default; font-weight: 400; color: rgba(26,26,26,0.45); }
.day-btn.avail { background: var(--blue-bg); color: var(--blue); }
.day-btn.avail:hover { background: var(--blue-bg-strong); }
.day-btn.sel, .day-btn.avail.sel, .day-btn.avail.sel:hover { background: var(--blue); color: #fff; }
.day-btn.today::after {
  content: ""; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: currentColor;
}
.tz-box { margin-top: 18px; }
.tz-label { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.tz-select-wrap { display: flex; align-items: center; gap: 8px; color: var(--text); }
.tz-select-wrap select {
  border: none; background: none; font-size: 14px; font-family: inherit; color: var(--text);
  max-width: 300px; cursor: pointer; padding: 6px 2px;
}
.tz-select-wrap select:focus { outline: 2px solid var(--blue); border-radius: 4px; }

/* Zeiten-Spalte */
.times-col { width: 220px; flex: 0 0 220px; }
.times-day { font-size: 15px; margin: 14px 0 16px; }
.times-list { display: flex; flex-direction: column; gap: 10px; max-height: 520px; overflow-y: auto; padding-right: 4px; }
.time-row { display: flex; gap: 8px; }
.time-btn {
  flex: 1; padding: 13px 8px; border-radius: 4px;
  border: 1px solid rgba(0, 105, 255, 0.55); background: #fff;
  color: var(--blue); font-weight: 700; font-size: 15px; font-family: inherit;
  cursor: pointer; text-align: center;
}
.time-btn:hover { border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.time-btn.picked {
  background: rgba(26, 26, 26, 0.6); color: #fff; border-color: transparent; cursor: default;
}
.next-btn {
  flex: 1; padding: 13px 8px; border-radius: 4px; border: none;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 15px; font-family: inherit;
  cursor: pointer;
}
.next-btn:hover { background: #0053cc; }

/* Umbuchungs-Banner */
.res-banner { border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; margin-bottom: 18px; }
.res-banner-label { color: var(--muted); font-size: 13px; font-weight: 700; }
.res-banner-when { font-weight: 700; margin-top: 2px; text-decoration: line-through; }

/* ---------- Formular ---------- */
.form-panel { flex: 1; padding: 24px 30px; max-width: 620px; }
.fld-label { display: block; font-weight: 700; font-size: 15px; margin: 20px 0 8px; }
.req { color: #c84545; }
.fld {
  width: 100%; max-width: 480px;
  padding: 12px 12px; font-size: 15px; font-family: inherit;
  border: 1px solid rgba(26,26,26,0.3); border-radius: 8px; color: var(--text);
}
.fld:focus { outline: 2px solid var(--blue); border-color: transparent; }
.fld-area { resize: vertical; }
.btn-outline {
  margin-top: 16px;
  padding: 10px 18px; border-radius: 20px;
  border: 1px solid var(--blue); background: #fff; color: var(--blue);
  font-weight: 700; font-size: 14px; font-family: inherit; cursor: pointer;
}
.btn-outline:hover { background: var(--blue-bg); }
.btn-primary {
  display: inline-block; margin-top: 26px;
  padding: 13px 26px; border-radius: 26px; border: none;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 15px;
  font-family: inherit; cursor: pointer;
}
.btn-primary:hover { background: #0053cc; }
.btn-primary:disabled { opacity: 0.6; cursor: default; }
.btn-danger { background: #c84545; }
.btn-danger:hover { background: #a83333; }
.form-error { color: #c84545; font-weight: 700; margin-top: 16px; }

/* ---------- Bestätigung ---------- */
.confirm-card { max-width: 720px; padding: 40px 30px 46px; }
.confirm-head { text-align: center; }
.confirm-title { display: flex; align-items: center; justify-content: center; gap: 10px; }
.confirm-title h1 { font-size: 22px; margin: 0; }
.confirm-sub { color: var(--muted); margin: 12px 0 0; }
.confirm-box {
  max-width: 420px; margin: 28px auto 0;
  border: 1px solid var(--border); border-radius: 8px; padding: 20px 22px 8px;
}
.confirm-box h2 { font-size: 18px; margin: 0 0 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .booking-card { flex-direction: column; min-height: 0; }
  .info-panel { width: 100%; flex: none; border-right: none; border-bottom: 1px solid var(--border); }
  .picker-wrap { flex-direction: column; }
  .times-col { width: 100%; flex: none; }
  .et-grid { grid-template-columns: 1fr; }
  .et-item { padding-bottom: 26px; }
  .page-center { padding-top: 16px; }
}
