@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Barlow+Condensed:wght@700;900&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg: #080808; --bg2: #111111; --bg3: #181818; --surface: #1c1c1c;
  --border: rgba(255,255,255,0.08); --border-hover: rgba(255,255,255,0.18);
  --red: #e8341a; --red-dark: #c42a12; --red-glow: rgba(232,52,26,0.12);
  --white: #f0ede8; --muted: #888; --muted2: #444;
  --font-display: 'Syne', sans-serif; --font-body: 'Inter', sans-serif; --font-condensed: 'Barlow Condensed', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); font-size: 15px; line-height: 1.65; min-height: 100vh; -webkit-font-smoothing: antialiased; }

/* NAVBAR */
.navi { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 18px 40px; background: #000; }
.navi-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; text-decoration: none; transition: color .2s; }
.navi-logo:hover { color: var(--red); }
.navi-links { display: flex; gap: 32px; }
.navi-links a { color: #aaa; text-decoration: none; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: color .2s; }
.navi-links a:hover, .navi-links a.active { color: #fff; }

/* HERO */
.page-hero { padding: 6rem 2.5rem 4rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -80px; left: -80px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,52,26,0.06) 0%, transparent 65%); pointer-events: none; }
.held { position: relative; width: 100%; height: 100vh; overflow: hidden; }
.headerimage { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.held-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: flex-start; padding: 120px 60px 60px; background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.werbung { color: #fff; font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.15; text-align: left; max-width: 600px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.werbung .black { color: #050303; display: block; }

/* BADGE */
.badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,52,26,0.1); border: 1px solid rgba(232,52,26,0.28); color: var(--red); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.32rem 0.9rem; border-radius: 100px; margin-bottom: 1.8rem; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.page-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 800; line-height: 0.92; letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.page-title .red { color: var(--red); }
.page-sub { color: var(--muted); font-size: 0.88rem; letter-spacing: 0.05em; display: flex; align-items: center; gap: 0; }
.page-sub .sep { margin: 0 1rem; color: var(--muted2); }

/* DESCRIPTION */
.desc-wrap { padding: 0 2.5rem 3rem; max-width: 860px; }
.desc-block { border-left: 2px solid var(--red); padding-left: 2rem; margin-bottom: 3rem; }
.desc-block p { color: #aaa; font-size: 1rem; line-height: 1.9; max-width: 640px; }
.features-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 3rem; }
.feature-item { background: var(--bg2); padding: 1.5rem 1.2rem; display: flex; flex-direction: column; gap: 0.7rem; transition: background .2s; }
.feature-item:hover { background: var(--bg3); }
.feat-icon { font-size: 1.4rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--red-glow); border-radius: 10px; }
.feature-item span { font-size: 0.88rem; font-weight: 500; color: var(--white); }
.feature-item small { color: var(--muted); font-size: 0.75rem; }

/* BUTTONS */
.take-wrap { padding: 0 2.5rem 5rem; }
.take-btn { position: relative; overflow: hidden; background: var(--red); color: #fff; font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border: none; border-radius: 10px; padding: 1rem 3rem; cursor: pointer; transition: background .2s, transform .15s; }
.take-btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); transform: translateX(-100%); transition: transform .5s; }
.take-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.take-btn:hover::after { transform: translateX(100%); }

/* SERVICES */
.services-wrap { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; padding: 0 2.5rem 5rem; }
.service-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; cursor: pointer; transition: border-color .25s, transform .25s; }
.service-card:hover { border-color: rgba(232,52,26,0.45); transform: translateY(-5px); }
.card-img { height: 220px; overflow: hidden; position: relative; }
.card-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s; }
.service-card:hover .card-img img { transform: scale(1.06); }
.card-img-fade { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 35%, rgba(8,8,8,0.95) 100%); }
.card-tag { position: absolute; top: 1rem; left: 1rem; background: var(--red); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.28rem 0.75rem; border-radius: 100px; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-body p { color: var(--muted); font-size: 0.86rem; line-height: 1.7; margin-bottom: 1.2rem; }
.card-footer { display: flex; align-items: center; gap: 0.9rem; }
.take-btn-sm { background: var(--red); color: #fff; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; border: none; border-radius: 7px; padding: 0.55rem 1.5rem; cursor: pointer; transition: background .2s, transform .15s; }
.take-btn-sm:hover { background: var(--red-dark); transform: translateY(-1px); }
.card-more { color: var(--muted); font-size: 0.8rem; text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 0.3rem; }
.card-more:hover { color: var(--white); }

/* CONTACT */
.contact-wrap { padding: 0 2.5rem 5rem; max-width: 680px; }
.about-panel { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 2.2rem; margin-bottom: 1.5rem; position: relative; overflow: hidden; }
.about-panel::before { content: '"'; position: absolute; top: -1rem; right: 1.5rem; font-family: var(--font-display); font-size: 9rem; font-weight: 800; color: rgba(232,52,26,0.05); line-height: 1; pointer-events: none; }
.about-panel .section-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem; }
.about-panel p { color: #aaa; line-height: 1.85; }
.about-panel strong { color: var(--white); font-weight: 500; }
.contact-list { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.contact-row { display: flex; align-items: center; gap: 1.4rem; background: var(--bg2); padding: 1.4rem 1.8rem; text-decoration: none; color: var(--white); border-bottom: 1px solid var(--border); transition: background .2s; }
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { background: var(--bg3); }
.c-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--red-glow); border: 1px solid rgba(232,52,26,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.c-info { flex: 1; }
.c-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.c-val { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin: 0.15rem 0 0.1rem; }
.c-hint { font-size: 0.76rem; color: var(--muted); }
.c-arrow { color: var(--muted2); font-size: 1rem; transition: transform .2s, color .2s; }
.contact-row:hover .c-arrow { transform: translateX(3px); color: var(--muted); }

/* MODAL */
.modal-bg { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.72); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.modal { background: var(--bg2); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2.2rem; width: min(500px,100%); position: relative; animation: mIn .3s cubic-bezier(.16,1,.3,1) both; }
@keyframes mIn { from{opacity:0;transform:translateY(20px) scale(.97);} to{opacity:1;transform:translateY(0) scale(1);} }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--surface); border: 1px solid var(--border); color: var(--muted); border-radius: 8px; width: 32px; height: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: color .2s, border-color .2s; }
.modal-close:hover { color: var(--white); border-color: var(--border-hover); }
.modal h2 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; margin-bottom: 0.25rem; }
.modal-sub { color: var(--muted); font-size: 0.84rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select { background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; color: var(--white); font-family: var(--font-body); font-size: 0.9rem; padding: 0.75rem 1rem; outline: none; transition: border-color .2s; width: 100%; appearance: none; }
.field input:focus, .field select:focus { border-color: var(--red); }
.field input::placeholder { color: var(--muted2); }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.4); cursor: pointer; }
.modal-actions { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.btn-cancel { flex: 1; background: transparent; border: 1px solid var(--border); color: var(--muted); border-radius: 10px; padding: 0.8rem; font-family: var(--font-body); font-size: 0.88rem; cursor: pointer; transition: border-color .2s, color .2s; }
.btn-cancel:hover { border-color: var(--border-hover); color: var(--white); }
.btn-submit { flex: 2; background: var(--red); color: #fff; border: none; border-radius: 10px; padding: 0.8rem; font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .15s; }
.btn-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

/* TOAST */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); background: #152215; border: 1px solid #2e6e2e; color: #7fe07f; font-size: 0.88rem; font-weight: 500; padding: 0.85rem 1.8rem; border-radius: 12px; z-index: 400; white-space: nowrap; display: flex; align-items: center; gap: 0.6rem; animation: tIn .4s cubic-bezier(.16,1,.3,1) both; }
@keyframes tIn { from{opacity:0;transform:translateX(-50%) translateY(10px);} to{opacity:1;transform:translateX(-50%) translateY(0);} }

/* AUTH */
.auth-body { background: #0d0d0d; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; }
.auth-container { width: 100%; max-width: 480px; }
.auth-badge { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 14px; border-radius: 2px; margin-bottom: 1.4rem; }
.auth-title { font-family: var(--font-condensed); font-weight: 900; font-size: clamp(3rem, 10vw, 4.5rem); line-height: 1; color: #fff; text-transform: uppercase; margin-bottom: 0.6rem; }
.auth-title span { color: var(--red); display: block; }
.auth-sub { font-size: 12px; color: #666; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2rem; }
.auth-hr { border: none; border-top: 1px solid #2a2a2a; margin-bottom: 2rem; }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field.full { grid-column: 1 / -1; }
.auth-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #666; }
.auth-input { background: #1a1a1a; border: 1px solid #2e2e2e; color: #fff; font-family: var(--font-body); font-size: 15px; padding: 11px 14px; border-radius: 3px; outline: none; transition: border-color .15s; width: 100%; }
.auth-input:focus { border-color: var(--red); }
.auth-input::placeholder { color: #3a3a3a; }
.pw-wrap { position: relative; }
.pw-wrap .auth-input { padding-right: 44px; }
.pw-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #555; cursor: pointer; font-size: 18px; padding: 0; line-height: 1; transition: color .15s; }
.pw-toggle:hover { color: var(--red); }
.auth-forgot { text-align: right; margin-top: -8px; margin-bottom: 20px; }
.auth-forgot a { font-size: 12px; color: #555; text-decoration: none; letter-spacing: 0.04em; transition: color .15s; }
.auth-forgot a:hover { color: var(--red); }
.auth-btn { width: 100%; margin-top: 8px; background: var(--red); color: #fff; font-family: var(--font-condensed); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.12em; text-transform: uppercase; border: none; padding: 15px; border-radius: 3px; cursor: pointer; transition: background .15s, transform .1s; }
.auth-btn:hover { background: var(--red-dark); }
.auth-btn:active { transform: scale(0.98); }
.auth-error { display: none; background: #1a0a0a; border: 1px solid var(--red); border-radius: 3px; padding: 10px 14px; margin-top: 12px; color: #ff4444; font-size: 13px; }
.auth-success { display: none; background: #0a1a0a; border: 1px solid #2a7a2a; border-radius: 3px; padding: 10px 14px; margin-top: 12px; color: #4caf50; font-size: 13px; }
.auth-footer { margin-top: 1.4rem; font-size: 12px; color: #555; text-align: center; }
.auth-footer a { color: var(--red); text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }

/* UTILS */
.hidden { display: none !important; }
.section-label { padding: 0 2.5rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.section-label span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.section-label::after { content:''; flex:1; height:1px; background:var(--border); }
.fade-in { animation: fadeUp .5s ease both; }
.fade-in:nth-child(2){animation-delay:.07s;}
.fade-in:nth-child(3){animation-delay:.14s;}
@keyframes fadeUp { from{opacity:0;transform:translateY(14px);} to{opacity:1;transform:translateY(0);} }
@keyframes shake { 0%,100%{transform:translateX(0);} 20%{transform:translateX(-8px);} 40%{transform:translateX(8px);} 60%{transform:translateX(-5px);} 80%{transform:translateX(5px);} }

@media (max-width: 640px) {
  .navi { padding: 0 1.2rem; }
  .page-hero,.desc-wrap,.take-wrap,.services-wrap,.contact-wrap,.section-label { padding-left:1.2rem; padding-right:1.2rem; }
  .features-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-wrap { grid-template-columns: 1fr; }
  .auth-grid { grid-template-columns: 1fr; }
}

.profilbild { position: absolute; right: 300px; top: 40%; transform: translateY(-50%); width: 800px; height: 800px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 30px rgba(0,0,0,0.2); }

/* SLIDER */
.slider { position: fixed; right: 200px; top: 28%; left: 70%; width: 650px; height: 550px; overflow: hidden; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.2); }
.slider img { width: 100%; height: 100%; object-fit: cover; display: none; }
.slider img.active { display: block; }
.slider button { position: absolute; top: 50%; transform: translateY(-50%); border: none; background: rgba(0,0,0,0.5); color: white; padding: 10px; cursor: pointer; font-size: 20px; }
.prev { left: 10px; }
.next { right: 10px; }

/* ── CALENDAR MODAL ── */
.modal-calendar { width: min(560px, 100%); max-height: 90vh; overflow-y: auto; }
.cal-legend { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.leg-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }
.leg-dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.leg-dot.available { background: #1a6e2e; border: 1px solid #2a9e44; }
.leg-dot.booked    { background: #6e1a1a; border: 1px solid #c23030; }
.leg-dot.blocked   { background: #2a2a2a; border: 1px solid #3a3a3a; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.cal-nav-btn { background: var(--surface); border: 1px solid var(--border); color: var(--muted); border-radius: 8px; width: 34px; height: 34px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: color .2s, border-color .2s; }
.cal-nav-btn:hover { color: var(--white); border-color: var(--border-hover); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 1rem; }
.cal-header { text-align: center; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 0.4rem 0; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 0.82rem; font-weight: 500; transition: transform .15s, background .15s; cursor: default; }
.cal-day.empty { background: transparent; }
.cal-day.past { color: #333; background: transparent; }
.cal-day.blocked { background: #1a1a1a; color: #c03030; border: 1px solid #2a1a1a; }
.cal-day.available { background: rgba(26,110,46,0.18); border: 1px solid rgba(42,158,68,0.35); color: #5cd97a; cursor: pointer; }
.cal-day.available:hover { background: rgba(26,110,46,0.38); transform: scale(1.08); border-color: #2a9e44; }
.cal-day.booked { background: rgba(110,26,26,0.25); border: 1px solid rgba(194,48,48,0.35); color: #c23030; cursor: not-allowed; }
.day-book-panel { background: var(--bg3); border: 1px solid rgba(232,52,26,0.2); border-radius: 14px; padding: 1.4rem; margin-top: 1rem; animation: mIn .25s cubic-bezier(.16,1,.3,1) both; }
.day-book-date { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--red); margin-bottom: 0; }
.modal-guest-hint { background: rgba(232,52,26,0.06); border: 1px solid rgba(232,52,26,0.15); border-radius: 8px; padding: 0.6rem 1rem; margin-bottom: 1.2rem; font-size: 0.8rem; color: var(--muted); }
.modal-guest-hint a { color: var(--red); text-decoration: none; }
.modal-guest-hint a:hover { text-decoration: underline; }