/* Balaton360 – main.css – mobile first */
:root {
  --linen:       #F2EDE0;
  --linen-dark:  #E4DDD0;
  --bark:        #8B6F52;
  --bark-light:  #C4A882;
  --hu-red:      #C1303A;
  --hu-red-dark: #9B2530;
  --hu-green:    #3A6B35;
  --hu-green-dk: #2A5027;
  --lake:        #5B9EC9;
  --lake-light:  #A8D0E8;
  --lake-pale:   #EAF4FB;
  --text:        #1C1C1C;
  --muted:       #6B6B6B;
  --white:       #FFFFFF;
  --r:           10px;
  --shadow:      0 3px 18px rgba(0,0,0,.09);
  --nav-h:       56px;
  --hero-h:      130px;
  --filter-h:    48px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--linen); color: var(--text); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TRICOLOR TOP ── */
.tricolor { height: 4px; background: linear-gradient(to right, var(--hu-red) 33.3%, var(--white) 33.3% 66.6%, var(--hu-green) 66.6%); position: fixed; top: 0; left: 0; right: 0; z-index: 1001; }

/* ── NAV ── */
#nav {
  position: fixed; top: 4px; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: var(--nav-h);
  background: rgba(242,237,224,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linen-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--hu-green-dk); }
.logo-360 { color: var(--hu-red); }
#nav-menu { display: flex; gap: 1.5rem; list-style: none; }
#nav-menu a { font-size: .83rem; font-weight: 500; color: var(--text); opacity: .7; transition: opacity .2s; }
#nav-menu a:hover { opacity: 1; }
.nav-cta { background: var(--hu-red) !important; color: var(--white) !important; opacity: 1 !important; padding: .38rem .95rem; border-radius: 5px; }
.nav-cta:hover { background: var(--hu-red-dark) !important; }
.nav-langs { display: flex; gap: .4rem; }
.nav-langs a { font-size: .7rem; font-weight: 600; color: var(--muted); padding: .18rem .4rem; border-radius: 3px; transition: all .2s; }
.nav-langs a.active { background: var(--hu-green); color: var(--white); }
.nav-langs a:hover:not(.active) { color: var(--text); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: .4rem; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── HERO ── */
.hero {
  margin-top: calc(var(--nav-h) + 4px);
  height: var(--hero-h);
  background: var(--hu-green-dk);
  display: flex; align-items: center;
  padding: 0 3rem; gap: 2rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(120deg, transparent 0%, rgba(193,48,58,.15) 50%, rgba(90,158,201,.12) 100%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 9px;
  background: linear-gradient(to bottom,
    var(--hu-red)   0px 3px,
    var(--white)    3px 6px,
    var(--hu-green) 6px 9px);
}
.hero-content { position: relative; z-index: 2; flex: 1; }
.hero-eyebrow { font-family: 'DM Mono', monospace; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bark-light); margin-bottom: .4rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--linen); line-height: 1.15; }
.hero h1 em { font-style: italic; color: var(--hu-red); }
.hero-sub { font-size: .8rem; color: rgba(242,237,224,.6); margin-top: .35rem; }
.hero-cta {
  margin-left: auto; position: relative; z-index: 2; flex-shrink: 0;
  background: var(--hu-red); color: var(--white);
  padding: .75rem 1.6rem; border-radius: 7px;
  font-weight: 600; font-size: .9rem; white-space: nowrap;
  border: 2px solid rgba(255,255,255,.2);
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: .4rem;
}
.hero-cta:hover { background: var(--hu-red-dark); transform: translateY(-1px); }

/* ── FILTER BAR ── */
.filter-bar {
  background: var(--white); border-bottom: 2px solid var(--linen-dark);
  height: var(--filter-h);
  display: flex; align-items: center; padding: 0 1rem; gap: .5rem;
  position: sticky; top: calc(var(--nav-h) + 4px); z-index: 100;
  overflow-x: auto; scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0; display: flex; align-items: center; gap: .3rem;
  padding: .35rem .85rem; border-radius: 20px;
  border: 1.5px solid var(--linen-dark); background: var(--white);
  font-size: .78rem; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif; color: var(--muted);
  white-space: nowrap; transition: all .16s;
}
.cat-btn:hover { border-color: var(--hu-green); color: var(--hu-green); }
.cat-btn.active                      { background: var(--hu-green);    border-color: var(--hu-green);    color: var(--white); }
.cat-btn[data-cat="house"].active    { background: var(--lake);        border-color: var(--lake); }
.cat-btn[data-cat="food"].active     { background: var(--hu-red);      border-color: var(--hu-red); }
.cat-btn[data-cat="beach"].active    { background: var(--hu-green);    border-color: var(--hu-green); }
.cat-btn[data-cat="tour"].active     { background: var(--hu-green-dk); border-color: var(--hu-green-dk); }
.cat-btn[data-cat="activity"].active { background: var(--bark);        border-color: var(--bark); }
.cat-btn[data-cat="kids"].active     { background: #d97706;           border-color: #d97706; }
.filter-div { width: 1px; height: 20px; background: var(--linen-dark); flex-shrink: 0; }

/* ── MAP + LIST ── */
.map-list {
  display: grid; grid-template-columns: 1fr 360px;
  height: calc(100svh - var(--nav-h) - 4px - var(--hero-h) - var(--filter-h));
}
#main-map { width: 100%; height: 100%; }

.listing-sidebar {
  background: var(--white); border-left: 1px solid var(--linen-dark);
  display: flex; flex-direction: column; overflow: hidden;
}
.sidebar-header {
  padding: .75rem 1rem; border-bottom: 1px solid var(--linen-dark);
  display: flex; align-items: center; gap: .6rem;
}
.sidebar-search { flex: 1; position: relative; }
.sidebar-search input {
  width: 100%; padding: .48rem .85rem .48rem 2rem;
  border: 1.5px solid var(--linen-dark); border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: .82rem;
  background: var(--linen); outline: none; transition: border-color .2s;
}
.sidebar-search input:focus { border-color: var(--hu-green); background: var(--white); }
.sidebar-search::before { content: '🔍'; position: absolute; left: .55rem; top: 50%; transform: translateY(-50%); font-size: .72rem; pointer-events: none; }
.sidebar-count { font-size: .7rem; color: var(--muted); white-space: nowrap; }
.listing-list { flex: 1; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--linen-dark) transparent; }

.listing-item {
  display: flex; gap: .7rem; padding: .8rem .9rem;
  border-bottom: 1px solid var(--linen);
  cursor: pointer; transition: background .14s; color: var(--text);
}
.listing-item:hover { background: var(--lake-pale); }
.listing-item.active { background: var(--lake-pale); border-left: 3px solid var(--hu-green); padding-left: calc(.9rem - 1px); }
.l-thumb { width: 50px; height: 50px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.t-house    { background: linear-gradient(135deg, var(--lake-light), var(--lake)); }
.t-food     { background: linear-gradient(135deg, #f5c09a, var(--hu-red)); }
.t-beach    { background: linear-gradient(135deg, #cce8aa, var(--hu-green)); }
.t-tour     { background: linear-gradient(135deg, #b8d498, var(--hu-green-dk)); }
.t-activity { background: linear-gradient(135deg, #e0d0b8, var(--bark)); }
.t-kids     { background: linear-gradient(135deg, #fde68a, #d97706); }
.l-info { flex: 1; min-width: 0; }
.l-name { font-weight: 600; font-size: .84rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--hu-green-dk); }
.l-loc  { font-size: .7rem; color: var(--muted); margin-top: .1rem; }
.l-meta { display: flex; justify-content: space-between; align-items: center; margin-top: .3rem; }
.l-price { font-weight: 700; font-size: .8rem; color: var(--hu-red); }
.l-stars { font-size: .7rem; color: #e8a020; }
.l-badge { display: inline-block; font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .12rem .45rem; border-radius: 3px; color: var(--white); margin-top: .28rem; }
.b-aff  { background: var(--lake); }
.b-paid { background: var(--hu-red); }
.b-free { background: var(--hu-green); }

/* ── MOBILE TOGGLE ── */
.mob-toggle {
  display: none;
  position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  z-index: 900; background: var(--hu-green-dk); color: var(--white);
  border: none; border-radius: 30px; padding: .65rem 1.6rem;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 600;
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.28);
  align-items: center; gap: .5rem; white-space: nowrap; transition: background .2s;
}
.mob-toggle.list-mode { background: var(--hu-red); }

/* ── SINGLE LISTING ── */
.breadcrumb { padding: 1rem 1.5rem; font-size: .78rem; color: var(--muted); }
.breadcrumb a { color: var(--hu-green); }
.listing-page { padding-top: calc(var(--nav-h) + 4px); }
.listing-hero-img { width: 100%; height: 320px; object-fit: cover; }
.listing-badge { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 4px; color: var(--white); }
.badge-affiliate { background: var(--lake); }
.badge-paid { background: var(--hu-red); }
.listing-body { max-width: 1100px; margin: 0 auto; padding: 2rem 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; }
.listing-type-pill { display: inline-block; background: var(--lake-pale); color: var(--lake); font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 3px; margin-bottom: .6rem; }
.listing-page h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--hu-green-dk); margin-bottom: .5rem; }
.listing-stars { color: #e8a020; font-size: 1.1rem; margin-bottom: 1rem; }
.listing-desc { font-size: .9rem; line-height: 1.8; color: var(--text); margin: 1rem 0 1.5rem; }
.sidebar-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--hu-green-dk); margin-bottom: 1rem; }
.btn-book-now { display: block; background: var(--hu-red); color: var(--white); padding: .9rem; border-radius: 8px; font-size: .95rem; font-weight: 700; text-align: center; transition: background .2s; margin-bottom: .5rem; }
.btn-book-now:hover { background: var(--hu-red-dark); }
.affiliate-hint { font-size: .72rem; color: var(--muted); text-align: center; margin-bottom: 1rem; }
#listing-map { height: 200px; border-radius: 8px; margin-top: 1rem; }

/* ── TOOLS ── */
.tools-section { padding: 4rem 5rem; background: var(--hu-green-dk); }
.sec-eyebrow { font-family: 'DM Mono', monospace; font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bark-light); margin-bottom: .4rem; }
.sec-title { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--linen); margin-bottom: 1.8rem; }
.tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.tool-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 1.5rem; display: block; transition: background .2s, transform .2s; }
.tool-card:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.tool-icon { width: 40px; height: 40px; background: var(--hu-red); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: .85rem; font-size: 1.15rem; }
.tool-name { font-family: 'Playfair Display', serif; font-size: .92rem; color: var(--linen); margin-bottom: .3rem; }
.tool-desc { font-size: .78rem; color: rgba(242,237,224,.52); line-height: 1.55; }

/* ── CTA SECTION ── */
.cta-section { padding: 3rem 5rem; background: var(--linen); display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.cta-box { background: var(--white); border-radius: 12px; padding: 1.8rem; border: 1.5px solid var(--linen-dark); transition: box-shadow .2s; }
.cta-box:hover { box-shadow: var(--shadow); }
.cta-icon { font-size: 2rem; margin-bottom: .7rem; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--hu-green-dk); margin-bottom: .45rem; }
.cta-desc  { font-size: .83rem; color: var(--muted); line-height: 1.7; margin-bottom: .9rem; }
.cta-price { font-weight: 700; font-size: .95rem; color: var(--hu-red); margin-bottom: .9rem; }
.btn-green { display: inline-block; background: var(--hu-green); color: var(--white); padding: .6rem 1.3rem; border-radius: 6px; font-size: .85rem; font-weight: 600; transition: background .2s; }
.btn-green:hover { background: var(--hu-green-dk); }
.btn-outline-green { display: inline-block; border: 1.5px solid var(--hu-green); color: var(--hu-green); padding: .6rem 1.3rem; border-radius: 6px; font-size: .85rem; font-weight: 600; transition: all .2s; }
.btn-outline-green:hover { background: var(--hu-green); color: var(--white); }

/* ── AFF BANNER ── */
.aff-banner { margin: 0 5rem 4rem; background: linear-gradient(135deg, var(--hu-red), var(--hu-red-dark)); border-radius: 14px; padding: 2.2rem 3rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.aff-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); line-height: 1.3; }
.aff-title em { font-style: italic; opacity: .85; }
.aff-btn { background: var(--white); color: var(--hu-red); padding: .85rem 2rem; border-radius: 6px; font-weight: 700; font-size: .88rem; white-space: nowrap; flex-shrink: 0; transition: transform .15s; display: inline-block; }
.aff-btn:hover { transform: scale(1.03); }

/* ── FOOTER ── */
footer { background: var(--hu-green-dk); color: rgba(242,237,224,.55); padding: 4rem 5rem 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--linen); display: block; margin-bottom: .7rem; }
.footer-logo .logo-360 { color: var(--hu-red); }
.footer-tag { font-size: .8rem; line-height: 1.75; color: rgba(242,237,224,.42); max-width: 230px; }
.footer-col h4 { font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(242,237,224,.32); margin-bottom: .8rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { font-size: .8rem; color: rgba(242,237,224,.52); transition: color .2s; }
.footer-col a:hover { color: var(--linen); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; font-size: .73rem; color: rgba(242,237,224,.3); }
.footer-bottom a { color: rgba(242,237,224,.38); }
.lang-sw { display: flex; gap: .4rem; }
.lang-sw a { font-size: .73rem; color: rgba(242,237,224,.38); padding: .18rem .4rem; border-radius: 3px; transition: all .2s; }
.lang-sw a.active { background: var(--hu-red); color: var(--white); }
.lang-sw a:hover:not(.active) { color: var(--linen); }

/* ── ADMIN ── */
.admin-wrap { padding: calc(var(--nav-h) + 1.5rem) 2rem 3rem; max-width: 900px; margin: 0 auto; }
.admin-wrap h1 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--hu-green-dk); margin-bottom: 1.5rem; }
.admin-card { background: var(--white); border-radius: var(--r); padding: 1.5rem; margin-bottom: 1.5rem; border: 1px solid var(--linen-dark); }
.admin-card h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--hu-green-dk); margin-bottom: .75rem; }
.admin-card pre { background: var(--linen); padding: 1rem; border-radius: 6px; font-size: .78rem; overflow-x: auto; margin-top: .75rem; }
.flash-ok  { background: #d1fae5; color: #065f46; padding: .75rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: .875rem; }
.flash-err { background: #fee2e2; color: #991b1b; padding: .75rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: .875rem; }
.btn-admin { background: var(--hu-green); color: var(--white); padding: .6rem 1.4rem; border: none; border-radius: 6px; font-size: .875rem; font-weight: 600; cursor: pointer; transition: background .2s; font-family: 'DM Sans', sans-serif; margin-top: .75rem; }
.btn-admin:hover { background: var(--hu-green-dk); }
.btn-admin-outline { display: inline-block; border: 1.5px solid var(--hu-green); color: var(--hu-green); padding: .5rem 1.2rem; border-radius: 6px; font-size: .875rem; font-weight: 600; margin-top: .5rem; }

/* ── LEAFLET ── */
.leaflet-popup-content-wrapper { border-radius: 8px !important; box-shadow: var(--shadow) !important; }
.leaflet-popup-content { margin: 10px 12px !important; }

/* ── MOBILE ── */
@media (max-width: 860px) {
  #nav-menu { display: none; }
  #nav-menu.open { display: flex; flex-direction: column; position: fixed; top: calc(var(--nav-h) + 4px); left: 0; right: 0; background: var(--white); list-style: none; padding: .8rem 0; border-bottom: 1px solid var(--linen-dark); box-shadow: var(--shadow); z-index: 999; }
  #nav-menu.open li a { display: block; padding: .65rem 1.4rem; font-size: .9rem; opacity: .85; }
  #nav-menu.open .nav-cta { margin: .4rem 1.4rem; text-align: center; border-radius: 5px; padding: .55rem 1rem; }
  .nav-burger { display: flex; }

  :root { --hero-h: auto; }
  .hero { height: auto; padding: 1.2rem 1.2rem 1.8rem; flex-direction: column; align-items: flex-start; gap: .8rem; }
  .hero-cta { margin-left: 0; width: 100%; justify-content: center; }

  .map-list { grid-template-columns: 1fr; height: calc(100svh - var(--nav-h) - 4px - var(--filter-h) - 100px); }
  .listing-sidebar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
    height: 62svh; border-left: none; border-top: 2px solid var(--linen-dark);
    border-radius: 14px 14px 0 0; box-shadow: 0 -4px 30px rgba(0,0,0,.15);
  }
  .listing-sidebar.open { display: flex; }
  .mob-toggle { display: flex !important; }

  .tools-section { padding: 2.5rem 1.2rem; }
  .tools-grid { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .cta-section { grid-template-columns: 1fr; padding: 2rem 1.2rem; }
  .aff-banner { margin: 0 1.2rem 2.5rem; flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .aff-title { font-size: 1.3rem; }
  footer { padding: 2.5rem 1.2rem 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .7rem; text-align: center; }
  .listing-body { grid-template-columns: 1fr; }
}

@media (min-width: 861px) {
  .nav-burger { display: none !important; }
}

/* ── PAGE WRAPPER ── */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: calc(var(--nav-h) + 4px + 1.5rem) 1.5rem 4rem; }

/* ── PAGE HEADER ── */
.page-h1   { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--hu-green-dk); line-height: 1.15; margin-bottom: .6rem; }
.page-sub  { font-size: .95rem; color: var(--muted); line-height: 1.75; max-width: 600px; }
.sec-eyebrow { font-family: 'DM Mono', monospace; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--hu-red); margin-bottom: .4rem; }

/* ── BLOG ── */
.blog-header { padding: 1.5rem 0 1rem; }
.blog-cats { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cat-pill { padding: .35rem .85rem; border-radius: 20px; border: 1.5px solid var(--linen-dark); font-size: .78rem; font-weight: 500; color: var(--muted); transition: all .16s; }
.cat-pill:hover { border-color: var(--hu-green); color: var(--hu-green); }
.cat-pill.active { background: var(--hu-green); border-color: var(--hu-green); color: var(--white); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card.featured { grid-column: span 2; }
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.13); }
.blog-card-img { display: block; position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.blog-card.featured .blog-card-img img { height: 280px; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-cat { position: absolute; top: .75rem; left: .75rem; background: var(--hu-red); color: var(--white); font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .2rem .55rem; border-radius: 3px; }
.blog-card-body { padding: 1.2rem 1.4rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.4; margin-bottom: .5rem; }
.blog-card.featured .blog-card-title { font-size: 1.3rem; }
.blog-card-title a { color: var(--hu-green-dk); }
.blog-card-title a:hover { color: var(--hu-red); }
.blog-card-excerpt { font-size: .83rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: .8rem; }
.blog-card-meta { font-size: .72rem; color: var(--muted); margin-bottom: .6rem; }
.blog-read-more { font-size: .82rem; font-weight: 600; color: var(--hu-green); display: inline-flex; align-items: center; gap: .3rem; transition: gap .15s; }
.blog-read-more:hover { gap: .5rem; color: var(--hu-green-dk); }

/* ── ARTICLE ── */
.article-wrap { max-width: 1100px; margin: 0 auto; padding: calc(var(--nav-h) + 4px + 1rem) 1.5rem 4rem; }
.article-header { margin-bottom: 1.5rem; }
.article-cat { display: inline-block; background: var(--hu-red); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .22rem .6rem; border-radius: 3px; margin-bottom: .75rem; }
.article-h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--hu-green-dk); line-height: 1.15; margin-bottom: .6rem; }
.article-meta { font-size: .78rem; color: var(--muted); }
.article-hero-img { border-radius: 12px; overflow: hidden; margin-bottom: 2.5rem; }
.article-hero-img img { width: 100%; max-height: 480px; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; }
.article-content { font-size: .95rem; line-height: 1.85; color: var(--text); }
.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--hu-green-dk); margin: 2rem 0 .75rem; }
.article-content h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--hu-green-dk); margin: 1.5rem 0 .5rem; }
.article-content p { margin-bottom: 1.2rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-content li { margin-bottom: .4rem; }
.article-affiliate-box { background: var(--lake-pale); border: 1.5px solid var(--lake-light); border-radius: 10px; padding: 1.2rem 1.4rem; display: flex; align-items: center; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; }
.aab-icon { font-size: 2rem; flex-shrink: 0; }
.article-affiliate-box p { font-size: .83rem; color: var(--muted); margin: .3rem 0 0; }
.btn-red-sm { background: var(--hu-red); color: var(--white); padding: .6rem 1.2rem; border-radius: 6px; font-size: .84rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; transition: background .2s; display: inline-block; }
.btn-red-sm:hover { background: var(--hu-red-dark); }

/* ── ARTICLE SIDEBAR ── */
.article-sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
.sidebar-widget { background: var(--white); border-radius: 10px; padding: 1.2rem; border: 1.5px solid var(--linen-dark); }
.widget-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--hu-green-dk); margin-bottom: .85rem; }
.sidebar-listing { display: flex; gap: .65rem; align-items: center; padding: .55rem 0; border-bottom: 1px solid var(--linen); text-decoration: none; color: var(--text); transition: background .14s; }
.sidebar-listing:last-of-type { border-bottom: none; }
.sidebar-listing:hover { opacity: .8; }
.sl-icon { width: 38px; height: 38px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.sl-name { font-size: .82rem; font-weight: 600; color: var(--hu-green-dk); }
.sl-price { font-size: .74rem; color: var(--hu-red); font-weight: 600; }
.widget-more { display: block; text-align: center; font-size: .78rem; font-weight: 600; color: var(--hu-green); margin-top: .75rem; }
.tool-link { display: block; font-size: .84rem; color: var(--text); padding: .4rem 0; border-bottom: 1px solid var(--linen); text-decoration: none; transition: color .15s; }
.tool-link:hover { color: var(--hu-green); }
.tool-link:last-child { border-bottom: none; }

/* ── RELATED POSTS ── */
.related-posts { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--linen-dark); }
.related-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--hu-green-dk); margin-bottom: 1.2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.related-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: var(--text); transition: transform .2s; }
.related-card:hover { transform: translateY(-3px); }
.related-card img { width: 100%; height: 140px; object-fit: cover; }
.related-card-body { padding: .85rem 1rem; }
.related-title-txt { font-size: .84rem; font-weight: 600; color: var(--hu-green-dk); line-height: 1.4; margin-bottom: .3rem; }
.related-date { font-size: .72rem; color: var(--muted); }

/* ── SINGLE LISTING (improved) ── */
.listing-page .page-wrap { padding-top: calc(var(--nav-h) + 4px); }
.listing-hero-wrap { position: relative; }
.listing-hero-img { width: 100%; height: 340px; object-fit: cover; }
.listing-badge { position: absolute; top: .85rem; left: .85rem; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 4px; color: var(--white); }
.badge-affiliate { background: var(--lake); }
.badge-paid      { background: var(--hu-red); }
.badge-free      { background: var(--hu-green); }
.listing-body { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; max-width: 1200px; margin: 0 auto; padding: 1.5rem 1.5rem 4rem; }
.listing-type-pill { display: inline-block; background: var(--lake-pale); color: var(--lake); font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 3px; margin-bottom: .6rem; }
.listing-main h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: var(--hu-green-dk); margin-bottom: .5rem; }
.listing-city  { font-size: .85rem; color: var(--muted); margin-bottom: .5rem; }
.listing-stars { color: #e8a020; font-size: 1.1rem; margin-bottom: 1rem; }
.listing-desc  { font-size: .92rem; line-height: 1.8; margin: 1rem 0 1.5rem; }
.tour-info { display: flex; align-items: center; gap: 1rem; margin: 1rem 0; font-size: .9rem; }
.btn-gpx { background: var(--hu-green); color: var(--white); padding: .45rem 1rem; border-radius: 5px; font-size: .82rem; font-weight: 600; }
#listing-map { height: 220px; border-radius: 10px; margin: 1.5rem 0; border: 1.5px solid var(--linen-dark); }

/* Nearby */
.nearby-section { margin-top: 2rem; }
.nearby-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--hu-green-dk); margin-bottom: 1rem; }
.nearby-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.nearby-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: var(--text); transition: transform .2s; }
.nearby-card:hover { transform: translateY(-2px); }
.nearby-card img { width: 100%; height: 120px; object-fit: cover; }
.nearby-card-body { padding: .75rem; }
.nearby-name  { font-size: .83rem; font-weight: 600; color: var(--hu-green-dk); }
.nearby-price { font-size: .76rem; color: var(--hu-red); font-weight: 600; margin-top: .2rem; }

/* Listing sidebar */
.listing-sidebar-wrap { display: flex; flex-direction: column; gap: .85rem; }
.ls-price { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--hu-green-dk); }
.btn-book-now { display: block; background: var(--hu-red); color: var(--white); padding: .9rem; border-radius: 8px; font-size: .95rem; font-weight: 700; text-align: center; transition: background .2s; margin-bottom: .4rem; }
.btn-book-now:hover { background: var(--hu-red-dark); }
.affiliate-hint { font-size: .7rem; color: var(--muted); text-align: center; }
.ls-contact, .ls-address { font-size: .84rem; color: var(--muted); display: block; text-decoration: none; }
.ls-contact:hover { color: var(--hu-green); }
.ls-divider { height: 1px; background: var(--linen-dark); }
.ls-cta-box { background: var(--lake-pale); border-radius: 8px; padding: 1rem; border: 1px solid var(--lake-light); }
.ls-cta-title { font-weight: 700; font-size: .88rem; color: var(--hu-green-dk); margin-bottom: .35rem; }
.ls-cta-desc  { font-size: .78rem; color: var(--muted); line-height: 1.6; }
.ls-widget-title { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--hu-green-dk); margin-bottom: .5rem; }

/* ── REGION ── */
.region-header { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: center; margin-bottom: 1.5rem; }
.region-desc { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-top: .5rem; max-width: 520px; }
#region-mini-map { height: 200px; border-radius: 10px; border: 1.5px solid var(--linen-dark); }
.region-articles { padding: 2.5rem 0; border-top: 1px solid var(--linen-dark); margin-top: 2rem; }

/* ── MOBILE additions ── */
@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .listing-body { grid-template-columns: 1fr; }
  .listing-sidebar-wrap { border-top: 1px solid var(--linen-dark); padding-top: 1.5rem; margin-top: -.5rem; }
  .nearby-grid { grid-template-columns: 1fr 1fr; }
  .region-header { grid-template-columns: 1fr; }
  #region-mini-map { height: 160px; }
}

/* ── EVENTS ── */
.events-filter { margin: 1rem 0 0; }
.filter-group { display: flex; flex-wrap: wrap; gap: .4rem; }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.event-card { background: var(--white); border-radius: 10px; padding: 1.3rem; border: 1.5px solid var(--linen-dark); transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; gap: .5rem; }
.event-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.event-card-head { display: flex; align-items: flex-start; gap: .7rem; }
.event-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.event-when { font-weight: 700; font-size: .82rem; color: var(--hu-green); }
.event-city { font-size: .74rem; color: var(--muted); margin-top: .1rem; }
.event-recurring { margin-left: auto; font-size: .85rem; color: var(--muted); title: "Jährlich"; }
.event-name { font-family: 'Playfair Display', serif; font-size: .98rem; color: var(--hu-green-dk); line-height: 1.35; }
.event-desc { font-size: .8rem; color: var(--muted); line-height: 1.6; flex: 1; }
.event-footer { display: flex; justify-content: space-between; align-items: center; margin-top: .3rem; }
.event-cat-badge { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--lake-pale); color: var(--lake); padding: .18rem .5rem; border-radius: 3px; }
.event-link { font-size: .78rem; font-weight: 600; color: var(--hu-red); }
.event-link:hover { color: var(--hu-red-dark); }
.partner-note { margin-top: 2.5rem; padding: 1rem 1.4rem; background: var(--linen); border-radius: 8px; font-size: .82rem; color: var(--muted); border-left: 3px solid var(--hu-green); }
.partner-note a { color: var(--hu-green); font-weight: 600; }

@media (max-width: 860px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* ── ÖFFNUNGSZEITEN ── */
.oh-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 700; padding: .2rem .55rem;
  border-radius: 12px; margin-bottom: .5rem;
}
.oh-open   { background: #d1fae5; color: #065f46; }
.oh-closed { background: #fee2e2; color: #991b1b; }

/* ── PAGINATION ── */
.pagination { margin: 2.5rem 0 1rem; }
.pagination ul { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; align-items: center; }
.pag-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 .75rem;
  border-radius: 6px; border: 1.5px solid var(--linen-dark);
  background: var(--white); color: var(--text);
  font-size: .82rem; font-weight: 500; transition: all .16s;
  text-decoration: none; white-space: nowrap;
}
.pag-btn:hover  { border-color: var(--hu-green); color: var(--hu-green); }
.pag-active     { background: var(--hu-green) !important; border-color: var(--hu-green) !important; color: var(--white) !important; font-weight: 700; }
.pag-dots       { font-size: .85rem; color: var(--muted); padding: 0 .3rem; }
.pag-info       { font-size: .75rem; color: var(--muted); margin-top: .75rem; }
@media(max-width:540px) { .pag-btn { min-width:34px; height:34px; font-size:.78rem; } }

/* ── HERZEN / FAVORITEN ── */
.heart-btn {
  position: absolute; top: .55rem; right: .55rem; z-index: 10;
  background: rgba(255,255,255,.92); border: none; border-radius: 50%;
  width: 40px; height: 40px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; box-shadow: 0 2px 10px rgba(0,0,0,.22);
  transition: transform .15s, background .15s;
  color: #e53e3e;
}
.heart-btn:hover { transform: scale(1.18); background: rgba(255,255,255,1); }
.heart-btn.liked { background: #fff0f0; color: #e53e3e; }
.heart-count {
  position: absolute; bottom: .55rem; left: .55rem; z-index: 10;
  background: rgba(229,62,62,.85); color: #fff;
  font-size: .72rem; font-weight: 700; padding: .2rem .55rem;
  border-radius: 12px; display: flex; align-items: center; gap: .25rem;
  pointer-events: none; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.heart-count.hidden { display: none; }

/* ── BOOKING BUTTON ── */
.btn-booking {
  display: block; background: #003580; color: #fff;
  padding: .85rem; border-radius: 8px; font-size: .92rem; font-weight: 700;
  text-align: center; text-decoration: none; margin-bottom: .4rem;
  transition: background .2s;
}
.btn-booking:hover { background: #00224f; }
