:root{
  --bg:#070710;
  --bg2:#0c0c16;

  --panel:#121225;
  --card:#15152c;

  --line:rgba(255,255,255,.10);
  --text:#f6f4ff;
  --muted:rgba(246,244,255,.72);

  --pink:#ff3fb4;
  --pink2:#ff75cf;
  --gold:#f6d36b;
  --vio:#9146ff;

  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.60);

  /* NEW: force dark native controls */
  color-scheme: dark;
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  background:
    radial-gradient(900px 600px at 12% 10%, rgba(255,63,180,.18), transparent 55%),
    radial-gradient(900px 600px at 88% 8%, rgba(145,70,255,.14), transparent 55%),
    radial-gradient(1000px 700px at 40% 110%, rgba(246,211,107,.10), transparent 55%),
    var(--bg);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
p{margin:0}
h1,h2,h3{margin:0}

.small{color:var(--muted);font-size:.95rem;line-height:1.45}
.kicker{color:var(--gold);font-weight:900;letter-spacing:.18em;text-transform:uppercase;font-size:.78rem}
.wrap{width:min(1180px,92vw);margin:0 auto;padding:56px 0 76px}

/* HERO */
.hero{
  position:relative;
  min-height:78vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.90)),
    var(--hero) center/cover no-repeat;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.hero:before{
  content:"";
  position:absolute;inset:-2px;
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(255,63,180,.22), transparent 60%),
    radial-gradient(700px 380px at 88% 16%, rgba(145,70,255,.18), transparent 60%),
    radial-gradient(900px 420px at 50% 95%, rgba(246,211,107,.10), transparent 60%);
  pointer-events:none;
  filter:saturate(1.1);
}

.hero__content{
  position:relative;z-index:5;
  width:min(1180px,92vw);
  margin:0 auto;
  padding:56px 0 64px;
}

.hero__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.28);
  color:var(--muted);
}

.hero__title{
  margin:14px 0 10px;
  font-size:clamp(2.1rem,4vw,3.6rem);
  line-height:1.02;
  letter-spacing:-.8px;
}

.hero__sub{
  margin:0;
  width:min(72ch,100%);
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.55;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* NAV (Logo links, Menü zentriert, Login/User rechts) */
.nav{
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:14px;
  padding:18px min(4vw,36px);
}

/* Logo */
.brand{display:flex;gap:12px;align-items:center}
.brand__mark{
  width:82px;height:82px;border-radius:16px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(255,63,180,.22), rgba(145,70,255,.12));
  box-shadow:0 14px 40px rgba(0,0,0,.45);
}

/* NEW: image logo support */
.brand__mark--img{
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden; /* hält das Logo sauber im Radius */
}
.brand__logo{
  width:82px;
  height:82px;
  object-fit:contain;
  display:block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
}

.brand__name{font-weight:950;letter-spacing:-.3px}
.brand__tag{color:var(--muted);font-size:.9rem}

/* Center Menu */
.nav__links{
  display:flex;
  justify-content:center;
  gap:18px;
  align-items:center;
}

.nav__links a{
  color:var(--muted);
  padding:10px 14px;
  border-radius:14px;
  font-weight:650;
  transition:background .15s ease, color .15s ease, border-color .15s ease;
}

.nav__links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

.nav__links a.is-active{
  color:var(--text);
  border:1px solid rgba(255,63,180,.40);
  background:rgba(255,63,180,.10);
}

/* VIP im Menü: Gold + Stern (bleibt zentriert) */
.nav__links .nav__vip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--text);
  border:1px solid rgba(246,211,107,.52);
  background: linear-gradient(135deg, rgba(246,211,107,.18), rgba(255,255,255,.06));
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.nav__links .nav__vip:hover{
  background: linear-gradient(135deg, rgba(246,211,107,.28), rgba(255,255,255,.08));
}

.nav__links .nav__vip .star{
  display:inline-grid;
  place-items:center;
  width:22px;height:22px;
  border-radius:8px;
  border:1px solid rgba(246,211,107,.45);
  background: rgba(246,211,107,.12);
  font-size:14px;
  line-height:1;
}

.nav__links .nav__vip.is-active{
  border-color: rgba(255,63,180,.40);
  background: linear-gradient(135deg, rgba(255,63,180,.14), rgba(246,211,107,.12));
}

/* Login Button (rechts) */
.nav__login{
  justify-self:end;
}

.nav__login a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:14px;
  font-weight:950;
  border:1px solid rgba(246,211,107,.52);
  background: linear-gradient(135deg, rgba(246,211,107,.18), rgba(255,255,255,.06));
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition:background .15s ease, transform .08s ease, border-color .15s ease;
}

.nav__login a:hover{
  background: linear-gradient(135deg, rgba(246,211,107,.28), rgba(255,255,255,.08));
}
.nav__login a:active{transform:translateY(1px)}

/* ===== Header User Dropdown ===== */
.nav__user{
  justify-self:end;
  position:relative;
}

.nav__userbtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  font-weight:950;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  transition: background .15s ease, border-color .15s ease, transform .08s ease;
}

.nav__userbtn:hover{
  background:rgba(255,255,255,.10);
}
.nav__userbtn:active{transform:translateY(1px)}

.nav__usericon{
  width:24px;height:24px;
  display:grid;place-items:center;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
}

.nav__username{
  max-width:200px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.nav__caret{opacity:.85}

.nav__dropdown{
  position:absolute;
  right:0;
  top:54px;
  width:240px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(18,18,37,.98), rgba(10,10,16,.98));
  box-shadow:0 22px 70px rgba(0,0,0,.60);
  padding:10px;
  display:none;
  z-index:50;
}

.nav__dropdown.is-open{display:block}

.nav__dropdown a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
  font-weight:850;
}

.nav__dropdown a:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.nav__ddhr{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:8px 2px;
}

/* Burger (nur mobile) */
.nav__burger{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  cursor:pointer;
}
.nav__burger span{
  display:block;
  height:2px;
  background:var(--text);
  margin:6px 10px;
  border-radius:2px;
}

/* Mobile Menu */
.mobilemenu{
  display:none;
  position:absolute;
  right:18px;
  top:70px;
  width:min(340px,92vw);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(18,18,37,.98), rgba(10,10,16,.98));
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:10px;
  z-index:10;
}

.mobilemenu a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
}

.mobilemenu a:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.mobilemenu a.is-active{
  background:rgba(255,63,180,.10);
  border:1px solid rgba(255,63,180,.35);
  color:var(--text);
}

.mobilemenu.is-open{display:block}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease, transform .08s ease;
}
.btn:hover{background:rgba(255,255,255,.10)}
.btn:active{transform:translateY(1px)}

.btn--primary{
  border-color: rgba(255,63,180,.55);
  background: linear-gradient(135deg, rgba(255,63,180,.22), rgba(255,117,207,.10));
}
.btn--primary:hover{
  background: linear-gradient(135deg, rgba(255,63,180,.28), rgba(255,117,207,.14));
}

.btn--gold{
  border-color: rgba(246,211,107,.50);
  background: linear-gradient(135deg, rgba(246,211,107,.16), rgba(255,255,255,.06));
}
.btn--gold:hover{
  background: linear-gradient(135deg, rgba(246,211,107,.22), rgba(255,255,255,.08));
}

.btn--ghost{
  background:rgba(0,0,0,.25);
}
.btn--ghost:hover{
  background:rgba(0,0,0,.35);
}

/* Sections */
.section{padding:24px 0}
.section__head{margin-bottom:14px}
.section__head h2{
  margin:0 0 6px;
  font-size:1.85rem;
  letter-spacing:-.3px;
}
.section__head p{margin:0;color:var(--muted)}

/* Grid + Cards */
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}

.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted);line-height:1.55}
.card__meta{margin-top:12px;color:var(--gold);font-weight:900}

.card--glow{position:relative;overflow:hidden}
.card--glow:before{
  content:"";
  position:absolute;inset:-2px;
  background:
    radial-gradient(520px 150px at 18% 0%, rgba(255,63,180,.20), transparent 55%),
    radial-gradient(520px 150px at 82% 0%, rgba(145,70,255,.16), transparent 55%);
  pointer-events:none;
}

.hr{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:12px 0;
}

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:900;
  font-size:.9rem;
}
.pill--vip{
  border-color:rgba(255,63,180,.45);
  background:rgba(255,63,180,.10);
}
.pill--private{
  border-color:rgba(246,211,107,.45);
  background:rgba(246,211,107,.10);
  color:var(--text);
}
.pill--muted{
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--muted);
}
.pill--open{
  border-color:rgba(255,63,180,.45);
  background:rgba(255,63,180,.10);
}
.pill--closed{
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--muted);
}

/* Event Badge */
.pill--event{
  border-color: rgba(246,211,107,.55);
  background: rgba(246,211,107,.14);
  color: var(--text);
}

/* Hours */
.hours{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.02);
}

/* FIXED: 4 columns => Tag | Event Badge | Zeit | Note */
.hours__row{
  display:grid;
  grid-template-columns: 160px 120px 220px 1fr;
  gap:12px;
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.08);
  align-items:center;
}
.hours__row:first-child{border-top:0}

/* Tag only */
.hours__day{
  font-weight:950;
}

/* NEW: dedicated event column (empty when no event) */
.hours__event{
  display:flex;
  align-items:center;
  min-height:32px;
}

/* Zeit column */
.hours__time{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

/* Note column */
.hours__note{
  color:var(--muted);
  line-height:1.35;
  min-width:0;
  word-break:break-word;
}
.hours__note:empty::before{
  content:"—";
  opacity:.45;
}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.35);
}
.footer__inner{
  width:min(1180px,92vw);
  margin:0 auto;
  padding:18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

/* UPDATED: footer brand with logo */
.footer__brandwrap{display:flex;flex-direction:column;gap:4px}
.footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
}
.footer__logo{
  width:120px;
  height:120px;
  object-fit:contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.45));
}
.footer__brandname{letter-spacing:.3px}

.footer__links{display:flex;gap:14px;flex-wrap:wrap}
.footer__links a{color:var(--muted)}
.footer__links a:hover{color:var(--text)}

/* MODAL (Login/Register) */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.modal.is-open{display:block}

.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
}

.modal__panel{
  position:relative;
  width:min(520px,92vw);
  margin: 10vh auto 0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(18,18,37,.96), rgba(10,10,16,.96));
  box-shadow: 0 30px 100px rgba(0,0,0,.70);
  overflow:hidden;
}

.modal__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 16px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.modal__title{
  font-weight:950;
  letter-spacing:-.3px;
}

.modal__close{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
.modal__close:hover{background:rgba(255,255,255,.10)}

.modal__body{
  padding:18px;
}

.formgrid{
  display:grid;
  gap:14px;
}

.field label{
  display:block;
  font-weight:800;
  margin:0 0 6px;
  color:rgba(246,244,255,.90);
}

.field input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:var(--text);
  outline:none;
}
.field input:focus{
  border-color: rgba(246,211,107,.55);
}

/* Tabs als Pill Switch */
.modal__tabs{
  display:flex;
  gap:10px;
  margin: 10px 0 16px;
}

.modal__tab{
  appearance:none;
  -webkit-appearance:none;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight:950;
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
  flex:1;
  text-align:center;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .08s ease;
}

.modal__tab:hover{
  background: rgba(255,255,255,.10);
  color: var(--text);
}

.modal__tab:active{
  transform: translateY(1px);
}

.modal__tab.is-active{
  border-color: rgba(246,211,107,.65);
  background: linear-gradient(135deg, rgba(246,211,107,.28), rgba(255,255,255,.06));
  color: var(--text);
}

/* Actions */
.modal__actions{
  display:flex;
  gap:10px;
  justify-content:space-between;
  align-items:center;
  margin-top:14px;
}

.modal__actions-left{display:flex;gap:10px}
.modal__actions-right{display:flex;gap:10px}

/* Buttons im Modal */
.modal .btn{
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: var(--text);
}

.modal .btn:hover{
  background: rgba(255,255,255,.14);
}

.modal .btn--ghost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  color: var(--text);
}

.modal .btn--gold{
  color:#1b1406;
  border-color: rgba(246,211,107,.75);
  background: linear-gradient(135deg, rgba(246,211,107,.95), rgba(246,211,107,.65));
}

.modal .btn--gold:hover{
  background: linear-gradient(135deg, rgba(246,211,107,1), rgba(246,211,107,.75));
}

/* ===== Fix: Select/Option lesbar (Modal + Portal + generell) ===== */
select,
.portal select,
.modal select{
  appearance:auto;
  -webkit-appearance:auto;
  color: var(--text) !important;
  background-color: #0f1022 !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius:14px;
  padding:12px 12px;
}

select option,
.portal select option,
.modal select option{
  color: #f6f4ff !important;
  background-color: #0f1022 !important;
}

select option:checked,
.portal select option:checked,
.modal select option:checked{
  color: #0b0a12 !important;
  background-color: var(--gold) !important;
}

select:focus,
.portal select:focus,
.modal select:focus{
  outline:none;
  border-color: rgba(246,211,107,.65) !important;
  box-shadow: 0 0 0 4px rgba(246,211,107,.12);
}

/* ===== Flash Messages ===== */
.flash{
  width:min(1180px,92vw);
  margin: 16px auto 0;
  padding:0;
}
.flash__inner{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:12px 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  font-weight:900;
}
.flash--success .flash__inner{
  border-color: rgba(246,211,107,.35);
  background: rgba(246,211,107,.12);
  color: var(--text);
}
.flash--error .flash__inner{
  border-color: rgba(255,63,180,.35);
  background: rgba(255,63,180,.10);
  color: var(--text);
}

/* ===== Portal Layout (ACP / Kundenportal) ===== */
.portal-head{margin-top:12px}

.portal{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:12px;
  margin-top:12px;
}

.portal__sideTitle{
  font-weight:950;
  margin-bottom:10px;
}

.portal__nav{
  display:grid;
  gap:8px;
}

.portal__link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
  font-weight:850;
}

.portal__link:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

.portal__link.is-active{
  color:var(--text);
  border-color: rgba(246,211,107,.35);
  background: linear-gradient(135deg, rgba(246,211,107,.12), rgba(255,255,255,.04));
}

.portal__ico{
  width:24px;height:24px;
  display:grid;place-items:center;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}

.portal__sideHr{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:12px 0;
}

.portal__main{
  display:grid;
  gap:12px;
}

/* ===== ACP Form (Öffnungszeiten) ===== */
.acpform{margin-top:12px}

/* Base row (users etc.) */
.acp-row{
  display:grid;
  grid-template-columns: 140px 140px 1fr 1.2fr;
  gap:10px;
  align-items:center;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.acp-row:first-child{border-top:0}

.acp-day{font-weight:950}

/* ===== Custom Checkbox (replaces ugly native) ===== */
.acp-check{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:800;
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}

/* hide native checkbox but keep it accessible */
.acp-check input[type="checkbox"]{
  position:absolute;
  opacity:0;
  width:1px;height:1px;
  overflow:hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space:nowrap;
}

/* label text and space for box */
.acp-check span{
  position:relative;
  padding-left:34px;
  line-height:1.2;
}

/* box */
.acp-check span::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.28),
    0 10px 26px rgba(0,0,0,.22);
  transition: background .15s ease, border-color .15s ease, transform .08s ease, box-shadow .15s ease;
}

/* checkmark */
.acp-check span::after{
  content:"";
  position:absolute;
  left:8px;
  top:50%;
  width:6px;
  height:12px;
  border: solid rgba(11,10,18,.95);
  border-width:0 3px 3px 0;
  transform: translateY(-62%) rotate(45deg);
  opacity:0;
  transition: opacity .12s ease, transform .12s ease;
}

/* hover */
.acp-check:hover span::before{
  background:rgba(255,255,255,.09);
  border-color: rgba(246,211,107,.30);
}

/* checked */
.acp-check input[type="checkbox"]:checked + span{
  color: var(--text);
}
.acp-check input[type="checkbox"]:checked + span::before{
  border-color: rgba(246,211,107,.70);
  background: linear-gradient(135deg, rgba(246,211,107,.92), rgba(246,211,107,.55));
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.22),
    0 14px 34px rgba(0,0,0,.30);
}
.acp-check input[type="checkbox"]:checked + span::after{
  opacity:1;
  transform: translateY(-62%) rotate(45deg) scale(1.02);
}

/* focus visible (keyboard) */
.acp-check input[type="checkbox"]:focus-visible + span::before{
  box-shadow:
    0 0 0 4px rgba(246,211,107,.14),
    inset 0 0 0 1px rgba(0,0,0,.28),
    0 10px 26px rgba(0,0,0,.22);
  border-color: rgba(246,211,107,.80);
}

/* disabled */
.acp-check input[type="checkbox"]:disabled + span{
  opacity:.55;
  cursor:not-allowed;
}
.acp-check input[type="checkbox"]:disabled + span::before{
  opacity:.7;
  box-shadow:none;
}

.acp-time{
  display:flex;gap:10px;align-items:center;flex-wrap:wrap;
}
.acp-time input[type="time"],
.acp-note{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:var(--text);
  outline:none;
}
.acp-time input[type="time"]:focus,
.acp-note:focus{
  border-color: rgba(246,211,107,.55);
}
.acp-note{min-width:200px}
.acp-time input[disabled]{opacity:.55;cursor:not-allowed}

/* ===== NEW: Öffnungszeiten-Row (Tag oben mittig + Linien + Flags + Zeit) ===== */
.acp-row--hours{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  padding:14px 0;
}

.acp-day--center{
  text-align:center;
  font-weight:950;
  letter-spacing:-.2px;
}

.acp-sep{
  height:1px;
  background:rgba(255,255,255,.08);
  opacity:.6;
}

.acp-flags{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.acp-time--center{
  justify-content:center;
}

.acp-note--center{
  min-width:0;
}

/* Responsive */
@media (max-width: 980px){
  .nav{grid-template-columns:auto auto}
  .nav__links{display:none}
  .nav__login{display:none}
  .nav__user{display:none}
  .nav__burger{display:block;justify-self:end}

  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}

  /* hours becomes stacked on mobile */
  .hours__row{grid-template-columns:1fr}
  .hours__event{min-height:0}

  .portal{grid-template-columns:1fr}

  /* keep default rows stacked on mobile */
  .acp-row{grid-template-columns:1fr;gap:8px}
  .acp-note{min-width:0}

  /* logo slightly smaller on mobile */
  .brand__logo{width:52px;height:52px}
}

/* ===========================
   MODAL Form Fixes (Rooms)
   =========================== */

/* textarea wie input stylen */
.field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:var(--text);
  outline:none;
  resize:vertical;
  min-height:110px;
  line-height:1.45;
}
.field textarea:focus{
  border-color: rgba(246,211,107,.55);
}

/* placeholder überall einheitlich */
.field input::placeholder,
.field textarea::placeholder{
  color: rgba(246,244,255,.45);
}

/* Modal etwas breiter + sauberere Abstände */
.modal__panel{
  width:min(640px,92vw);
}
.modal__body{
  padding:20px;
}

/* Grid im Modal: etwas mehr Luft */
.modal .grid2{
  gap:14px;
}

/* File Input (cross-browser okay) */
.field input[type="file"]{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--muted);
  outline:none;
}
.field input[type="file"]:focus{
  border-color: rgba(246,211,107,.55);
}

/* WebKit file button (Chrome/Edge/Opera) */
.field input[type="file"]::-webkit-file-upload-button{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  margin-right:10px;
  font-weight:900;
}
.field input[type="file"]::-webkit-file-upload-button:hover{
  background:rgba(255,255,255,.14);
}

/* Status checkbox: vertikal aligned */
.modal .acp-check{
  align-items:center;
}
.modal .acp-check span{
  padding-left:34px;
}

/* Mobile: Room Modal grid stapeln */
@media (max-width: 720px){
  .modal .grid2{
    grid-template-columns:1fr !important;
  }
}