:root {
  --bg-page: #f5f5f7;
  --bg-page-alt: #f9fafb;
  --bg-card: #ffffff;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --accent: #ff7a45;         /* Orange wie „Call to action“ */
  --accent-soft: rgba(255, 122, 69, 0.12);
  --accent-alt: #6366f1;     /* Zweitfarbe (Violett/Blau) */
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-light: 0 10px 28px rgba(15, 23, 42, 0.08);
}

/* Reset/Basics */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 237, 213, 0.9), transparent 60%),
    radial-gradient(circle at 100% 20%, rgba(219, 234, 254, 0.9), transparent 55%),
    var(--bg-page);
  color: var(--text-main);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .page-shell {
    padding-top: 2.4rem;
  }
}

/* NAVBAR – wie Lunchbox: hell, schlicht, sticky */

.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.navbar-light .navbar-brand {
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-main);
}

.navbar-light .navbar-brand:hover {
  color: var(--text-main);
}

.logo-pill {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0%, #fee2e2, #fb923c);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.04), 0 8px 18px rgba(15, 23, 42, 0.18);
  font-size: 1.2rem;
}

.navbar-nav .nav-link {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent);
}

.navbar-toggler {
  border-color: rgba(148, 163, 184, 0.8);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(15,23,42,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* BUTTONS */

.btn {
  border-radius: var(--radius-pill);
  font-size: .86rem;
}

.btn-primary-modern {
  border: none;
  padding: .9rem 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  background: linear-gradient(135deg, var(--accent), #ff9f66);
  color: #fff !important;
  box-shadow: 0 16px 38px rgba(255, 122, 69, 0.5);
}

.btn-primary-modern:hover {
  filter: brightness(1.04);
}

.btn-ghost-modern {
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: .85rem 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  background: #ffffff;
  color: #111827;
}

.btn-ghost-modern:hover {
  border-color: var(--accent-alt);
  background: rgba(239, 246, 255, 0.9);
}

/* HERO – Lunchbox-style: links Text, rechts Card */

.hero-stack {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.75rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-stack {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-panel {
  max-width: 560px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.95);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-muted);
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-title {
  margin-top: 1.4rem;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 3.2vw + 1.4rem, 3.6rem);
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-title span.accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: .98rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  font-size: .85rem;
  color: var(--text-muted);
}

.hero-meta-row strong {
  color: var(--text-main);
}

/* Hero-Side-Card (rechts) */

.hero-side-card {
  border-radius: 30px;
  background: linear-gradient(145deg, #111827, #020617);
  color: #e5e7eb;
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.9rem;
  position: relative;
  overflow: hidden;
}

.hero-side-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.1), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(96, 165, 250, 0.1), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-side-card > * {
  position: relative;
  z-index: 1;
}

.hero-side-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #9ca3af;
  margin-bottom: .5rem;
}

.hero-side-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.hero-side-sub {
  font-size: .85rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.hero-side-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  font-size: .82rem;
}

.hero-side-meta strong {
  display: block;
  font-size: .9rem;
}

/* SECTIONS / CARDS */

.section {
  margin-top: 3.5rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .7rem;
  color: var(--accent);
  margin-bottom: .3rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 650;
}

.section-subtext {
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 26rem;
}

.card-modern {
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-light);
}

.card-modern .card-body {
  padding: 1.6rem 1.7rem;
}

/* Räume-Grid (Start/Räume-Seite) */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}

.room-chip {
  display: inline-flex;
  align-items: center;
  padding: .2rem .7rem;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.12);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #1d4ed8;
}

.room-title {
  margin-top: .55rem;
  font-weight: 600;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .4rem;
  margin-bottom: .35rem;
  font-size: .8rem;
  color: var(--text-muted);
}

.room-price-tag {
  padding: .18rem .65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9a3412;
}

.room-text {
  font-size: .86rem;
  color: var(--text-main);
}

/* Events-Liste */

.events-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.event-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .9rem;
  padding: .9rem .3rem .9rem 0;
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.event-item:last-child {
  border-bottom: none;
}

.event-date-pill {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .78rem;
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.5);
}

.event-date-pill .day {
  font-size: .9rem;
}

.event-content-title {
  font-weight: 600;
  font-size: .98rem;
}

.event-content-meta {
  font-size: .8rem;
  color: var(--text-muted);
}

.event-content-desc {
  font-size: .84rem;
  color: var(--text-main);
}

/* Preis-Tabellen */

.table-prices thead th {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-bottom-width: 1px;
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text-muted);
}

.table-prices tbody td {
  font-size: .9rem;
}

.addon-desc {
  margin-top: .25rem;
  font-size: .8rem;
  color: var(--text-muted);
}

/* Forms */

.form-control,
.form-select {
  border-radius: 999px;
  font-size: .9rem;
  border-color: rgba(209, 213, 219, 0.9);
  background: #ffffff;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-alt);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.7);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.98);
  font-size: .8rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--accent-alt);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Utility */

.text-muted-soft {
  color: var(--text-muted);
}
