@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800;900&family=Permanent+Marker&display=swap');

:root {
  --primary: #E63946;          /* Sharp, clear red */
  --primary-light: #FF5A6B;
  --primary-dark: #C81D25;
  --primary-glow: rgba(230, 57, 70, 0.15);
  --bg: #0A192F;               /* Deep elegant navy background */
  --bg-soft: #112240;          /* Slightly lighter navy for sections */
  --bg-card: #172A45;          /* Card background */
  --text: #CCD6F6;             /* Crisp off-white text */
  --text-mid: #8892B0;         /* Soft slate grey text */
  --text-light: #495670;       /* Darker slate grey */
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(230, 57, 70, 0.25);
  --white: #ffffff;
  --nav-h: 68px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: .3s cubic-bezier(.16, 1, .3, 1);
  --radius: 12px;
  --radius-sm: 8px;
}

.theme-graffiti {
  --primary: #E63946;
  --primary-light: #FF5A6B;
  --primary-dark: #C81D25;
  --accent: #E63946;
  --accent-2: #8892B0;
  --accent-3: #F8F9FA;
  --bg: #0A192F;
  --bg-soft: #112240;
  --bg-card: #172A45;
  --font-graffiti: 'Permanent Marker', cursive;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover {
  color: var(--primary-light);
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.container {
  width: min(90%, 1100px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
@media(max-width:768px){
  section { padding: 60px 0; }
}

/* ── Floating Pill Nav ── */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(10, 25, 47, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 32px;
  width: auto;
  border-radius: 50%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: all var(--ease);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(230, 57, 70, 0.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--primary); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--primary); }

@media(max-width:768px) {
  .navbar {
    width: calc(100% - 24px);
    left: 12px;
    right: 12px;
    transform: none;
    top: 10px;
  }
  .nav-pill {
    width: 100%;
    justify-content: space-between;
    padding: 8px 16px;
    position: relative;
  }
  .hamburger {
    display: flex;
    z-index: 1300;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: rgba(17, 34, 64, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), opacity .2s ease;
    z-index: 1200;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    display: block;
    color: var(--text-mid);
    text-align: center;
    transition: all var(--ease);
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: rgba(230, 57, 70, 0.08);
  }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.7);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  z-index: 2;
}
.btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}
.btn-primary {
  background: var(--primary);
  color: var(--white) !important;
}
.btn-primary:hover {
  background: var(--primary-light);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(230, 57, 70, 0.05);
  transform: translateY(-2px);
}
@media(max-width:480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header p {
  color: var(--text-mid);
  margin-top: 12px;
  font-size: 1.05rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}
@media(max-width:768px) {
  .section-header { margin-bottom: 40px; }
}

/* ── Hero — Typographic & Clean ── */
.hero {
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}
.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 3;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-label svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}
.hero h1 {
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.05;
}
.hero h1 span {
  color: var(--primary);
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating Clean Hero Images */
.hero-floating-img {
  position: absolute;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .6s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.hero-floating-img img {
  width: 100%;
  height: 100%;
}
.hero-img-1 {
  width: 420px;
  height: 290px;
  top: 12%;
  right: 4%;
}
.hero-img-2 {
  width: 320px;
  height: 440px;
  bottom: 6%;
  right: 16%;
}
.hero-img-3 {
  display: none; /* Removed clean layout */
}

@media(max-width:1100px) {
  .hero-floating-img {
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
  }
}
@media(max-width:768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-floating-img {
    display: none;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
}

/* ── Öffnungszeiten (Schedule) ── */
.schedule-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.schedule-card {
  background: rgba(23, 42, 69, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.schedule-card:hover {
  border-color: var(--border-hover);
  background: rgba(23, 42, 69, 0.75);
  transform: translateY(-2px);
}
.schedule-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.schedule-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(230, 57, 70, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.schedule-day-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}
.schedule-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.schedule-time {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}
.schedule-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
}
.schedule-card.closed .schedule-time {
  color: var(--text-light);
}

@media(max-width:900px) {
  .schedule-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media(max-width:600px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Sommerfahrt Notice ── */
.summer-notice {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(230, 57, 70, 0.03);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: var(--radius);
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.summer-notice-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.summer-notice-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}
.summer-notice-content {
  flex: 1;
}
.summer-notice-content h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.summer-notice-content p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.5;
}
.summer-notice-content strong {
  color: var(--primary-light);
}
@media(max-width:600px) {
  .summer-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }
}

/* ── Bento Grid (Homepage with separate text & images) ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(360px, auto);
  gap: 24px;
}
.bento-card {
  background: rgba(23, 42, 69, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.bento-card:hover {
  border-color: var(--border-hover);
  background: rgba(23, 42, 69, 0.75);
  transform: translateY(-4px);
}
.bento-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.bento-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}
.bento-card:hover .bento-card-img-wrap img {
  transform: scale(1.03);
}
.bento-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bento-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(230, 57, 70, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bento-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}
.bento-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  color: var(--white);
}
.bento-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-large .bento-card-img-wrap {
  height: 320px;
}
.bento-tall {
  grid-row: span 2;
}
.bento-tall .bento-card-img-wrap {
  height: 320px;
}
.bento-wide {
  grid-column: span 2;
}
.bento-wide .bento-card-img-wrap {
  height: 200px;
}

@media(max-width:1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .bento-large, .bento-wide {
    grid-column: span 2;
  }
  .bento-tall {
    grid-row: span 2;
  }
  .bento-large .bento-card-img-wrap,
  .bento-tall .bento-card-img-wrap {
    height: 240px;
  }
}
@media(max-width:640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-large, .bento-wide, .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-card-img-wrap {
    height: 180px !important;
  }
}

/* ── Offers specific bento page ── */
.angebot-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.angebot-bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}
.angebot-bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.angebot-bento-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.angebot-bento-wide {
  grid-column: span 2;
}
.angebot-bento-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.angebot-bento-featured .angebot-bento-img {
  height: 340px;
}
.angebot-bento-img img {
  width: 100%;
  height: 100%;
  transition: transform var(--ease);
}
.angebot-bento-card:hover .angebot-bento-img img {
  transform: scale(1.03);
}
.angebot-bento-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.angebot-bento-body-top h3 {
  margin-bottom: 8px;
}
.angebot-bento-body-top p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.angebot-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  list-style: none;
}
.angebot-highlights-list li {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-mid);
}
.angebot-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(230, 57, 70, 0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(230, 57, 70, 0.15);
  align-self: flex-start;
}
.angebot-tag svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

@media(max-width:992px) {
  .angebot-bento {
    grid-template-columns: 1fr 1fr;
  }
  .angebot-bento-featured {
    grid-column: span 2;
  }
}
@media(max-width:600px) {
  .angebot-bento {
    grid-template-columns: 1fr;
  }
  .angebot-bento-featured, .angebot-bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .angebot-bento-featured .angebot-bento-img {
    height: 200px;
  }
}

/* ── Team Page ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.team-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 65%;
  border-bottom: 1px solid var(--border);
}
.team-card-body {
  padding: 24px;
}
.team-card-body h3 {
  margin-bottom: 4px;
}
.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.team-card-body p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
}
@media(max-width:768px) {
  .team-card-img { height: 260px; }
}

/* ── Cards Grid (Highlights) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: rgba(23, 42, 69, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.card:hover {
  border-color: var(--border-hover);
  background: rgba(23, 42, 69, 0.75);
  transform: translateY(-2px);
}
.card h3 {
  margin-bottom: 8px;
}
.card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(230, 57, 70, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform var(--ease), background var(--ease);
}
.card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  color: var(--primary);
}
.card:hover .card-icon {
  transform: scale(1.05);
  background: rgba(230, 57, 70, 0.15);
}

/* ── Map Wrap ── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media(max-width:768px) {
  .map-wrap iframe { height: 240px !important; }
}

/* ── Graffiti Page ── */
.graffiti-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
}
.graffiti-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('graffiti-bg.png') center/cover no-repeat;
  opacity: 0.15;
  filter: grayscale(1);
}
.graffiti-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,47,0.4) 0%, rgba(10,25,47,0.85) 60%, var(--bg) 100%);
}
.graffiti-hero-content {
  position: relative;
  z-index: 2;
}
.graffiti-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--primary);
  margin-bottom: 12px;
}
.graffiti-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 460px;
  margin: 0 auto;
}
.masonry {
  columns: 3;
  column-gap: 20px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color var(--ease), transform var(--ease);
}
.masonry-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.masonry-item img {
  width: 100%;
  display: block;
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--ease);
}
.masonry-item:hover .masonry-overlay {
  opacity: 1;
}
.masonry-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
}
@media(max-width:900px){.masonry{columns:2}}
@media(max-width:500px){.masonry{columns:1}}

.neon-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text-mid);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--ease);
}
.neon-tag:hover, .neon-tag.active {
  transform: translateY(-1px);
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(230, 57, 70, 0.05);
}
.graffiti-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto;
}

/* ── Events ── */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.event-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.event-card-img {
  width: 100%;
  height: 200px;
  border-bottom: 1px solid var(--border);
}
.event-card-body {
  padding: 24px;
}
.event-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.event-date svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}
.event-card-body h3 {
  margin-bottom: 8px;
}
.event-card-body p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Banners ── */
.cta-banner {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,57,70,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}
.support-banner {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  border: 1px solid var(--border);
}
.support-banner h2 {
  margin-bottom: 12px;
}
.support-banner p {
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 0.95rem;
}
@media(max-width:768px) {
  .cta-banner, .support-banner {
    padding: 40px 24px;
  }
}

/* ── Footer ── */
.footer {
  background: #070e1b;
  color: var(--text-mid);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer p {
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-mid);
  font-size: 0.9rem;
  transition: color var(--ease);
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-width: 320px;
}
.footer-contact-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--primary);
}
.footer-contact-info h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
}
.footer-contact-info p {
  font-size: 0.75rem;
  color: var(--text-mid);
}

@media(max-width:768px) {
  .footer {
    padding: 50px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-contact-block {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Graffiti theme adjustments */
.theme-graffiti .navbar {
  background: transparent !important;
}
.theme-graffiti .nav-pill {
  background: rgba(17, 34, 64, 0.65) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
}
.theme-graffiti .footer {
  background: #070e1b;
}

/* ══════════════════════════════════════════════════════
   ── Hero Outdoor (Photo Background) ──
══════════════════════════════════════════════════════ */
.hero-outdoor {
  min-height: 90vh;
  min-height: 90dvh;
  padding: 120px 0 80px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.hero-outdoor-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-outdoor-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
  filter: brightness(0.75);
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-outdoor:hover .hero-outdoor-bg img {
  transform: scale(1.06);
}
.hero-outdoor-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 25, 47, 0.98) 0%,
    rgba(10, 25, 47, 0.7) 35%,
    rgba(10, 25, 47, 0.2) 70%,
    rgba(10, 25, 47, 0.05) 100%
  );
}
.hero-outdoor .container {
  z-index: 2;
  position: relative;
}
.hero-outdoor .hero-content {
  max-width: 680px;
}
@media(max-width:768px) {
  .hero-outdoor {
    min-height: 85vh;
    padding: 100px 0 60px;
    align-items: flex-end;
  }
}

/* ══════════════════════════════════════════════════════
   ── Community Section ──
══════════════════════════════════════════════════════ */
.community-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.community-text .section-tag { display: block; margin-bottom: 12px; }
.community-text h2 { margin-bottom: 20px; }
.community-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.community-images {
  position: relative;
  height: 480px;
}
.community-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.community-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .5s ease;
}
.community-img:hover img { transform: scale(1.03); }
.community-img-main {
  width: 75%;
  height: 340px;
  top: 0;
  left: 0;
}
.community-img-accent {
  width: 55%;
  height: 240px;
  bottom: 0;
  right: 0;
  border: 2px solid var(--primary);
}
@media(max-width:900px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .community-images { height: 300px; }
  .community-img-main { width: 70%; height: 260px; }
  .community-img-accent { width: 50%; height: 180px; }
}
@media(max-width:600px) {
  .community-images { height: 240px; }
  .community-img-main { width: 65%; height: 210px; }
  .community-img-accent { width: 48%; height: 150px; }
}

/* ══════════════════════════════════════════════════════
   ── Wohnzimmer / Safe Space Section ──
══════════════════════════════════════════════════════ */
.wohnzimmer-section { background: var(--bg); }
.wohnzimmer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.wohnzimmer-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.wohnzimmer-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: transform .5s ease;
}
.wohnzimmer-img-wrap:hover img { transform: scale(1.02); }
.wohnzimmer-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-head);
}
.wohnzimmer-img-badge svg { width: 16px; height: 16px; stroke-width: 2.5; }
.wohnzimmer-text .section-tag { display: block; margin-bottom: 12px; }
.wohnzimmer-text h2 { margin-bottom: 20px; }
.wohnzimmer-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.wohnzimmer-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.wohnzimmer-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
.wohnzimmer-feature svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  stroke-width: 2;
}
@media(max-width:900px) {
  .wohnzimmer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wohnzimmer-img-wrap img { height: 340px; }
}

/* ══════════════════════════════════════════════════════
   ── Team Preview Section ──
══════════════════════════════════════════════════════ */
.team-preview-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.team-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.team-preview-text .section-tag { display: block; margin-bottom: 12px; }
.team-preview-text h2 { margin-bottom: 20px; }
.team-preview-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.team-preview-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.team-preview-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 65%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  display: block;
  transition: transform .5s ease;
}
.team-preview-img-wrap:hover img { transform: scale(1.02); }
.team-preview-names {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-mid);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.team-preview-names span:first-child,
.team-preview-names span:last-child { color: var(--white); }
.team-preview-names span:nth-child(2) { color: var(--primary); }
@media(max-width:900px) {
  .team-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-preview-img-wrap img { height: 340px; }
  .team-preview-names { font-size: 0.75rem; padding: 8px 14px; }
}

/* ══════════════════════════════════════════════════════
   ── Angebote Asymmetric Grid ──
══════════════════════════════════════════════════════ */
.angebote-page-section { padding-top: 0; }

.angebote-asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* ── Base card ── */
.angebote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}
.angebote-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* ── Featured (Offener Bereich) — span 2 cols, 2 rows ── */
.angebote-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.angebote-card--featured .angebote-card-img {
  height: 380px;
}

/* ── Escape Room ── */
.angebote-card--escape {
  grid-column: 3;
  grid-row: 1;
}

/* ── Gym ── */
.angebote-card--gym {
  grid-column: 3;
  grid-row: 2;
}

/* ── Wide (Ausflüge) ── */
.angebote-card--wide {
  grid-column: span 3;
}

/* ── Image areas ── */
.angebote-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.angebote-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform .5s ease;
}
.angebote-card:hover .angebote-card-img img { transform: scale(1.05); }

/* ── Escape Room special styling ── */
.angebote-card-img--dark img { filter: brightness(0.7) contrast(1.1); }
.escape-room-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(10,25,47,0.85) 0%, transparent 60%);
}
.escape-glow {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  text-align: center;
  text-shadow: 0 0 20px rgba(230,57,70,0.8), 0 0 40px rgba(230,57,70,0.4);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ── Body ── */
.angebote-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.angebote-card-body h3 { color: var(--white); font-size: 1.2rem; }
.angebote-card-body p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.65; }
.angebote-card-body strong { color: var(--white); }

/* ── Tags ── */
.angebote-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  align-self: flex-start;
}
.angebote-card-tag svg { width: 13px; height: 13px; stroke-width: 2.5; }
.angebote-card-tag--green {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: #34D399;
}
.angebote-card-tag--red {
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: var(--primary);
}
.angebote-card-tag--blue {
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.25);
  color: #60A5FA;
}
.angebote-card-tag--purple {
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: #A78BFA;
}

/* ── Highlights List ── */
.angebote-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.angebote-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.angebote-highlights li svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
  flex-shrink: 0;
  stroke-width: 2.5;
}

/* ── Gym Equipment Row ── */
.gym-equipment-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.gym-eq-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 6px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.gym-eq-item svg { width: 14px; height: 14px; color: #60A5FA; }

/* ── Wide card split layout ── */
.angebote-card--wide { flex-direction: column; }
.angebote-card-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  flex: 1;
}
.angebote-card-split-img {
  overflow: hidden;
  border-right: 1px solid var(--border);
  height: 200px;
}
.angebote-card-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.angebote-card--wide:hover .angebote-card-split-img img { transform: scale(1.05); }
.angebote-card-split-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.angebote-card-split-body h3 { color: var(--white); font-size: 1.2rem; }
.angebote-card-split-body p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.65; }

/* ── Responsive ── */
@media(max-width:1024px) {
  .angebote-asymmetric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .angebote-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .angebote-card--featured .angebote-card-img { height: 280px; }
  .angebote-card--escape { grid-column: 1; grid-row: auto; }
  .angebote-card--gym { grid-column: 2; grid-row: auto; }
  .angebote-card--wide { grid-column: span 2; }
  .angebote-card-split { grid-template-columns: 280px 1fr; }
}
@media(max-width:700px) {
  .angebote-asymmetric-grid {
    grid-template-columns: 1fr;
  }
  .angebote-card--featured,
  .angebote-card--escape,
  .angebote-card--gym,
  .angebote-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .angebote-card--featured .angebote-card-img { height: 220px; }
  .angebote-card-split { grid-template-columns: 1fr; }
  .angebote-card-split-img {
    height: 200px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ══════════════════════════════════════════════════════
   ── Graffiti Hero (Photo Background) ──
══════════════════════════════════════════════════════ */
.graffiti-hero--new {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
}
.graffiti-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.graffiti-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
  filter: brightness(0.55) saturate(1.2);
}
.graffiti-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,25,47,0.3) 0%,
    rgba(10,25,47,0.55) 60%,
    var(--bg) 100%
  );
}
.graffiti-hero--new .graffiti-hero-content {
  position: relative;
  z-index: 2;
}

/* ── Masonry Featured Item ── */
.masonry-item--featured {
  break-inside: avoid;
  margin-bottom: 20px;
}
.masonry-item--featured img {
  border-radius: var(--radius);
}

/* ── Graffiti Showcase Grid ── */
.graffiti-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}
.graffiti-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), transform var(--ease);
}
.graffiti-showcase-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.graffiti-showcase-img-wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.graffiti-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}
.graffiti-showcase-card:hover .graffiti-showcase-img-wrap img {
  transform: scale(1.03);
}
.graffiti-showcase-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.graffiti-showcase-content h3 {
  font-size: 1.4rem;
  color: var(--white);
}
.graffiti-card-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  padding: 4px 10px;
  border-radius: 50px;
}
.graffiti-showcase-content p:not(.graffiti-card-tag) {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}
@media(max-width:850px) {
  .graffiti-showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .graffiti-showcase-img-wrap {
    height: 280px;
  }
}

/* ── Hero Background Layout (Photo Background) ── */
.hero-bg-style {
  position: relative;
  min-height: 90vh;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-bg-style .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-style .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.4) saturate(1.1);
  transition: transform 10s ease;
}
.hero-bg-style:hover .hero-bg img {
  transform: scale(1.05);
}
.hero-bg-style .hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 47, 0.45) 0%,
    rgba(10, 25, 47, 0.7) 65%,
    var(--bg) 100%
  );
}
.hero-bg-style .container {
  z-index: 2;
  position: relative;
}
.hero-bg-style .hero-content {
  max-width: 680px;
}

/* ── Angebote Bento Grid ── */
.angebote-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(380px, auto);
  gap: 30px;
}
.angebote-bento-card {
  background: rgba(23, 42, 69, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
  position: relative;
}
.angebote-bento-card:hover {
  border-color: var(--border-hover);
  background: rgba(23, 42, 69, 0.75);
  transform: translateY(-4px);
}
.angebote-bento-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.angebote-bento-card.highlight {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px var(--primary-glow);
}
.angebote-bento-card.highlight::before {
  content: 'Highlight';
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 12;
  letter-spacing: 1px;
}
.angebote-bento-card .bento-slider,
.angebote-bento-card .bento-card-img-wrap {
  height: 240px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.angebote-bento-card.featured .bento-slider {
  height: 380px; /* taller slider for the featured area */
}
.bento-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.bento-card-content h3 {
  font-size: 1.35rem;
  color: var(--white);
}
.bento-card-content p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Bento Slider Carousel Styles ── */
.bento-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.bento-slider:active {
  cursor: grabbing;
}
.slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform var(--ease);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* prevent drag ghosting */
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), opacity var(--ease);
}
.bento-slider:hover .slider-btn {
  opacity: 1;
}
.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}
.slider-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.slider-btn.prev {
  left: 12px;
}
.slider-btn.next {
  right: 12px;
}
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.slider-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

@media(max-width:992px) {
  .angebote-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .angebote-bento-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .angebote-bento-card.featured .bento-slider {
    height: 280px;
  }
}
@media(max-width:700px) {
  .angebote-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .angebote-bento-card.featured {
    grid-column: span 1;
    grid-row: span 1;
  }
  .slider-btn {
    opacity: 1; /* show buttons on touch devices */
  }
}
