/* ============================================================
   HOCHZEITSMESSE DIGITAL – App CSS (Mobile First)
   ============================================================ */

:root {
  --c-primary:    #1d4e6e;
  --c-primary-dk: #163d56;
  --c-primary-lt: #e0f4f9;
  --c-accent:     #4da6c8;
  --c-bg:         #f7fafb;
  --c-white:      #ffffff;
  --c-text:       #1f1f1f;
  --c-muted:      #6b7280;
  --c-border:     #e5e7eb;
  --c-success:    #15803d;
  --c-warn:       #b45309;
  --c-danger:     #dc2626;
  --radius:       12px;
  --radius-sm:    6px;
  --shadow:       0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.12);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --max-w:        1200px;
  --header-h:     64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
}

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
@media (min-width:640px) { .container { padding: 0 1.5rem; } }
@media (min-width:1024px) { .container { padding: 0 2rem; } }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
}
.header-inner { display: flex; align-items: center; gap: 1rem; height: 100%; }
.logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--c-text); font-size: 1.1rem; }
.logo strong { color: var(--c-primary); }
.logo-icon { font-size: 1.5rem; }
.main-nav { display: none; gap: 1rem; align-items: center; margin-left: auto; }
.main-nav a { text-decoration: none; color: var(--c-muted); font-size: .9rem; transition: color .2s; }
.main-nav a:hover, .main-nav a.nav-admin { color: var(--c-primary); }
.nav-toggle { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--c-text); padding: .5rem; }
@media (min-width: 768px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
}
.main-nav.open { display: flex; flex-direction: column; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--c-white); padding: 1rem; border-bottom: 1px solid var(--c-border); z-index: 99; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.25rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: all .2s; white-space: nowrap; }
.btn-primary { background: var(--c-primary); color: #ffffff !important; border-color: var(--c-primary); }
.btn-primary:hover { background: var(--c-primary-dk); border-color: var(--c-primary-dk); }
.btn-outline { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn-outline:hover { background: var(--c-primary-lt); }
.btn-bookmarked { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.btn-danger { background: var(--c-danger); color: #fff; border-color: var(--c-danger); }
.btn-sm { padding: .35rem .75rem; font-size: .8rem; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.mt-2 { margin-top: .5rem; }
.mt-1 { margin-top: .25rem; }

/* ---- Badges ---- */
.badge { display: inline-flex; align-items: center; gap: .25rem; padding: .2rem .6rem; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.badge-real    { background: #dbeafe; color: #1d4ed8; }
.badge-virtual { background: #f3f0ff; color: var(--c-primary); }
.badge-live    { background: #dcfce7; color: var(--c-success); }
.badge-soon    { background: #fef3c7; color: var(--c-warn); }
.badge-past    { background: #f3f4f6; color: var(--c-muted); }
.badge-future  { background: #dbeafe; color: #1d4ed8; }

/* ---- Flash ---- */
.flash-container { position: fixed; top: calc(var(--header-h) + .5rem); right: 1rem; z-index: 200; max-width: 360px; }
.flash { padding: .75rem 1rem; border-radius: var(--radius-sm); margin-bottom: .5rem; font-size: .9rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; box-shadow: var(--shadow); }
.flash-success { background: #dcfce7; color: var(--c-success); }
.flash-error   { background: #fee2e2; color: var(--c-danger); }
.flash-info    { background: #dbeafe; color: #1e40af; }
.flash-close   { background: none; border: none; cursor: pointer; font-size: 1.1rem; line-height: 1; }

/* ---- Hero ---- */
.hero { background: linear-gradient(135deg, #0d2b3e 0%, var(--c-primary) 100%); color: #fff; padding: 4rem 1rem 3rem; text-align: center; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.hero-sub { font-size: 1.1rem; opacity: .9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 2rem; font-weight: 800; }
.stat span { font-size: .85rem; opacity: .8; }

/* ---- Sections ---- */
.section { padding: 3rem 0; }
.section--alt { background: var(--c-white); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.section-header h2 { font-size: 1.4rem; font-weight: 700; }
.link-more { color: var(--c-primary); text-decoration: none; font-size: .9rem; font-weight: 600; }
.count-badge { background: var(--c-primary-lt); color: var(--c-primary); padding: .1rem .5rem; border-radius: 999px; font-size: .8rem; font-weight: 600; }

/* ---- Fair Cards ---- */
.fair-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.fair-card { background: var(--c-white); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--c-text); box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.fair-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.fair-card-img { height: 180px; background: linear-gradient(135deg, #e0f4f9, #dbeeff); background-size: cover; background-position: center; position: relative; display: flex; align-items: flex-end; padding: .75rem; }
.fair-card-img--placeholder { align-items: center; justify-content: center; }
.fair-card-img--placeholder i { font-size: 2.5rem; color: var(--c-primary); opacity: .4; }
.fair-card-img .badge { position: absolute; top: .75rem; left: .75rem; }
.fair-card-body { padding: 1rem; flex: 1; }
.fair-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.fair-meta { font-size: .8rem; color: var(--c-muted); margin-bottom: .5rem; display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.fair-teaser { font-size: .85rem; color: var(--c-muted); }

/* ---- CTA Section ---- */
.section--cta { background: linear-gradient(135deg, #0d2b3e, var(--c-primary)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-text h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.cta-text p { opacity: .85; }

/* ---- Fair List Page ---- */
.page-layout--map { display: grid; grid-template-columns: 1fr; min-height: calc(100vh - var(--header-h)); }
@media (min-width: 900px) { .page-layout--map { grid-template-columns: 1fr 420px; } }
.map-panel { height: 350px; position: sticky; top: var(--header-h); order: 2; }
@media (min-width: 900px) { .map-panel { height: calc(100vh - var(--header-h)); order: -1; } .results-panel { order: 0; } }
.results-panel { padding: 1rem; overflow-y: auto; }
.filter-bar { background: var(--c-white); border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; box-shadow: var(--shadow); }
.filter-form { display: flex; flex-direction: column; gap: .75rem; }
.filter-input, .filter-select { padding: .5rem .75rem; border: 1px solid var(--c-border); border-radius: var(--radius-sm); font-size: .9rem; width: 100%; }
.filter-chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip { padding: .3rem .75rem; border-radius: 999px; border: 1.5px solid var(--c-border); background: transparent; cursor: pointer; font-size: .8rem; font-weight: 600; text-decoration: none; color: var(--c-muted); transition: all .15s; }
.chip.active, .chip:hover { border-color: var(--c-primary); color: var(--c-primary); background: var(--c-primary-lt); }
.results-count { font-size: .85rem; color: var(--c-muted); margin-bottom: 1rem; }
.fair-list-results { display: flex; flex-direction: column; gap: 1rem; }
.fair-list-item { display: flex; background: var(--c-white); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--c-text); box-shadow: var(--shadow); transition: box-shadow .2s; }
.fair-list-item:hover { box-shadow: var(--shadow-lg); }
.fair-list-body { padding: .85rem 1rem; flex: 1; }
.fair-list-header { margin-bottom: .35rem; }
.fair-list-type { font-size: .75rem; color: var(--c-muted); font-weight: 600; }
.fair-days-until { display: inline-block; font-size: .72rem; font-weight: 700; color: var(--c-primary); background: var(--c-primary-lt); border-radius: 999px; padding: .15rem .6rem; }
.fair-badge-past { display: inline-block; font-size: .72rem; font-weight: 600; color: var(--c-muted); background: #f3f4f6; border-radius: 999px; padding: .15rem .6rem; }
.fair-meta-date { font-size: .8rem; color: var(--c-muted); }
.fair-meta-sep  { color: var(--c-border); margin: 0 .2rem; }
.results-count  { margin-top: 1rem; }
.fair-list-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; }

/* ---- Fair Detail ---- */
.fair-hero { min-height: 300px; background: linear-gradient(135deg, #2d1f3d, var(--c-primary)); background-size: cover; background-position: center; }
.fair-hero--placeholder { background: linear-gradient(135deg, #0d2b3e, var(--c-primary)); }
.fair-hero--slim { min-height: 0; background: linear-gradient(135deg, #0d2b3e, var(--c-primary)); }
.fair-hero--slim .fair-hero-overlay { min-height: 0; padding: 1.5rem 1rem; background: none; }
.fair-hero-overlay { min-height: 300px; background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.2)); padding: 3rem 1rem 2rem; display: flex; align-items: flex-end; }
.fair-hero-overlay .container { color: #fff; width: 100%; }
.fair-hero-badge { margin-bottom: .75rem; }
.fair-hero-overlay h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: .5rem; }
.fair-hero-desc { opacity: .9; max-width: 600px; }
.fair-detail-layout { display: grid; gap: 2rem; padding: 2rem 1rem; }
@media (min-width: 768px) { .fair-detail-layout { grid-template-columns: 1fr 300px; } .fair-sidebar { order: 2; } .fair-main { order: 1; } }

/* ---- Info Cards ---- */
.info-card { background: var(--c-white); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); margin-bottom: 1rem; }
.info-row { display: flex; gap: .75rem; align-items: flex-start; padding: .5rem 0; border-bottom: 1px solid var(--c-border); font-size: .9rem; }
.info-row:last-child { border-bottom: none; }
.info-row i { color: var(--c-primary); margin-top: .15rem; min-width: 16px; }
.info-divider { border-top: 1px solid var(--c-border); margin: .75rem 0; }
.hours-table { width: 100%; font-size: .85rem; border-collapse: collapse; }
.hours-table td { padding: .3rem .25rem; }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--c-border); }
.discount-row { background: #fffbeb; border-radius: var(--radius-sm); padding: .5rem; }
.fair-link { display: flex; flex-direction: column; text-decoration: none; color: var(--c-text); padding: .5rem 0; border-bottom: 1px solid var(--c-border); font-size: .9rem; }
.fair-link:last-child { border-bottom: none; }
.fair-link small { color: var(--c-muted); font-size: .8rem; }
.claim-hint { font-size: .8rem; color: var(--c-muted); padding-top: .75rem; border-top: 1px solid var(--c-border); margin-top: .75rem; }
.claim-hint a { color: var(--c-primary); }

/* ---- Content Sections ---- */
.content-section { margin-bottom: 2.5rem; }
.content-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--c-primary-lt); }
.prose { line-height: 1.8; color: #374151; }

/* ---- Exhibitor Grid ---- */
.exhibitor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.exhibitor-list-view { display: flex; flex-direction: column; gap: .75rem; }
.exhibitor-card { background: var(--c-white); border-radius: var(--radius); padding: 1rem; text-decoration: none; color: var(--c-text); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: .5rem; transition: transform .15s, box-shadow .15s; }
.exhibitor-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.exhibitor-list-view .exhibitor-card { flex-direction: row; align-items: center; }
.exhibitor-card-logo { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.exhibitor-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--radius-sm); }
.logo-placeholder { width: 100%; height: 100%; background: var(--c-primary-lt); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.logo-placeholder i { color: var(--c-primary); font-size: 1.5rem; opacity: .5; }
.exhibitor-card-body h3 { font-size: .95rem; font-weight: 700; }
.cat-label { font-size: .8rem; color: var(--c-primary); font-weight: 600; }
.teaser { font-size: .82rem; color: var(--c-muted); }
.view-toggle { display: flex; gap: .25rem; }
.view-toggle button { background: none; border: 1.5px solid var(--c-border); padding: .35rem .5rem; border-radius: var(--radius-sm); cursor: pointer; }
.view-toggle button.active { border-color: var(--c-primary); color: var(--c-primary); background: var(--c-primary-lt); }
.cat-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }

/* ---- Exhibitor Detail ---- */
.exhibitor-hero { min-height: 280px; background: linear-gradient(135deg, #0d2b3e, var(--c-primary)); background-size: cover; background-position: center; }
.exhibitor-hero-overlay { min-height: 280px; background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.05)); padding: 2rem 1rem 2rem; display: flex; align-items: flex-end; }
.exhibitor-hero-inner { display: flex; align-items: flex-end; gap: 1.5rem; color: #fff; }
.exhibitor-logo-wrap .exhibitor-logo { width: 80px; height: 80px; object-fit: contain; background: #fff; border-radius: var(--radius); padding: .5rem; box-shadow: var(--shadow-lg); display: flex; }
.exhibitor-logo--placeholder { background: var(--c-primary-lt); }
.exhibitor-cat { font-size: .85rem; font-weight: 600; opacity: .9; margin-bottom: .25rem; }
.exhibitor-hero-text h1 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 800; }
.exhibitor-tagline { opacity: .85; margin-top: .25rem; }
.exhibitor-detail-layout { display: grid; gap: 2rem; padding: 2rem 1rem; }
@media (min-width: 768px) { .exhibitor-detail-layout { grid-template-columns: 1fr 280px; } .exhibitor-sidebar { order: 2; } .exhibitor-main { order: 1; } }
.register-teaser { background: var(--c-primary-lt); border-radius: var(--radius); padding: 1rem; text-align: center; }
.register-teaser strong { display: block; margin-bottom: .25rem; }
.register-teaser p { font-size: .85rem; color: var(--c-muted); margin-bottom: .75rem; }
.note-section label { font-size: .85rem; color: var(--c-muted); font-weight: 600; display: block; margin-bottom: .3rem; }
.note-section textarea { width: 100%; border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: .5rem; font-size: .9rem; resize: vertical; }
.service-blocks { display: grid; gap: 1rem; }
@media (min-width: 600px) { .service-blocks { grid-template-columns: repeat(2, 1fr); } }
.service-block { background: var(--c-primary-lt); border-radius: var(--radius); padding: 1rem; }
.service-block h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; color: var(--c-primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); display: block; }
.video-grid { display: grid; gap: 1.5rem; }
@media (min-width: 600px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
.video-embed h3 { font-size: .9rem; margin-bottom: .5rem; }
.video-embed iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: var(--radius-sm); }
.voucher-grid { display: grid; gap: 1rem; }
@media (min-width: 600px) { .voucher-grid { grid-template-columns: repeat(2, 1fr); } }
.voucher-card { background: linear-gradient(135deg, #e0f4f9, #dbeeff); border-radius: var(--radius); padding: 1rem; }
.voucher-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; color: var(--c-accent); }
.voucher-code { font-size: .85rem; margin-top: .5rem; }
.voucher-code code { background: rgba(0,0,0,.08); padding: .1rem .4rem; border-radius: 4px; font-weight: 700; }
.doc-list { display: flex; flex-direction: column; gap: .5rem; }
.doc-item { display: flex; align-items: center; gap: 1rem; padding: .75rem 1rem; background: var(--c-white); border-radius: var(--radius-sm); border: 1px solid var(--c-border); text-decoration: none; color: var(--c-text); transition: background .15s; }
.doc-item:hover { background: var(--c-primary-lt); }
.doc-item > i:first-child { color: var(--c-danger); font-size: 1.2rem; }
.doc-item > div { flex: 1; }
.doc-item > i:last-child { color: var(--c-muted); }

/* ---- Auth ---- */
.auth-section { min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; padding: 2rem 1rem; }
.auth-container { width: 100%; }
.auth-card { max-width: 420px; margin: 0 auto; background: var(--c-white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-lg); }
.auth-card--wide { max-width: 640px; }
.auth-header { text-align: center; margin-bottom: 1.5rem; }
.auth-icon { font-size: 2.5rem; display: block; margin-bottom: .5rem; }
.auth-header h1 { font-size: 1.5rem; font-weight: 700; }
.auth-header p { color: var(--c-muted); font-size: .9rem; }
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-switch { text-align: center; font-size: .85rem; color: var(--c-muted); margin-top: 1rem; }
.auth-switch a { color: var(--c-primary); font-weight: 600; }

/* ---- Forms ---- */
.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: #374151; }
.form-group input, .form-group select, .form-group textarea { padding: .6rem .85rem; border: 1.5px solid var(--c-border); border-radius: var(--radius-sm); font-size: .95rem; width: 100%; transition: border-color .15s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(29,78,110,.12); }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); } }
.form-hint { font-size: .8rem; color: var(--c-muted); text-align: center; margin-top: .5rem; }
.form-control-disabled { background: #f9fafb; cursor: not-allowed; color: var(--c-muted); }
.form-card { background: var(--c-white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1rem; }
.form-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.info-box { background: #eff6ff; border-left: 3px solid #3b82f6; border-radius: var(--radius-sm); padding: 1rem; margin-bottom: 1rem; font-size: .9rem; }
.info-box p { margin-bottom: .4rem; }

/* ---- Dashboard ---- */
.page-sub { color: var(--c-muted); margin-bottom: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.dashboard-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .dashboard-grid { grid-template-columns: 1fr 1fr; } }
.dash-section { background: var(--c-white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; }
.dash-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.bookmarks-list { display: flex; flex-direction: column; gap: .5rem; }
.bookmark-item { display: flex; align-items: center; gap: .75rem; padding: .75rem; background: var(--c-white); border-radius: var(--radius-sm); border: 1px solid var(--c-border); text-decoration: none; color: var(--c-text); transition: background .15s; }
.bookmark-item:hover { background: var(--c-primary-lt); }
.bookmark-item > div strong { display: block; font-size: .9rem; }
.bookmark-item > div small { color: var(--c-muted); font-size: .8rem; }
.fav-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: .75rem; }
.fav-card { display: flex; flex-direction: column; align-items: center; gap: .4rem; text-decoration: none; color: var(--c-text); }
.fav-card img { width: 60px; height: 60px; object-fit: contain; border-radius: var(--radius-sm); border: 1px solid var(--c-border); padding: .25rem; }
.fav-card span { font-size: .75rem; text-align: center; }
.dash-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ---- Empty State ---- */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--c-muted); }
.empty-state i { font-size: 3rem; margin-bottom: 1rem; opacity: .3; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--c-text); }
.empty-state--sm { padding: 1.5rem; }

/* ---- Map markers (SVG pins) ---- */
.distance-badge { color: var(--c-muted); font-size: .82rem; white-space: nowrap; }
.location-hint  { display: flex; align-items: center; gap: .5rem; padding: .5rem 1rem;
                  font-size: .82rem; color: var(--c-primary); background: var(--c-primary-lt);
                  border-bottom: 1px solid var(--c-border); }

/* ---- Footer ---- */
.site-footer { background: #0d2b3e; color: rgba(255,255,255,.7); padding: 3rem 1rem; }
.footer-inner { display: grid; gap: 2rem; }
@media (min-width: 640px) { .footer-inner { grid-template-columns: 1fr 1fr auto; } }
.footer-brand { color: #fff; }
.footer-brand p { font-size: .85rem; margin-top: .5rem; opacity: .6; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .85rem; }
.footer-nav a:hover { color: #fff; }
.footer-legal { font-size: .8rem; }

.text-success { color: var(--c-success); font-weight: 600; }
.mb-1 { margin-bottom: .5rem; }

/* ---- Footer legal nav ---- */
.footer-legal { display: flex; flex-direction: column; gap: .4rem; }
.footer-legal-nav { display: flex; flex-wrap: wrap; gap: .5rem .75rem; }
.footer-legal-nav a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .78rem; }
.footer-legal-nav a:hover { color: #fff; }

/* ---- Legal pages (Impressum, Datenschutz, NB) ---- */
.legal-page { max-width: 780px; margin: 0 auto; padding: 3rem 1rem; }
.legal-page h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: .25rem; }
.legal-page h1 i { color: var(--c-primary); margin-right: .4rem; font-size: 1.4rem; }
.legal-meta { color: var(--c-muted); font-size: .85rem; margin-bottom: 2rem; }
.legal-block { margin-bottom: 2rem; }
.legal-block h2 { font-size: 1.05rem; font-weight: 700; color: var(--c-primary); margin-bottom: .6rem; }
.legal-block p { margin-bottom: .75rem; line-height: 1.8; }
.legal-block ul { padding-left: 1.25rem; line-height: 1.8; margin-bottom: .75rem; }
.legal-block ul li { margin-bottom: .2rem; }
.legal-block a { color: var(--c-primary); }
.legal-stand { font-size: .8rem; color: var(--c-muted); border-top: 1px solid var(--c-border); padding-top: 1rem; margin-top: 2rem; }

/* ---- Logo-Bild ---- */
.logo-img { height: 36px; width: auto; display: block; }
.footer-symbol { height: 24px; width: auto; vertical-align: middle; }

/* ---- Exhibitor Hero slim (kein Bild) ---- */
.exhibitor-hero--slim .exhibitor-hero-overlay { min-height: 120px; background: linear-gradient(135deg, #0d2b3e, var(--c-primary)); padding: 1.5rem 1rem; }
.exhibitor-hero--slim { min-height: 0; background: none; }

/* ---- Kein Inhalt Hinweis ---- */
.no-content-hint { text-align: center; padding: 3rem 1rem; color: var(--c-muted); }
.no-content-hint i { font-size: 2.5rem; margin-bottom: 1rem; display: block; opacity: .4; }
.no-content-hint p { font-size: .95rem; }

/* ---- Kategorie-Chips (Startseite) ---- */
.cat-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.cat-chip { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1rem;
            background: var(--c-white); border: 1.5px solid var(--c-border); border-radius: 999px;
            font-size: .85rem; color: var(--c-text); text-decoration: none; transition: all .15s; }
.cat-chip i { color: var(--c-primary); font-size: .9rem; }
.cat-chip:hover { border-color: var(--c-primary); color: var(--c-primary); background: var(--c-primary-lt); }

/* ---- Aussteller-Grid Startseite ---- */
.exhibitor-grid--home { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

/* ---- Compact Cards (Startseite) ---- */
.compact-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .75rem; }
.compact-card { display: flex; flex-direction: column; gap: .2rem; background: var(--c-white);
                border: 1.5px solid var(--c-border); border-radius: var(--radius); padding: .85rem 1rem;
                text-decoration: none; color: var(--c-text); transition: border-color .15s, box-shadow .15s; }
.compact-card:hover { border-color: var(--c-primary); box-shadow: var(--shadow); }
.compact-card-icon i { font-size: 1.1rem; color: var(--c-primary); }
.compact-card-name { font-weight: 700; font-size: .9rem; margin-top: .15rem; }
.compact-card-cat { font-size: .78rem; color: var(--c-muted); }

/* ---- Dashboard Cards ---- */
.dash-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .75rem; margin-top: .75rem; }
.dash-card { display: flex; flex-direction: column; gap: .3rem; background: var(--c-primary-lt);
             border: 1.5px solid transparent; border-radius: var(--radius); padding: 1rem;
             text-decoration: none; color: var(--c-text); transition: border-color .15s, box-shadow .15s; }
.dash-card:hover { border-color: var(--c-primary); box-shadow: var(--shadow); }
.dash-card-top { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: .2rem; }
.dash-card-name { font-weight: 700; font-size: .9rem; }
.dash-card-meta { font-size: .78rem; color: var(--c-muted); }
.dash-card--exhibitor { flex-direction: row; align-items: center; gap: .75rem; }
.dash-card-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.dash-card-logo-placeholder { width: 44px; height: 44px; background: var(--c-white); border-radius: 6px;
                               display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-card-logo-placeholder i { font-size: 1.2rem; color: var(--c-primary); opacity: .5; }

.dashboard-grid { margin-top: 2rem; }
