/* ================================
   BAechle — CLEAN FINAL STYLE (ONE SOURCE OF TRUTH)
   bar & café · staufen
   (Carousel + Menu Nav + Mojito-style cards)
================================ */

/* ---------- BASE ---------- */
#baechle-site{
  background:#0b0c10;
  color:rgba(255,255,255,.92);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
#baechle-site *{ box-sizing:border-box; }

.wrap{
  width:min(1120px,92vw);
  margin:0 auto;
}

/* ---------- HEADER ---------- */
#baechle-header{
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:999;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}
.brand strong{
  letter-spacing:.18em;
  font-size:15px;
}
.brand span{
  font-size:13px;
  opacity:.6;
}
#baechle-header .navlinks ul{
  display:flex;
  gap:22px;
  list-style:none;
  margin:0;
  padding:0;
}
#baechle-header .navlinks a{
  color:rgba(255,255,255,.65);
  text-decoration:none !important;
  border-bottom:1px solid transparent;
  padding-bottom:2px;
  font-size:14px;
  transition:.15s ease;
}
#baechle-header .navlinks a:hover{
  color:white;
  border-bottom-color:rgba(255,255,255,.45);
}

/* content offset because header is fixed */
#baechle-content{ padding-top:80px; }

/* ---------- HERO ---------- */
.hero{
  background-image: url("https://u.jimcdn.com/cms/o/sd8b952e9cf78be41/userlayout/img/logo.jpg?t=1773651730");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 80vh;
}
section.hero{
  background-image: url("https://u.jimcdn.com/cms/o/sd8b952e9cf78be41/userlayout/img/logo.jpg?t=1773651730") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 80vh;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-inner{
  position:relative;
  z-index:2;
}
.hero h1{
  font-size:clamp(46px,7vw,78px);
  font-weight:500;
  letter-spacing:.05em;
  color:white;
  text-shadow:0 6px 20px rgba(0,0,0,.6);
  margin:0 0 16px;
}
.hero p{
  opacity:.85;
  max-width:520px;
  line-height:1.6;
  color:rgba(255,255,255,.85);
  margin:0;
}
.hero-actions{
  margin-top:22px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  color:rgba(255,255,255,.85);
  text-decoration:none !important;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  transition:.18s ease;
  letter-spacing:.05em;
}
.btn:hover{
  border-color:rgba(255,138,42,.85);
  color:white;
  background:rgba(255,138,42,.08);
}
.btn.primary{
  border-color:rgba(255,138,42,.9);
  background:rgba(255,138,42,.14);
  color:white;
}
.btn.primary:hover{ background:rgba(255,138,42,.22); }

/* ---------- SECTIONS ---------- */
section{
  padding:100px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
h2{
  font-size:28px;
  color:#ff8a2a;
  margin:0 0 10px;
  letter-spacing:.05em;
}
h3{
  font-size:18px;
  letter-spacing:.05em;
  margin:0 0 8px;
}

/* ---------- MENU TYPO (lighter like you wanted) ---------- */
#menu h3{
  color:rgba(255,255,255,.88);
  font-weight:500;
  letter-spacing:.02em;
  margin:0 0 6px;
}
#menu .menu-intro{
  color:rgba(255,255,255,.55);
  opacity:1;
  max-width:560px;
  margin:0 0 18px;
  line-height:1.55;
  font-size:14px;
}

/* ---------- GRID ---------- */
#menu .drinks{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  margin-top:18px;
}
@media (max-width:980px){
  #menu .drinks{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:640px){
  #menu .drinks{ grid-template-columns:1fr; }
}

/* ---------- MENU SECTIONS (single divider only) ---------- */
#menu .menu-section{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:28px;
  margin-top:28px;
}
#menu .menu-section:first-of-type{
  border-top:none;
  padding-top:0;
  margin-top:8px; /* tight under pills */
}

/* ---------- MENU NAV (sticky under header) ---------- */
:root{
  --baechle-accent:#ff8a2a;
  --header-h:72px; /* fallback if JS doesn't overwrite */
}

#menu{ padding-top:0 !important; margin-top:0 !important; }
#menu .wrap{ padding-top:0 !important; }

#menu .menu-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;

  margin:0 !important;
  padding:10px 0 12px !important;

  border-bottom:1px solid rgba(255,255,255,.08);

  position:sticky;
  top:var(--header-h);
  z-index:80;

  background:rgba(7,10,15,.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

/* pills */
#menu .menu-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;

  color:rgba(255,255,255,.62);
  text-decoration:none !important;
  letter-spacing:.08em;
  font-size:12px;

  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.18);

  transition:
    transform .15s ease,
    border-color .15s ease,
    color .15s ease,
    background .15s ease,
    box-shadow .15s ease;
}
#menu .menu-nav a:hover{
  color:rgba(255,255,255,.92);
  border-color:rgba(255,138,42,.95);
  background:rgba(255,138,42,.10);
  box-shadow:0 10px 24px rgba(0,0,0,.45);
  transform:translateY(-1px);
}
#menu .menu-nav a:active{ transform:translateY(0) scale(.98); }
#menu .menu-nav a:focus{ outline:none; }
#menu .menu-nav a:focus-visible{
  border-color:rgba(255,138,42,.95);
  box-shadow:0 0 0 3px rgba(255,138,42,.22);
}

/* active (from JS .is-active) */
#menu .menu-nav a.is-active{
  color:rgba(255,255,255,.95);
  border-color:rgba(255,138,42,1);
  background:rgba(255,138,42,.14);
  box-shadow:0 0 0 2px rgba(255,138,42,.22);
}
#menu .menu-nav a.is-active:hover{
  background:rgba(255,138,42,.18);
  box-shadow:0 0 0 2px rgba(255,138,42,.30), 0 14px 28px rgba(0,0,0,.5);
  transform:translateY(-2px);
}

/* ---------- MENU MARKERS (logic-only) ---------- */
.menu-marker{
  height:1px;
  margin:0;
  padding:0;
  opacity:0;
  pointer-events:none;
  scroll-margin-top:140px; /* safe fallback */
}

/* ---------- MOJITO-STYLE CARDS (uniform everywhere in menu) ---------- */
#menu .drink-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(17,19,26,.92), rgba(12,14,20,.92));
  box-shadow:0 18px 40px rgba(0,0,0,.55);

  transition:transform .2s ease, box-shadow .2s ease;
}
#menu .drink-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 46px rgba(0,0,0,.62);
}

/* images for single-image cards */
#menu .drink-card > img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .35s ease, filter .35s ease;
  filter:saturate(1.03) contrast(1.03);
}
#menu .drink-card:hover > img{
  transform:scale(1.06);
  filter:saturate(1.08) contrast(1.06);
}

/* overlay info (works for single + carousel slides) */
#menu .drink-card .info{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:18px 18px 16px;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.32) 30%,
      rgba(0,0,0,.82) 100%);
}
#menu .drink-card .info h3,
#menu .drink-card .info h4{
  margin:0 0 6px;
  font-size:18px;
  font-weight:600;
  letter-spacing:.02em;
  color:rgba(255,255,255,.95);
  text-shadow:0 10px 22px rgba(0,0,0,.65);
}
#menu .drink-card .info p{
  margin:0;
  font-size:13px;
  letter-spacing:.06em;
  color:rgba(255,255,255,.62);
  text-shadow:0 10px 22px rgba(0,0,0,.65);
}

/* ---------- BADGES (overlay chip) ---------- */
#menu .drink-card .badge{
  position:absolute;
  right:14px;
  bottom:14px;
  z-index:6;

  display:inline-flex;
  align-items:center;
  padding:6px 10px;

  border-radius:999px;
  font-size:11px;
  letter-spacing:.10em;
  text-transform:lowercase;

  color:rgba(255,255,255,.92);
  background:rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
#menu .drink-card .badge::before{
  content:"";
  width:7px; height:7px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  margin-right:8px;
  opacity:.7;
}
#menu .drink-card .badge.vegan::before{ background:rgba(120,255,170,.8); }
#menu .drink-card .badge.seasonal::before{ background:rgba(255,200,120,.85); }
#menu .drink-card .badge.special::before{ background:rgba(255,140,60,.9); }

/* ---------- CAROUSEL (matches your FIXED JS: uses .carousel-track translateX) ---------- */
#menu .drink-card.has-carousel .carousel{
  position:relative;
  overflow:hidden;
  width:100%;
  border-radius:22px;
  background:#0f1116;
}

/* track is created by JS */
#menu .drink-card.has-carousel .carousel-track{
  display:flex;
  width:100%;
  transition:transform .45s ease;
  will-change:transform;
}

/* each slide = full width */
#menu .drink-card.has-carousel .slide{
  flex:0 0 100%;
  width:100%;
  position:relative;
}

/* slide image */
#menu .drink-card.has-carousel .slide img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .35s ease, filter .35s ease;
  filter:saturate(1.03) contrast(1.03);
}
#menu .drink-card.has-carousel:hover .slide img{
  transform:scale(1.06);
  filter:saturate(1.08) contrast(1.06);
}

/* dots overlay (JS creates buttons .dot inside .dots inside CARD) */
#menu .drink-card.has-carousel .dots{
  position:absolute;
  left:0; right:0;
  bottom:12px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:6;
  pointer-events:auto;
}
#menu .drink-card.has-carousel .dot{
  width:7px;
  height:7px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.40);
  background:rgba(255,255,255,.18);
  padding:0;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
#menu .drink-card.has-carousel .dot:hover{
  transform:scale(1.25);
  border-color:rgba(255,138,42,.85);
}
#menu .drink-card.has-carousel .dot.is-active{
  background:rgba(255,138,42,.9);
  border-color:rgba(255,138,42,.95);
}

/* responsive heights */
@media (max-width:980px){
  #menu .drink-card > img,
  #menu .drink-card.has-carousel .slide img{ height:300px; }
}
@media (max-width:640px){
  #menu .drink-card > img,
  #menu .drink-card.has-carousel .slide img{ height:280px; }
}

/* ---------- FOOTER ---------- */
#baechle-footer{
  padding:60px 0;
  background:#090a0f;
  border-top:1px solid rgba(255,255,255,.12);
}
.footerGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
}
.toplink{ text-align:right; }

/* disable scroll-active highlight */
#menu .menu-nav a.is-active{
  all: unset;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.18);
  color:rgba(255,255,255,.62);
}
/* ================================
   BAechle — DATES + CONTACT (match menu)
================================ */

/* generic section wrapper like menu */
.baechle-section{
  padding: 86px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* headings match your h2 style */
.baechle-section h2{
  font-size: 28px;
  color: #ff8a2a;
  margin: 0 0 10px;
  letter-spacing: .05em;
}

/* lead text similar to menu hero statement */
.section-lead{
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.58);
  line-height: 1.6;
}

/* optional secondary line */
.section-sub{
  margin: 18px 0 22px;
  max-width: 760px;
  color: rgba(255,255,255,.48);
  line-height: 1.6;
}

/* NOTE line */
.section-note{
  margin: 22px 0 0;
  color: rgba(255,255,255,.45);
}

/* ===== Dates hero image (only used in #dates) ===== */
#dates .section-hero{
  padding: 78px 0 56px;
  margin: -86px 0 34px; /* pulls hero up to align with section padding */
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* keep text readable on image */
#dates .section-hero h2{
  margin-top: 0;
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}
#dates .section-hero .section-lead{
  color: rgba(255,255,255,.70);
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}

/* ===== cards grid ===== */
.cards-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 980px){
  .cards-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .cards-grid{ grid-template-columns: 1fr; }
}

/* card style matching your Mojito-ish vibe */
.info-card{
  background: linear-gradient(180deg, rgba(17,19,26,.92), rgba(12,14,20,.92));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.info-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 22px 50px rgba(0,0,0,.62);
}

.info-card__title{
  margin: 10px 0 8px;
  color: rgba(255,255,255,.90);
  font-size: 16px;
  letter-spacing: .02em;
  font-weight: 600;
}

.info-card__text{
  margin: 0;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  font-size: 14px;
}

/* pills (small meta tags) */
.info-card__meta{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: lowercase;
  color: rgba(255,255,255,.78);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}

.pill--accent{
  color: rgba(255,255,255,.92);
  border-color: rgba(255,138,42,.35);
  background: rgba(255,138,42,.10);
}

.pill--muted{
  color: rgba(255,255,255,.70);
}

/* card actions */
.info-card__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
/* =========================================
   BAECHLE — FIX DATES + CONTACT (works with current markup)
   Paste at VERY END of your CSS
========================================= */

:root{
  --baechle-accent:#ff8a2a;
  --baechle-card: linear-gradient(180deg, rgba(17,19,26,.92), rgba(12,14,20,.92));
  --baechle-line: rgba(255,255,255,.08);
  --baechle-text: rgba(255,255,255,.88);
  --baechle-sub: rgba(255,255,255,.55);
}

/* ===== Section baseline like menu ===== */
#dates, #contact{
  padding: 86px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: transparent;
}

/* ===== Dates HERO image on top (ONLY dates) ===== */
#dates{
  position: relative;
}
#dates::before{
  content:"";
  display:block;
  height: 260px;
  border-radius: 18px;
  margin: 0 auto 34px;
  width: min(1120px, 92vw);

  background:
    linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.88)),
    url("https://u.jimcdn.com/cms/o/sd8b952e9cf78be41/userlayout/img/wanddeko.jpg?t=1773687195")
    center/cover no-repeat;

  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
}

/* Headings look like menu */
#dates h2, #contact h2{
  font-size: 28px;
  color: var(--baechle-accent);
  margin: 0 0 10px;
  letter-spacing: .05em;
}

/* General text refinement inside these sections */
#dates p, #contact p,
#dates li, #contact li{
  color: var(--baechle-sub);
  line-height: 1.6;
}

/* ===== Turn the existing "event blocks" into cards =====
   We don’t know your exact Jimdo markup, so we target common patterns:
   - direct child blocks inside section/wrap
   - blocks that contain a button/link
   - common "event/list/item" class names
*/
#dates .wrap > div,
#dates .wrap > article,
#dates .wrap > section,
#dates .wrap > ul,
#dates .wrap > ol{
  /* keep neutral; we style actual items below */
}

/* Most Jimdo event widgets render repeated items as div/section/article.
   This styles many possible item containers safely. */
#dates :is(.event, .event-item, .dates-item, .date-item, .item, .list-item, article, .cc-event, .j-event, .j-list-item, .jimdo-event),
#dates .wrap > div{
  background: var(--baechle-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  margin: 0 0 18px;
  overflow: hidden;
}

/* If your dates are inside list items, make them cards too */
#dates ul, #dates ol{ padding-left: 0; margin: 0; list-style: none; }
#dates li{
  background: var(--baechle-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  margin: 0 0 18px;
}

/* Titles inside dates: make clearer */
#dates h3, #dates h4, #dates strong{
  color: var(--baechle-text);
  letter-spacing: .02em;
}

/* That small meta line like "Every Friday · starts 4:00 PM" */
#dates :is(.meta, .date, .time, .when, .subline, .event-meta, .event-date, .event-time),
#dates p:first-of-type{
  color: rgba(255,255,255,.45);
}

/* ===== Buttons in dates: use your Baechle pill style ===== */
#dates a, #dates button{
  text-decoration: none !important;
}

#dates a:is(.btn, .button, .cta, .j-calltoaction, .jimdo-btn),
#dates button,
#dates a[href*="reserve"],
#dates a[href*="request"]{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.80);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(6px);

  transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

#dates a:is(.btn, .button, .cta, .j-calltoaction, .jimdo-btn):hover,
#dates button:hover,
#dates a[href*="reserve"]:hover,
#dates a[href*="request"]:hover{
  border-color: rgba(255,138,42,.95);
  color: rgba(255,255,255,.95);
  background: rgba(255,138,42,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
  transform: translateY(-1px);
}

/* ===== CONTACT formatting like menu ===== */
#contact .wrap{
  /* keep your wrap width */
}

#contact :is(.cards-grid, .grid, .columns){
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* If contact is just paragraphs, still make it look clean */
#contact .wrap > *{
  color: var(--baechle-sub);
}

/* Any contact blocks become cards */
#contact :is(.info-card, .card, .box, article, .contact-item, .column, .grid-item),
#contact .wrap > div{
  background: var(--baechle-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  margin: 0 0 18px;
}

/* Contact buttons match menu buttons */
#contact a.btn,
#contact a.button,
#contact button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  color:rgba(255,255,255,.85);
  text-decoration:none !important;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  transition:.18s ease;
  letter-spacing:.05em;
}
#contact a.btn:hover,
#contact a.button:hover,
#contact button:hover{
  border-color:rgba(255,138,42,.85);
  color:white;
  background:rgba(255,138,42,.08);
}

/* Responsive */
@media (max-width: 980px){
  #contact :is(.cards-grid, .grid, .columns){ grid-template-columns: repeat(2, minmax(0,1fr)); }
  #dates::before{ height: 220px; }
}
@media (max-width: 640px){
  #contact :is(.cards-grid, .grid, .columns){ grid-template-columns: 1fr; }
  #dates::before{ height: 200px; border-radius: 16px; }
}

/* =========================================
   BAECHLE — DATES: 3-COLUMN GRID (KEEP HERO IMAGE)
   Paste at VERY END of your CSS
========================================= */

/* Keep your hero image as-is (from previous #dates::before) */

/* --- 3-column layout container --- */
#dates .wrap{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

/* Make sure the headline spans all columns */
#dates .wrap > h2{
  grid-column: 1 / -1;
}

/* If there is an intro paragraph under "Dates", span full width */
#dates .wrap > p{
  grid-column: 1 / -1;
  margin-bottom: 12px;
}

/* --- Turn each event into a card (works with common Jimdo markup) ---
   We style typical "event blocks" AND also safe direct children.
*/
#dates .wrap > :is(div, article, section, li){
  background: linear-gradient(180deg, rgba(17,19,26,.92), rgba(12,14,20,.92));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  overflow: hidden;
}

/* BUT: do NOT style containers/lists themselves as a card */
#dates .wrap > ul,
#dates .wrap > ol{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* If events are list items, make list itself a grid that spans full width */
#dates .wrap > ul,
#dates .wrap > ol{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
}

/* List items become cards */
#dates .wrap > ul > li,
#dates .wrap > ol > li{
  background: linear-gradient(180deg, rgba(17,19,26,.92), rgba(12,14,20,.92));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
}

/* Buttons in dates: same Baechle pill style */
#dates a, #dates button{ text-decoration: none !important; }

#dates a:is(.btn, .button, .cta, .j-calltoaction, .jimdo-btn),
#dates button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  color:rgba(255,255,255,.80);
  background:rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
  transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

#dates a:is(.btn, .button, .cta, .j-calltoaction, .jimdo-btn):hover,
#dates button:hover{
  border-color: rgba(255,138,42,.95);
  color: rgba(255,255,255,.95);
  background: rgba(255,138,42,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
  transform: translateY(-1px);
}

/* Responsive like menu */
@media (max-width: 980px){
  #dates .wrap{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #dates .wrap > ul, #dates .wrap > ol{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  #dates .wrap{ grid-template-columns: 1fr; }
  #dates .wrap > ul, #dates .wrap > ol{ grid-template-columns: 1fr; }
}

/* =========================================
   DATES — split single block into 3 cards
   keeps your exact design
========================================= */

/* container becomes 3-column grid */
#dates .wrap{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:start;
}

/* headline spans full width */
#dates h2{
  grid-column:1 / -1;
}

/* find the ONE event block and split its children */
#dates .wrap > div{
  display:contents; /* children behave like grid items */
}

/* each event = card */
#dates .wrap > div > *{
  background:linear-gradient(180deg,rgba(17,19,26,.92),rgba(12,14,20,.92));
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:0 18px 40px rgba(0,0,0,.55);
}

/* spacing inside card */
#dates .wrap > div > * > * + *{
  margin-top:8px;
}

/* buttons keep Baechle style */
#dates .wrap > div > * a,
#dates .wrap > div > * button{
  margin-top:12px;
}

/* responsive */
@media(max-width:980px){
  #dates .wrap{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:640px){
  #dates .wrap{
    grid-template-columns:1fr;
  }
}

/* ================================
   CONTACT — 3 COLUMN BAeCHLE STYLE
================================ */

#contact .contact-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:start;
}

#contact .contact-card{
  background:linear-gradient(180deg,rgba(17,19,26,.92),rgba(12,14,20,.92));
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.55);
}

#contact .contact-media img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  filter:saturate(1.02) contrast(1.03);
  transform:scale(1);
  transition:transform .35s ease, filter .35s ease;
}

#contact .contact-card:hover .contact-media img{
  transform:scale(1.04);
  filter:saturate(1.06) contrast(1.06);
}

#contact .contact-body{
  padding:18px 18px 16px;
}

#contact .contact-eyebrow{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
  margin-bottom:8px;
}

#contact h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:600;
  color:rgba(255,255,255,.92);
}

#contact p{
  margin:0 0 12px;
  color:rgba(255,255,255,.62);
  line-height:1.55;
}

#contact .contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

#contact .contact-meta{
  margin-top:14px;
  color:rgba(255,255,255,.62);
  font-size:13px;
  line-height:1.6;
}

#contact .contact-meta strong{
  color:rgba(255,255,255,.86);
  font-weight:600;
}

/* opening hours table */
#contact .hours{
  margin-top:10px;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:10px;
}
#contact .hours .row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:6px 0;
  color:rgba(255,255,255,.66);
  font-size:13px;
}
#contact .hours .row span:first-child{
  color:rgba(255,255,255,.80);
}

/* Map same height as images */
#contact .map-embed{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  height:220px;           /* EXACT same as images */
}

#contact .map-embed iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.btn {
    border: 1px solid #fff;
    color: #fff;
}

.btn:hover {
    background: #ff6a00; /* dein Orange */
    border-color: #ff6a00;
    color: #000;
}

/* responsive */
@media(max-width:980px){
  #contact .contact-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:640px){
  #contact .contact-grid{ grid-template-columns:1fr; }
}

#contact .contact-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:start;
}

#contact .contact-card{
  background:linear-gradient(180deg,rgba(17,19,26,.92),rgba(12,14,20,.92));
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.55);
}

/* image */
#contact .contact-media img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition:transform .35s ease, filter .35s ease;
  filter:saturate(1.02) contrast(1.03);
}

#contact .contact-card:hover .contact-media img{
  transform:scale(1.04);
  filter:saturate(1.06) contrast(1.06);
}

/* body */
#contact .contact-body{
  padding:18px 18px 16px;
}

#contact .contact-eyebrow{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
  margin-bottom:8px;
}

#contact h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:600;
  color:rgba(255,255,255,.92);
}

#contact p{
  margin:0 0 12px;
  color:rgba(255,255,255,.62);
  line-height:1.55;
}

#contact .contact-meta{
  margin-top:10px;
  color:rgba(255,255,255,.66);
  font-size:14px;
  line-height:1.6;
}

#contact .contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

/* hours */
#contact .hours{
  margin-top:8px;
}
#contact .hours .row{
  display:flex;
  justify-content:space-between;
  padding:6px 0;
  color:rgba(255,255,255,.70);
  font-size:14px;
}

/* map */
#contact .map-embed{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
#contact .map-embed iframe{
  width:100%;
  height:200px;
  border:0;
  display:block;
}

/* responsive */
@media(max-width:980px){
  #contact .contact-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:640px){
  #contact .contact-grid{ grid-template-columns:1fr; }
}

:root{
  --contact-media-h:220px;
}

#contact .contact-media img{
  height:var(--contact-media-h);
}

#contact .map-embed{
  height:var(--contact-media-h);
}

/* =========================
   CONTACT — equal height cards + equal media height
   ========================= */

#contact .contact-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  align-items:stretch; /* IMPORTANT: same height columns */
}

/* each card becomes a full-height column */
#contact .contact-card{
  display:flex;
  flex-direction:column;
  height:100%;
  border-radius:18px;
  overflow:hidden;
}

/* media wrapper = same height everywhere */
#contact .contact-media{
  height:220px;              /* <- ONE single source of truth */
  flex:0 0 auto;
  overflow:hidden;
  border-radius:18px 18px 0 0;
}

/* image fits exactly */
#contact .contact-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* map fits exactly */
#contact .contact-media iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* body fills the remaining space so all cards end same height */
#contact .contact-body{
  flex:1 1 auto;            /* IMPORTANT */
  display:flex;
  flex-direction:column;
  padding:22px;
}

/* push last button / last block down if needed (optional but nice) */
#contact .contact-body .contact-actions{
  margin-top:auto;
}

/* responsive */
@media (max-width: 980px){
  #contact .contact-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  #contact .contact-grid{ grid-template-columns:1fr; }
}
.about-content {
    max-width: 560px;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

.about-text strong {
    color: #fff;
    font-weight: 600;
}

.about-text.secondary {
    margin-top: 18px;
}

.about-cta {
    margin-top: 24px;
}

.about-text {
    color: rgba(255,255,255,0.85); /* statt opacity */
}
.about-text {
    font-size: 18px;
}

.about-text.secondary {
    font-size: 16px;
    opacity: 0.7;
}

/* ---------- MOBILE ---------- */
@media(max-width:800px){
  .hero{ min-height:85vh; }
  .nav{ padding:14px 0; }
  #baechle-header .navlinks ul{ gap:14px; }
  .brand strong{ font-size:13px; letter-spacing:.16em; }
  #menu .menu-nav a{ padding:9px 14px; font-size:13px; }
}

html{ scroll-behavior:smooth; }