:root{
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --chip: #f1f5f9;
  --chipHover: #e2e8f0;
  --btn: #0b57d0;
  --btnHover: #0948ad;
  --shadow: 0 10px 30px rgba(2, 8, 23, 0.08);
  --radius: 18px;
  --radiusSm: 12px;
  --wrap: 980px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing: border-box; }
html, body{ height:100%;}
body{
  margin:0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 40px;
}

.chip--country {
  background:#eef2ff;
  color:#3730a3;
  font-weight:600;
}


a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.dotsep{ margin: 0 8px; color: var(--muted); }

.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 99999;
}

.topbar__inner{
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 14px 0;
}
.topbar--search .topbar__inner{
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand__dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--btn);
  box-shadow: 0 0 0 6px rgba(11,87,208,0.12);
}
.brand__name{
  font-size: 15px;
}


/* HERO */
.hero{
  min-height: calc(100vh - 60px);
  display:flex;
  align-items:flex-start;
  padding: 200px 0 64px;
}
.hero__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 14px;
}


.hero__title{
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;          /* wichtig */
  display: inline-flex;
  align-items: center;
}


.hero__subtitle{
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

/* Search box (Home) */
.searchbox{
  width: min(760px, 100%);
  display:flex;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.searchbox__input{
  flex:1;
  border:0;
  outline:0;
  font-size: 14px;
  padding: 10px 12px;
  background: transparent;
}
.searchbox__btn{
  border:0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  background: var(--btn);
  color: white;
}
.searchbox__btn:hover{ background: var(--btnHover); }

.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content:center;
  margin-top: 10px;
}
.chip{
  background: var(--chip);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--fg);
}
.chip:hover{
  background: var(--chipHover);
  text-decoration:none;
}

.hero__foot{ margin-top: 18px; }

/* Search bar (Results header) */
.searchbar{
  flex: 1;
  display:flex;
  gap: 10px;
  align-items:center;
  max-width: 760px;
  margin-left: 8px;
}
.searchbar__input{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 15px;
  outline: none;
}
.searchbar__input:focus{
  border-color: rgba(11,87,208,0.45);
  box-shadow: 0 0 0 4px rgba(11,87,208,0.12);
}
.searchbar__btn{
  border:0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--btn);
  color: white;
}
.searchbar__btn:hover{ background: var(--btnHover); }

/* RESULTS LAYOUT */
.results{
  padding: 22px 0 54px;
}
.results__meta{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0 16px;
}
.results__title{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.results__info{
  margin: 0;
  font-size: 13px;
}

/* Filters */
.filters{
  display:flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.filters__group{
  display:flex;
  align-items:center;
  gap: 10px;
}
.filters__label{
  font-size: 13px;
  color: var(--muted);
}
.seg{
  display:inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow:hidden;
}
.seg__btn{
  background: white;
  border:0;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
}
.seg__btn:hover{ background: var(--chip); }
.seg__btn--active{
  background: rgba(11,87,208,0.10);
  color: #0b57d0;
  font-weight: 700;
}

.check{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg);
}
.check input{ accent-color: var(--btn); }

/* Result item */
.resultlist{
  display:flex;
  flex-direction: column;
  gap: 18px;
}
.result{
  padding: 8px 0;
}
.result__url{
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 4px;
}
.result__title{
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.result__title a{
  color: #0b57d0;
  text-decoration: none;
}
.result__title a:hover{ text-decoration: underline; }
.result__snippet{
  margin: 0 0 8px;
  color: #334155;
  line-height: 1.5;
  max-width: 78ch;
}
.result__meta{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 12.5px;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--line);
  background: #f8fafc;
}
.badge--soft{
  background: rgba(100,116,139,0.08);
}

/* Pagination */
.pager{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pager__btn{
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 13px;
}
.pager__btn[aria-disabled="true"]{
  opacity: 0.5;
  pointer-events: none;
}
.pager__btn:hover{ background: var(--chip); text-decoration:none; }
.pager__pages{
  display:flex;
  align-items:center;
  gap: 8px;
}
.pager__page{
  width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  color: var(--muted);
}
.pager__page:hover{
  background: var(--chip);
  text-decoration:none;
}
.pager__page--active{
  color: var(--fg);
  border-color: var(--line);
  background: white;
  font-weight: 700;
}

/* Empty state */
.empty{
  padding: 30px 0;
}
.empty h2{ margin:0 0 6px; }

/* Responsive tweaks */
@media (max-width: 720px){
  .topbar__inner{ flex-wrap: wrap; }
  .topnav{ margin-left: 0; width: 100%; }
  .searchbar{ margin-left: 0; width: 100%; max-width: none; }
  .results__meta{ flex-direction: column; align-items: flex-start; }
  .searchbox{ flex-direction: column; border-radius: var(--radius); }
  .searchbox__btn{ width: 100%; }
}


.res {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 10px 0;
  background: #fff;  
}

.res-title {
  font-size: 18px;
  font-weight: 650;
  text-decoration: none;
  color: #1a0dab;
}

.res-title:hover {
  text-decoration: underline;
}

.res-desc { margin-top: 6px; color: #444; }

.res-url {
  margin-top: 6px;
  color: #666;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.res-debug {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dbg {
  font-size: 12px;
  color: #333;
  background: #f7f7f7;
  border: 1px solid #eee;
  padding: 4px 6px;
  border-radius: 6px;
}

.dbg b { font-weight: 650; margin-right: 4px; }


.social-pill {
  font-size: 12px;
  padding: 2px 10px;
  border: 1px solid #ddd;
  border-radius: 999px;
  text-decoration: none;
  color: #333;
  background: #fafafa;
}

.social-pill:hover {
  background: #f0f0f0;
}

.social-row {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}


/* --- -ish result styling (override) --- */

/* Liste: mehr spacing, keine "cards" */
.res {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 22px 0;
}

.res-main {
  max-width: 980px; /* ähnlich content width */
}

/* Title: klassisches Link-Blau */
.res-title {
  display: inline-block;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;          /*  wirkt eher normal, nicht bold */
  text-decoration: none;
  color: #1a0dab;            /* like blue */
}

.res-title:hover {
  text-decoration: underline;
}

/* URL Zeile: klein, "host/url"-Look */
.res-url {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.3;
  color: #202124;            /* neutral dunkel */
  font-family: inherit;      /* kein mono, wirkt mehr  */
}

/* Snippet: typischer -Grau */
.res-desc {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.58;
  color: #4d5156;
}

/* Social pills: dezenter + näher an "chips" */
.social-row {
  margin-top: 8px;
  gap: 6px;
}

.social-pill {
  font-size: 12px;
  padding: 2px 10px;
  border: 1px solid #dadce0;
  border-radius: 999px;
  background: #f8f9fa;
  color: #3c4043;
}

.social-pill:hover {
  background: #f1f3f4;
}

/* Debug: klar getrennt, aber nicht zu dominant */
.res-debug {
  margin-top: 8px;
  gap: 6px;
}

.dbg {
  font-size: 12px;
  color: #3c4043;
  background: #f8f9fa;
  border: 1px solid #dadce0;
  border-radius: 999px;      /* chips */
  padding: 3px 10px;
}

.dbg b {
  font-weight: 600;
}

/* Optional: Resultlist etwas Luft */
.resultlist {
  padding-top: 6px;
}

/* Optional: Meta oben wie  etwas kleiner */
.results__info {
  font-size: 13px;
  color: #4d5156;
}

.minimap {
  margin: 10px 0 18px 0;
  max-width: 980px; /* passend zu deinen Results */
}

.minimap__title {
  font-size: 13px;
  margin-bottom: 6px;
}

.minimap__map {
  height: 220px;
  border: 1px solid #dadce0;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
  z-index: 1;
}

.poi-item { display:flex; justify-content:space-between; gap:10px; padding:8px 0; border-top:1px solid #eee; }
.poi-meta { color:#666; font-size: 0.8em; }
.poi-actions a { margin-left:8px; }


/* ---------------- NEWS PAGE (-News-ish) ---------------- */
.news{
  padding: 22px 0 54px;
}

.news__meta{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 16px;
}
.news__title{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.news__sub{ font-size: 13px; }

.news__layout{
  display:grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){
  .news__layout{ grid-template-columns: 1fr; }
}

/* Card container */
.news-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 16px;
}
.news-card--lead{
  padding: 16px 18px;
}

.news-card__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.news-card__title{
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.news-card__hint{ font-size: 13px; }

/* Main list like  News */
.news-list{
  display:flex;
  flex-direction: column;
  gap: 14px;
}
.news-item{
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.news-item:first-child{
  border-top: none;
  padding-top: 0;
}

.news-item__meta{
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  gap: 8px;
  font-size: 12.5px;
  margin-bottom: 4px;
}

.news-badge{
  display:inline-flex;
  align-items:center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #dadce0;
  background: #f8f9fa;
  color: #3c4043;
  font-size: 12px;
}
.news-time{ color: #4d5156; }

.news-item__title{
  display:inline-block;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 650;
  color: #1a0dab; /*  link blue */
  text-decoration:none;
}
.news-item__title:hover{ text-decoration: underline; }

.news-item__summary{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.58;
  color: #4d5156;
  max-width: 78ch;
}

/* Places column - grid cards */
.news-places-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.place-card{
  border: 1px solid var(--line);
  border-radius: var(--radiusSm);
  background: #fff;
  padding: 12px 12px;
}

.place-card__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.place-card__name{
  font-weight: 800;
  letter-spacing: -0.01em;
}

.place-card__list{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.place-card__item{
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.place-card__item:first-child{
  border-top: none;
  padding-top: 0;
}

.place-card__link{
  display:inline-block;
  font-size: 14px;
  line-height: 1.35;
  color: #1a0dab;
}
.place-card__link:hover{ text-decoration: underline; }

.place-card__meta{
  margin-top: 2px;
  font-size: 12.5px;
}



/* ---------------- PLACES INDEX + PLACE PAGE ---------------- */

.places{
  padding: 22px 0 54px;
}
.places__meta{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 16px;
}
.places__title{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.places__sub{ font-size: 13px; }

.places__layout{
  display:grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){
  .places__layout{ grid-template-columns: 1fr; }
}

.places-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 16px;
}
.places-card--lead{ padding: 16px 18px; }

.places-card__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.places-card__title{
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.places-card__hint{ font-size: 13px; }

.places-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px){
  .places-grid{ grid-template-columns: 1fr; }
}

.place-tile{
  display:block;
  border: 1px solid var(--line);
  border-radius: var(--radiusSm);
  background: #fff;
  padding: 12px 12px;
  text-decoration:none;
}
.place-tile:hover{
  background: #fafafa;
  text-decoration:none;
}
.place-tile__name{
  font-weight: 800;
  letter-spacing: -0.01em;
}
.place-tile__meta{
  margin-top: 4px;
  font-size: 12.5px;
}
.place-tile__pop{
  margin-top: 6px;
  font-size: 12.5px;
}

.places-filter__block{ margin-top: 10px; }
.places-filter__label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.places-filter__list{
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.places-filter__item{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.places-filter__item:hover{
  background: var(--chip);
  text-decoration:none;
}


/* Place page */
.placepage{
  padding: 22px 0 54px;
}

.placepage__meta{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0 16px;
}
@media (max-width: 720px){
  .placepage__meta{ flex-direction: column; align-items:flex-start; }
}

.placepage__title{
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.placepage__sub{ font-size: 13px; }

.placepage__actions{ display:flex; gap: 10px; }
.placepage__btn{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  background: white;
}
.placepage__btn:hover{ background: var(--chip); text-decoration:none; }

.placepage__layout{
  display:grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){
  .placepage__layout{ grid-template-columns: 1fr; }
}

/* Place cards (like news-card but content oriented) */
.place-cardx{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.place-cardx--lead{ padding: 16px 18px; }

.place-cardx__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.place-cardx__title{
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.place-cardx__hint{ font-size: 13px; }

/* Facts */
.place-facts{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
@media (max-width: 720px){
  .place-facts{ grid-template-columns: 1fr; }
}
.fact{
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}
.fact__k{ display:block; font-size: 12px; margin-bottom: 4px; }
.fact__v{ font-weight: 700; }

/* Links list */
.place-links{
  display:flex;
  flex-direction: column;
  gap: 14px;
}
.place-link{
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.place-link:first-child{
  border-top: none;
  padding-top: 0;
}
.place-link__meta{
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  gap: 8px;
  font-size: 12.5px;
  margin-bottom: 4px;
}
.place-link__title{
  display:inline-block;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 650;
  color: #1a0dab;
  text-decoration:none;
}
.place-link__title:hover{ text-decoration: underline; }
.place-link__summary{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.58;
  color: #4d5156;
  max-width: 78ch;
}

/* News list in sidebar */
.place-news{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.place-news__item{
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.place-news__item:first-child{
  border-top: none;
  padding-top: 0;
}
.place-news__link{
  display:inline-block;
  font-size: 14px;
  line-height: 1.35;
  color: #1a0dab;
}
.place-news__link:hover{ text-decoration: underline; }
.place-news__meta{
  margin-top: 2px;
  font-size: 12.5px;
}

.place-faq__item{
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.place-faq__item:first-child{
  border-top: none;
  padding-top: 0;
}
.place-faq__q{
  cursor: pointer;
  font-weight: 650;
  color: var(--fg);
}
.place-faq__a{
  margin-top: 6px;
  line-height: 1.58;
}
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

.poi-card .list { list-style: none; padding-left: 0; margin: 0; }
.poi-card .list-item { padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.poi-card .list-item:last-child { border-bottom: 0; }
.poi-card .small { font-size: .9em; }
.poi-card .badge { margin-left: .5rem; font-size: .8em; padding: .1rem .4rem; border-radius: 999px; border: 1px solid rgba(0,0,0,.15); }

.minimap__map { height: 240px; }

.small { font-size: .9em; }

.weather-daily {
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 14px;
}

.site-footer__inner {
  text-align: center;
}

.footer-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-bottom: .5rem;
}

.footer-nav a {
  color: inherit;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.site-footer__meta {
  margin-top: .25rem;
}



/* --- Fix: Leaflet darf nicht über die Topbar zeichnen --- */
.topbar{
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999 !important;
}

/* Leaflet Layers/Controls unter Topbar halten */
.leaflet-pane,
.leaflet-top,
.leaflet-bottom,
.leaflet-control,
.leaflet-control-container{
  z-index: 1000 !important;
}

/* Map selbst bleibt "normal" im Flow */
.minimap__map{
  position: relative;
  z-index: 1;
}


.grid--2 { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
@media (max-width: 720px){ .grid--2{ grid-template-columns: 1fr; } }
.webcam { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.webcam img { width:100%; height:auto; display:block; }
.webcam__body { padding: 10px 12px; }
.webcam__title { font-weight: 700; margin-bottom: 4px; }
.webcam__meta { font-size: 0.9rem; }



/* ---------- Form UI (POI melden / URL hinzufügen) ---------- */

.form-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
@media (min-width: 820px){
  .form-grid{ grid-template-columns:1fr 1fr; }
  .col-full{ grid-column: 1 / -1; }
}

.field label{
  display:block;
  margin:0 0 6px;
}

.field input, .field textarea{
  width:100%;
}

.actions-row{
  margin-top:12px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

/* Alerts (success/error) */
.alert{
  border-radius:12px;
  padding:10px 12px;
  margin: 10px 0 14px;
  border: 1px solid rgba(0,0,0,.10);
}
.alert--ok{
  background: rgba(22,163,74,.08);
  border-color: rgba(22,163,74,.25);
}
.alert--err{
  background: rgba(220,38,38,.07);
  border-color: rgba(220,38,38,.25);
}

/* Honeypot: unsichtbares Feld */
.hp{
  position:absolute;
  left:-9999px;
  width:1px;height:1px;
  overflow:hidden;
}


/* =========================================================
   FORM DESIGN – konsistent mit Search UI
   ========================================================= */

/* Inputs & Textareas wie Search-Input */
.form input[type="text"],
.form input[type="email"],
.form input[type="url"],
.form textarea {
  appearance: none;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;              /* exakt wie Search */
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  font-size: 15px;
  line-height: 1.2;
  transition: border-color .15s ease, box-shadow .15s ease;
}

/* Textarea: gleiche Optik, nur höher */
.form textarea {
  height: auto;
  min-height: 120px;
  padding: 12px 16px;
  border-radius: 18px;
  resize: vertical;
}

/* Focus-State wie Suche */
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.25);
}

/* Placeholder dezenter */
.form ::placeholder {
  color: rgba(0,0,0,.45);
}

/* Labels etwas cleaner */
.form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* =========================================================
   BUTTON – exakt wie Search Button
   ========================================================= */

.form button,
.form .btn {
  appearance: none;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  background: #2563eb;          /* gleiche Farbe wie Suche */
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease;
}

/* Hover / Active */
.form button:hover,
.form .btn:hover {
  background: #1d4ed8;
}

.form button:active,
.form .btn:active {
  transform: translateY(1px);
}

/* Disabled */
.form button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* =========================================================
   Alerts (Fehler / Erfolg) etwas moderner
   ========================================================= */

.alert {
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 14px;
}

.alert--ok {
  background: rgba(22,163,74,.10);
  border: 1px solid rgba(22,163,74,.35);
}

.alert--err {
  background: rgba(220,38,38,.10);
  border: 1px solid rgba(220,38,38,.35);
}



/* =========================================================
   FORCE FORM CONSISTENCY (POI melden / URL hinzufügen)
   ========================================================= */

/* Alle Formfelder im Formular – ohne Ausnahmen */
form.form input,
form.form textarea,
form.form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100% !important;
  box-sizing: border-box !important;

  /* gleiche Optik wie Search */
  height: 44px;
  padding: 0 14px;

  border-radius: 999px !important;
  border: 1px solid rgba(0,0,0,.18) !important;
  background: #fff !important;

  font-size: 15px !important;
  line-height: 1.2 !important;

  transition: border-color .15s ease, box-shadow .15s ease;
}

/* Textarea: gleiche Optik, aber höher */
form.form textarea {
  height: auto !important;
  min-height: 120px;
  padding: 12px 16px !important;
  border-radius: 18px !important;
  resize: vertical;
}

/* Focus wie Suche */
form.form input:focus,
form.form textarea:focus,
form.form select:focus {
  outline: none !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.25) !important;
}

/* Placeholder */
form.form ::placeholder {
  color: rgba(0,0,0,.45) !important;
}

/* Labels einheitlich */
form.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Honeypot wirklich unsichtbar */
form.form .hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}



.features{
  margin-top:18px;
  display:grid;
  gap:12px;
  grid-template-columns:1fr;
  margin-top: 100px;
}
@media (min-width: 820px){
  .features{ grid-template-columns:repeat(3,1fr); }
}
.feature{
  background: rgba(255,255,255,.6);
  border:1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 12px 14px;
}
.feature__title{ font-weight: 700; margin-bottom: 4px; }
.feature__text{ font-size: 14px; line-height: 1.35; }


.quicklinks{
  margin-top: 14px;
  margin-bottom: 100px;
}

.quicklinks__label{
  display:block;
  font-size:13px;
  color: rgba(0,0,0,.55);
  margin-bottom:6px;
}

.chips--inline{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

.chip-sep{
  color: rgba(0,0,0,.35);
  margin: 0 4px;
  font-size:13px;
}

/* Orte-Chips etwas ruhiger */
.chip--soft{
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.08);
}



.topnav__link{
  position: relative;
  padding: 6px 4px;
  font-weight: 500;
  color: rgba(0,0,0,.75);
  text-decoration: none;
  transition: color .15s ease;
}

.topnav__link:hover{
  color: #0b5bd3; /* dein Blau */
}

.topnav__link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,#0b5bd3,#3aa0ff);
  opacity: 0;
  transform: scaleX(.6);
  transition: all .15s ease;
}

.topnav__link:hover::after{
  opacity: 1;
  transform: scaleX(1);
}


.topnav__link.is-active{
  color: #0b5bd3;
}

.topnav__link.is-active::after{
  opacity: 1;
  transform: scaleX(1);
}


.brand-dot{
 display:inline-block;
  border-radius:50%;
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  flex-shrink: 0;
}

.brand-dot--hero{
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e88e5, #0d47a1);
  transform: translateY(0.06em);
}

.brand-dot--hero::after{
  content: "";
  position: absolute;
  inset: -8px;                 /* ← HIER: Größe des Halos */
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(30,136,229,0.35) 0%,
    rgba(30,136,229,0.18) 45%,
    rgba(30,136,229,0.08) 65%,
    rgba(30,136,229,0.0) 75%
  );
  z-index: -1;
}




.brand-dot--nav{
  width: 12px;
  height: 12px;
  margin-right: 8px;
}


.brand-dot--hero{
  box-shadow: 0 0 0 rgba(11,91,211,.4);
  animation: pulse 3s infinite;
}

@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(11,91,211,.35); }
  70%{ box-shadow: 0 0 0 8px rgba(11,91,211,0); }
  100%{ box-shadow: 0 0 0 0 rgba(11,91,211,0); }
}



/* --- TOPBAR LAYOUT FIX: Nav wieder rechts --- */
.topbar__inner{
  display: flex;
  align-items: center;
  gap: 18px;
}

.topnav{
  margin-left: auto;          /* <- schiebt Nav nach rechts */
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --- TOPNAV LINK LOOK: kein Standard-Underline, nur unser Underline --- */
.topnav__link,
.topnav__link:hover,
.topnav__link:focus,
.topnav__link:active{
  text-decoration: none !important;   /* <- killt das "Text-Link" underline */
}

.topnav__link{
  position: relative;
  display: inline-block;
  padding: 6px 6px;
  color: rgba(0,0,0,.78);
  font-weight: 500;
  transition: color .15s ease;
}

/* Unser Underline */
.topnav__link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,#0b5bd3,#3aa0ff);
  opacity: 0;
  transform: scaleX(.6);
  transform-origin: left center;
  transition: opacity .15s ease, transform .15s ease;
}

/* Hover UND Active gleich */
.topnav__link:hover,
.topnav__link.is-active{
  color: #0b5bd3;
}

.topnav__link:hover::after,
.topnav__link.is-active::after{
  opacity: 1;
  transform: scaleX(1);
}

/* Simple content pages: mehr Luft über H1 */
.wrap > .card > h1:first-child {
  margin-top: 2rem;   /* oder 1rem, wenn du es luftiger willst */
}


/* News meta: Titel untereinander statt auseinander */

.news__meta .news__title {
  margin-bottom: 0.25rem;
}

.news__meta .news__sub {
  margin-top: 0;
}
