/* ============================================
   ANGEBOTE-AKKORDEON (Raumseiten)
   ============================================ */
.acc-list {
  max-width: 720px;
  margin: 0 auto;
}
.acc-item {
  border-bottom: 1px solid var(--border-light);
}
.acc-item:first-child {
  border-top: 1px solid var(--border-light);
}
.acc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  transition: opacity .2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.acc-header:hover { opacity: .8; }
.acc-bar {
  width: 4px;
  height: 2.5rem;
  border-radius: 2px;
  flex-shrink: 0;
}
.acc-titles { flex: 1; }
.acc-titles h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}
.acc-titles .acc-sub {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .1rem;
}
.acc-chevron {
  font-size: 1.2rem;
  color: var(--text-lighter);
  transition: transform .3s;
  flex-shrink: 0;
}
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 0 0 1.25rem;
}
.acc-item.open .acc-body {
  max-height: 20rem;
  padding: 0 0 1.25rem 1.25rem;
}
.acc-body p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.acc-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin: 3rem 0 1.5rem;
}


/* ============================================
   BLOG
   ============================================ *//* ============================================
   EntfaltungsRaum e.V. – Stylesheet
   Bereinigte Version
   ============================================ */

/* === Variablen === */
:root {
  --blue: #2B6B99;
  --lightblue: #5BA4CF;
  --paleblue: #E8F4FA;
  --red: #C4566A;
  --darkred: #A3384D;
  --orange: #D98B4B;
  --gray: #5E7D8A;
  --cream: #FDF9F5;
  --warmgray: #F5F0EB;
  --white: #ffffff;
  --text: #44403c;
  --text-dark: #292524;
  --text-mid: #57534e;
  --text-light: #78716c;
  --text-lighter: #a8a29e;
  --border: #d6d3d1;
  --border-light: #e7e5e4;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { text-decoration: none; color: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
main { flex-grow: 1; }

/* === Container === */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 1024px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 896px;  margin: 0 auto; padding: 0 1.5rem; }

/* === Utilities === */
.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Scroll-Offset fuer Anker (Header-Hoehe) */
:target { scroll-margin-top: 6rem; }


/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: #FCFCFB;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.header-brand img {
  height: 100%;
  max-height: 4rem;
  width: auto;
  object-fit: contain;
}
.header-brand-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue);
  letter-spacing: .15em;
}
.header-brand-text span { color: var(--red); }

/* Desktop Nav */
.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-link:hover {
  color: var(--text-light);
}
.nav-link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FCFCFB;
  border: 1px solid var(--border-light);
  border-radius: .4rem;
  box-shadow: var(--shadow);
  padding: .5rem 0;
  min-width: 12rem;
  z-index: 200;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: .5rem 1.2rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .05em;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover {
  background: var(--paleblue);
  color: var(--blue);
}
.nav-dropdown .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: .5rem;
  vertical-align: middle;
}
.nav-dropdown .divider-line {
  height: 1px;
  background: var(--border-light);
  margin: .35rem 0;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--blue);
  padding: .25rem;
}
.mobile-menu {
  display: none;
  background: #FCFCFB;
  border-top: 1px solid var(--border-light);
  padding: 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: .6rem 0;
  font-weight: 600;
  color: var(--text-light);
  font-size: .95rem;
}
.mobile-menu a:hover { color: var(--blue); }

/* Mobile Submenu */
.mobile-sub {
  display: none;
  padding-left: 1rem;
}
.mobile-sub.open {
  display: block;
}
.mobile-sub a {
  display: block;
  padding: .4rem 0;
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 500;
}
.mobile-sub a:hover {
  color: var(--blue);
}
.mobile-toggle-sub {
  background: none;
  border: none;
  font-size: .7rem;
  color: var(--text-lighter);
  padding: 0 0 0 .3rem;
  cursor: pointer;
  vertical-align: middle;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--paleblue) 0%, var(--cream) 50%, #FDE8E0 100%);
  text-align: center;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}


/* ============================================
   PAGE HEADER (orange label + title)
   ============================================ */
.page-header { text-align: center; margin-bottom: 2.5rem; }
.page-header .label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .15em;
  display: block;
  margin-bottom: .25rem;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}
.page-header .lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 48rem;
  margin: 1rem auto 0;
  line-height: 1.7;
}


/* ============================================
   SECTION HELPERS
   ============================================ */
.section       { padding: 5rem 1.5rem; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-hero-gradient {
  background: linear-gradient(135deg, var(--paleblue) 0%, var(--cream) 50%, #FDE8E0 100%);
}
.section-raeume {
  background: linear-gradient(45deg, var(--paleblue) 0%, var(--cream) 50%, #FDE8E0 100%);
}
.divider {
  width: 5rem;
  height: 4px;
  border-radius: 2px;
  margin: 0 auto 2rem;
  background: var(--lightblue);
}


/* ============================================
   MANIFEST – Leitgedanke
   ============================================ */
.manifest-intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.manifest-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
}


/* ============================================
   FARB-HILFSKLASSEN
   ============================================ */
.color-gray   { color: var(--gray); }
.color-red    { color: var(--red); }
.color-blue   { color: var(--blue); }
.color-orange { color: var(--orange); }
.bg-gray      { background: var(--gray); }
.bg-red       { background: var(--red); }
.bg-blue      { background: var(--blue); }
.bg-orange    { background: var(--orange); }
.bg-lightblue { background: var(--lightblue); }


/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--text-lighter); }

/* Inaktive Filter-Farben */
.filter-btn.f-gray   { color: var(--gray);   border-color: var(--gray); }
.filter-btn.f-red    { color: var(--red);    border-color: var(--red); }
.filter-btn.f-blue   { color: var(--blue);   border-color: var(--blue); }
.filter-btn.f-orange { color: var(--orange); border-color: var(--orange); }

/* Aktive Filter-Farben */
.filter-btn.active.f-all    { background: var(--blue);   border-color: var(--blue);   color: var(--white); }
.filter-btn.active.f-gray   { background: var(--gray);   border-color: var(--gray);   color: var(--white); }
.filter-btn.active.f-red    { background: var(--red);    border-color: var(--red);    color: var(--white); }
.filter-btn.active.f-blue   { background: var(--blue);   border-color: var(--blue);   color: var(--white); }
.filter-btn.active.f-orange { background: var(--orange); border-color: var(--orange); color: var(--white); }


/* ============================================
   EVENT CARDS
   ============================================ */
.event-list { display: flex; flex-direction: column; gap: 1rem; }
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  border-left: 5px solid var(--gray);
}
.event-card.room-1 { border-left-color: var(--gray); }
.event-card.room-2 { border-left-color: var(--red); }
.event-card.room-3 { border-left-color: var(--blue); }
.event-card.room-4 { border-left-color: var(--orange); }
.event-card-body { padding: 1.5rem; flex: 1; }
.event-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}
.event-tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border-radius: .25rem;
}
.event-tag.tag-gray   { color: var(--gray);   background: rgba(94,125,138,.1); }
.event-tag.tag-red    { color: var(--red);    background: rgba(196,86,106,.1); }
.event-tag.tag-blue   { color: var(--blue);   background: rgba(43,107,153,.1); }
.event-tag.tag-orange { color: var(--orange); background: rgba(217,139,75,.1); }
.event-date { font-size: .85rem; color: var(--text-lighter); }
.event-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.event-card .desc {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.event-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.event-spots { font-size: .85rem; color: var(--text-lighter); }
.progress-bar {
  flex: 1;
  height: 6px;
  background: var(--stone-100);
  border-radius: 3px;
  min-width: 60px;
}
.progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width .3s;
}


/* ============================================
   GIFT / DOWNLOAD CARDS
   ============================================ */
.gift-grid { display: grid; gap: 1.25rem; }

.gift-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  border-top: 5px solid var(--gray);
}
.gift-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.gift-card.room-1 { border-top-color: var(--gray); }
.gift-card.room-2 { border-top-color: var(--red); }
.gift-card.room-3 { border-top-color: var(--blue); }
.gift-card.room-4 { border-top-color: var(--orange); }
.gift-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .35rem;
}
.gift-card .gift-desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.gift-card .gift-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border-radius: .25rem;
  margin-bottom: .75rem;
}
.gift-file {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: .4rem;
  transition: all .2s;
}
.gift-file:hover {
  background: var(--paleblue);
  border-color: var(--lightblue);
}
.gift-file svg { width: 1rem; height: 1rem; }


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: .65rem 1.4rem;
  border: none;
  border-radius: .4rem;
  font-weight: 700;
  font-size: .8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: all .2s;
  text-align: center;
  line-height: 1.4;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: .85rem;
  border-radius: .5rem;
}
.btn-blue   { background: var(--blue);  color: var(--white); }
.btn-blue:hover { background: #1F5578; }
.btn-red    { background: var(--red);   color: var(--white); }
.btn-red:hover { background: var(--darkred); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: #C07538; }
.btn-gray   { background: var(--gray);  color: var(--white); }
.btn-gray:hover { background: #4A6570; }
.btn-outline {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--border);
  border-radius: .4rem;
}
.btn-outline:hover { background: var(--warmgray); }


/* ============================================
   FORMS
   ============================================ */
.input-field {
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: .4rem;
  font-size: .9rem;
  outline: none;
  background: var(--white);
  font-family: inherit;
  width: 100%;
}
.input-field:focus {
  border-color: var(--lightblue);
  box-shadow: 0 0 0 3px rgba(91,164,207,.15);
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--blue);
  color: #bcd4e5;
  margin-top: auto;
  border-top: 4px solid var(--lightblue);
}
.footer-inner {
  padding: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.footer-cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .15rem;
}
.footer-cta p {
  color: #8bb8d8;
  font-size: .85rem;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-copyright {
  font-size: .75rem;
  color: #6fa0c4;
  letter-spacing: .08em;
}
.footer-links {
  display: flex;
  gap: 1rem;
}
.footer-links a {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #8bb8d8;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }


/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in { animation: fadeIn .8s ease-out forwards; opacity: 0; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================
   SCHMETTERLING-NAVIGATION (Ankommen-Seite)
   ============================================ */
.butterfly-nav {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  user-select: none;
}
.butterfly-img {
  width: 100%;
  height: auto;
  display: block;
}
.butterfly-label {
  position: absolute;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.25s ease;
  padding: .4rem 0.5rem;
  border-radius: .4rem;
}
.butterfly-label:hover {
  background: rgba(232, 244, 250, .2);
}
.bl-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.bl-sub {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .15rem;
}
.bl-ul { top: 22%; left: 14%;  transform-origin: right bottom; }
.bl-ur { top: 22%; right: 16%; transform-origin: left bottom; }
.bl-ll { top: 52%; left: 22%;  transform-origin: right top; }
.bl-lr { top: 52%; right: 23%; transform-origin: left top; }
.bl-ul:hover { transform: translate(-3px, -3px); }
.bl-ur:hover { transform: translate(3px, -3px); }
.bl-ll:hover { transform: translate(-3px, 3px); }
.bl-lr:hover { transform: translate(3px, 3px); }


/* ============================================
   SCHMETTERLING MIT TOOLTIPS (Kompass-Seite)
   ============================================ */
.bt-nav {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  user-select: none;
}
.bt-img {
  width: 100%;
  height: auto;
  display: block;
}
.bt-label {
  position: absolute;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.35s ease;
  padding: .4rem .5rem;
  border-radius: .4rem;
}
.bt-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.bt-sub {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .15rem;
}
.bt-ul { top: 22%; left: 14%;  transform-origin: right bottom; }
.bt-ur { top: 22%; right: 16%; transform-origin: left bottom; }
.bt-ll { top: 52%; left: 22%;  transform-origin: right top; }
.bt-lr { top: 52%; right: 23%; transform-origin: left top; }
.bt-ul:hover { transform: translate(-3px, -3px); }
.bt-ur:hover { transform: translate(3px, -3px); }
.bt-ll:hover { transform: translate(-3px, 3px); }
.bt-lr:hover { transform: translate(3px, 3px); }

.bt-tooltip {
  position: absolute;
  width: 18rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 10;
}
.bt-ul .bt-tooltip { top: 100%; left: -7rem; padding-top: 1.5rem; }
.bt-ur .bt-tooltip { top: 100%; right: -7rem; padding-top: 1.5rem; }
.bt-ll .bt-tooltip { bottom: 100%; left: -7rem; padding-bottom: 1.5rem; }
.bt-lr .bt-tooltip { bottom: 100%; right: -7rem; padding-bottom: 1.5rem; }

.bt-tooltip-inner {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: .6rem;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  position: relative;
}
.bt-tooltip-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: .6rem .6rem 0 0;
}
.bt-ul .bt-tooltip-inner::before { background: var(--gray); }
.bt-ur .bt-tooltip-inner::before { background: var(--red); }
.bt-ll .bt-tooltip-inner::before { background: var(--blue); }
.bt-lr .bt-tooltip-inner::before { background: var(--orange); }

.bt-tooltip-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .35rem;
}
.bt-tooltip-text {
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.bt-tooltip-link {
  display: inline-block;
  margin-top: .6rem;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.bt-label:hover {
  z-index: 20;
}
.bt-label:hover .bt-tooltip {
  opacity: 1;
  pointer-events: auto;
}


/* ============================================
   TEAM-TEASER (Ankommen-Seite)
   ============================================ */
.team-teaser {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.team-teaser-text {
  flex: 1;
}
.team-teaser-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .75rem;
  padding-left: 1rem;
  border-left: 4px solid var(--blue);
}
.team-teaser-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.team-oval {
  position: relative;
  width: 19rem;
  height: 14rem;
  flex-shrink: 0;
}
.team-oval-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) rotate(var(--rot));
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: .5rem;
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  white-space: nowrap;
  transition: transform .35s, box-shadow .35s, z-index 0s;
  cursor: default;
  z-index: 1;
}
.team-oval-card:hover {
  transform: translate(calc(-50% + var(--ox)), calc(-50% + var(--oy))) rotate(0deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  z-index: 10;
  color: var(--blue);
}


/* ============================================
   TEAM-SEITE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--gray);
  text-align: center;
  padding: 2rem 1.5rem;
  transition: box-shadow .3s, transform .3s;
}
.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.team-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}
.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .2rem;
}
.team-role {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.team-area {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}


/* ============================================
   LOGIN / REGISTRIERUNG
   ============================================ */
.login-card {
  max-width: 28rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--blue);
  padding: 2.5rem;
}
.login-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: .25rem;
}
.login-sub {
  text-align: center;
  color: var(--text-lighter);
  font-size: .85rem;
  margin-bottom: 1.5rem;
}
.login-card .input-field {
  margin-bottom: .75rem;
}
.login-btn {
  width: 100%;
  padding: .75rem;
  font-size: .9rem;
  margin-top: .5rem;
}
.login-error {
  background: rgba(196,86,106,.08);
  border: 1px solid rgba(196,86,106,.25);
  color: var(--red);
  padding: .5rem .75rem;
  border-radius: .3rem;
  font-size: .85rem;
  margin-bottom: .75rem;
}
.login-switch {
  text-align: center;
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--text-light);
}
.login-switch button {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  font-size: .85rem;
}
.login-hint {
  text-align: center;
  margin-top: .75rem;
  font-size: .75rem;
  color: var(--text-lighter);
}


/* ============================================
   PROFIL
   ============================================ */
.profil-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 6px solid var(--blue);
  padding: 2rem;
}
.profil-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(43,107,153,.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}
.profil-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}
.profil-meta {
  font-size: .85rem;
  color: var(--text-lighter);
}


/* ============================================
   BLOG
   ============================================ */
.blog-search {
  max-width: 24rem;
  margin: 0 auto 1.5rem;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  border-left: 5px solid var(--blue);
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}
.blog-card-room {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border-radius: .25rem;
}
.blog-card-date {
  font-size: .85rem;
  color: var(--text-lighter);
}
.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.blog-card-excerpt {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: .75rem;
}
.blog-card-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.blog-tag {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--stone-100);
  padding: .15rem .5rem;
  border-radius: .25rem;
}
.blog-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-lighter);
  font-size: .95rem;
}

/* Blog Themen-Tags */
.tag-bar {
  display: flex;
  gap: .4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.tag-btn {
  padding: .3rem .8rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: all .2s;
}
.tag-btn:hover {
  border-color: var(--text-lighter);
}
.tag-btn.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
}

/* Blog Einzelansicht */
.blog-back {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.blog-back:hover {
  text-decoration: underline;
}
.blog-article {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--blue);
  padding: 2.5rem;
}
.blog-article-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: .75rem 0 1.5rem;
}
.blog-article-body p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 640px) {
  .gift-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
}
@media (min-width: 1024px) {
  .gift-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
  .header-brand-text { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero { padding: 4rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .footer-cta { flex-direction: column; text-align: center; }
  .footer-bottom-row { flex-direction: column; text-align: center; gap: .75rem; }
  .footer-links { justify-content: center; }
  .team-teaser { flex-direction: column; text-align: center; }
  .team-teaser-title { border-left: none; padding-left: 0; }
  .team-oval { margin: 0 auto; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .bt-tooltip { width: 14rem; }
  .bt-tooltip-inner { padding: 1rem; }
  .bt-tooltip-text { font-size: .75rem; }
  .bt-title { font-size: .85rem; }
  .bt-sub { font-size: .6rem; }
}
@media (max-width: 480px) {
  .bl-title { font-size: .8rem; }
  .bl-sub   { font-size: .55rem; letter-spacing: .05em; }
  .butterfly-label { padding: .25rem .4rem; }
}