
/* ── Zoekbalk in hero ────────────────────────────────────── */
.hero-search {
  margin-bottom: 40px;
  max-width: 580px;
}
.hero-search-form {
  display: flex;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s;
}
.hero-search-form:focus-within {
  border-color: var(--hg-orange);
  background: rgba(255,255,255,0.16);
}
.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
}
.hero-search-input::placeholder { color: rgba(255,255,255,0.5); }
.hero-search-btn {
  background: var(--hg-orange);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-search-btn:hover { background: var(--hg-orange-light); }
.hero-search-filters {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.hero-search-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.hero-search-tag:hover {
  background: rgba(232,84,10,0.3);
  border-color: var(--hg-orange);
  color: #fff;
}

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,84,10,0.12);
  /* Nodig voor absolute positionering van dropdown */
  overflow: visible;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo — links */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-svg { width: 38px; height: 24px; flex-shrink: 0; }
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--hg-dark);
  line-height: 1.2;
  white-space: nowrap;
}
.nav-brand span {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--hg-orange);
}

/* Knoppen rechts */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Burger knop */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid rgba(0,0,0,0.14);
  border-radius: 8px;
  cursor: pointer;
  color: var(--hg-dark);
  transition: all var(--transition);
  flex-shrink: 0;
  padding: 0;
}
.nav-toggle:hover {
  border-color: var(--hg-orange);
  color: var(--hg-orange);
}

/* Dropdown menu */
.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 16px;
  width: 260px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  z-index: 200;
  flex-direction: column;
  gap: 2px;
}
.nav-menu.open {
  display: flex;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--hg-dark);
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  transition: all var(--transition);
}
.nav-menu a:hover,
.nav-menu .current-menu-item a {
  background: var(--hg-orange);
  color: #fff;
}
.nav-menu-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin: 8px 0;
}
.nav-menu-sub a {
  font-size: 13px !important;
  color: var(--hg-muted) !important;
  padding: 9px 16px !important;
}
.nav-menu-sub a:hover {
  background: var(--hg-warm) !important;
  color: var(--hg-dark) !important;
}

/* Mobiel: menu full-width */
@media (max-width: 480px) {
  .nav-menu {
    right: 8px;
    left: 8px;
    width: auto;
  }
  .nav-brand { display: none; }
}

/* ── Fonts worden geladen via PHP (dynamisch pad) ────────── */
/* Zie functions.php: hg_enqueue_assets() genereert de @font-face via wp_add_inline_style */

/* ============================================================
   Horeca Groningen 2025 — Main Stylesheet
   ============================================================ */


/* ── Reset & Variables ────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --hg-orange:       #E8540A;
  --hg-orange-light: #FF6B1A;
  --hg-dark:         #1A1208;
  --hg-cream:        #FAF7F2;
  --hg-warm:         #F2EDE4;
  --hg-white:        #FFFFFF;
  --hg-border:       rgba(0,0,0,0.08);
  --hg-muted:        rgba(26,18,8,0.5);
  --font-display:    'Syne', 'Arial Black', 'Impact', sans-serif;
  --font-body:       'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-pill:     50px;
  --shadow-card:     0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover:    0 12px 40px rgba(0,0,0,0.12);
  --transition:      0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--hg-cream);
  color: var(--hg-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
.hg-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--hg-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }

/* ── Layout Helpers ──────────────────────────────────────── */
.hg-container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.hg-section   { padding: 80px 5vw; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary   { background: var(--hg-orange); color: #fff; }
.btn-primary:hover { background: var(--hg-orange-light); transform: translateY(-1px); }
.btn-outline   { background: transparent; color: var(--hg-dark); border: 1.5px solid var(--hg-border); }
.btn-outline:hover { border-color: var(--hg-orange); color: var(--hg-orange); }
.btn-white     { background: #fff; color: var(--hg-orange); }
.btn-white:hover { background: var(--hg-cream); }
.btn-ghost-white { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.16); }
.btn-full { width: 100%; justify-content: center; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: var(--hg-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 16px 0;
}
.breadcrumb a { color: var(--hg-muted); }
.breadcrumb a:hover { color: var(--hg-orange); }
.breadcrumb-sep { opacity: 0.4; }

/* ── Homepage Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 5vw 64px;
}

/* Fallback achtergrond als er geen foto is */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d0804 0%, #1A1208 50%, #2d1a08 100%);
  z-index: 0;
}

/* Hero foto — wordt gevuld door WordPress featured image */
.hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  z-index: 1;
}

/* Gradient overlay — zorgt voor leesbaarheid van tekst */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to top, rgba(10,6,2,0.98) 0%, rgba(10,6,2,0.7) 35%, rgba(10,6,2,0.15) 70%, transparent 100%),
    linear-gradient(to right, rgba(10,6,2,0.4) 0%, transparent 60%);
  z-index: 2;
}

/* Subtiel patroon */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #E8540A 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 3;
}

/* Oranje glow rechts */
.hero-accent {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,84,10,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,84,10,0.15);
  border: 1px solid rgba(232,84,10,0.5);
  color: #FFB38A;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hg-orange);
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero-title span { 
  color: var(--hg-orange);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--hg-orange);
  line-height: 1;
}
.hero-stat-label { 
  font-size: 11px; 
  color: rgba(255,255,255,0.45); 
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Category Pills ──────────────────────────────────────── */
.category-pills {
  padding: 0 5vw;
  margin-top: -28px;
  position: relative;
  z-index: 10;
}

.pills-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-pill);
  padding: 10px 20px 10px 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  transition: all 0.25s;
}

.cat-pill:hover {
  border-color: var(--hg-orange);
  box-shadow: 0 4px 20px rgba(232,84,10,0.15);
  transform: translateY(-2px);
}

.cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ── Section Header ──────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--hg-dark);
}

.section-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--hg-orange);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.section-link:hover { text-decoration: underline; }

/* ── Vacature Cards ──────────────────────────────────────── */
.vacature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.vacature-card {
  background: #fff;
  border: 1px solid var(--hg-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition);
}
.vacature-card:hover {
  border-color: var(--hg-orange);
  box-shadow: 0 8px 32px rgba(232,84,10,0.1);
  transform: translateY(-2px);
}

.vac-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--hg-border);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--hg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--hg-orange);
  overflow: hidden;
}

.vac-title { font-size: 14px; font-weight: 500; color: var(--hg-dark); margin-bottom: 4px; line-height: 1.3; }
.vac-company { font-size: 13px; color: var(--hg-muted); margin-bottom: 8px; }
.vac-uren {
  display: inline-block;
  background: #FEE9DC;
  color: #B33D00;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
}

/* ── Tip Cards ───────────────────────────────────────────── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.tip-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.tip-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.tip-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tip-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.tip-category {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hg-orange);
  margin-bottom: 8px;
}
.tip-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--hg-dark);
}
.tip-excerpt { font-size: 13px; color: var(--hg-muted); line-height: 1.6; flex: 1; }
.tip-more { font-size: 13px; font-weight: 500; color: var(--hg-orange); margin-top: 16px; display: inline-block; }

/* ── Blog List ───────────────────────────────────────────── */
.blog-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
}
.blog-item:last-child { border-bottom: none; }
.blog-item:hover .blog-title { color: var(--hg-orange); }

.blog-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  overflow: hidden;
  background: var(--hg-warm);
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }

.blog-meta { font-size: 11px; color: rgba(26,18,8,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.blog-meta span { color: var(--hg-orange); font-weight: 500; }
.blog-title { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--hg-dark); transition: color var(--transition); }
.blog-excerpt { font-size: 13px; color: var(--hg-muted); line-height: 1.5; margin-top: 4px; }

/* ── Partners Strip ──────────────────────────────────────── */
.partners-strip {
  background: var(--hg-dark);
  padding: 40px 5vw;
}
.partners-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 24px;
}
.partners-logos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.partners-logos img {
  height: 36px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}
.partners-logos img:hover { opacity: 1; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner { background: var(--hg-orange); padding: 80px 5vw; text-align: center; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* ── PAGE HEADER (filter/archive pages) ─────────────────── */
.page-header {
  background: var(--hg-dark);
  padding: 48px 5vw 56px;
  position: relative;
  overflow: hidden;
}
.page-header-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, #E8540A 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.page-header-label { font-size: 11px; font-weight: 500; color: rgba(232,84,10,0.8); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; display: block; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.page-header p { font-size: 15px; color: rgba(255,255,255,0.45); }

/* ── Filter Bar ──────────────────────────────────────────── */
.filter-wrap {
  padding: 0 5vw;
  margin-top: -28px;
  position: relative;
  z-index: 10;
}

.filter-bar {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
  padding: 20px 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.filter-label { font-size: 11px; font-weight: 500; color: var(--hg-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.filter-select {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--hg-dark);
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--transition);
}
.filter-select:focus { outline: none; border-color: var(--hg-orange); }

.filter-reset {
  padding: 9px 16px;
  background: transparent;
  color: var(--hg-muted);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  align-self: flex-end;
}
.filter-reset:hover { border-color: var(--hg-orange); color: var(--hg-orange); }

.active-filters {
  max-width: 1200px;
  margin: 12px auto 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEE9DC;
  border: 1px solid rgba(232,84,10,0.2);
  color: #B33D00;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.chip-remove { cursor: pointer; opacity: 0.7; }
.chip-remove:hover { opacity: 1; }

.results-count { font-size: 13px; color: var(--hg-muted); margin-left: auto; }

/* ── Results Grid ────────────────────────────────────────── */
.results-wrap { padding: 32px 5vw 60px; }
.results-inner { max-width: 1200px; margin: 0 auto; }

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.results-title { font-size: 1.1rem; font-weight: 700; color: var(--hg-dark); }

.member-note {
  background: var(--hg-warm);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--hg-muted);
  margin-bottom: 20px;
}

.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.result-card {
  background: #fff;
  border: 1px solid var(--hg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.result-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: rgba(232,84,10,0.2);
}

.result-img { width: 100%; height: 180px; object-fit: cover; }
.result-img-placeholder { width: 100%; height: 180px; background: var(--hg-warm); display: flex; align-items: center; justify-content: center; font-size: 48px; }

.result-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.result-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }

.result-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--hg-border);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--hg-warm);
  overflow: hidden;
}

.result-name { font-size: 15px; font-weight: 700; color: var(--hg-dark); margin-bottom: 3px; }
.result-type { font-size: 12px; color: var(--hg-muted); }
.result-excerpt { font-size: 13px; color: var(--hg-muted); line-height: 1.55; flex: 1; margin-bottom: 14px; }

.result-footer { display: flex; gap: 6px; flex-wrap: wrap; }
.result-tag {
  background: var(--hg-warm);
  color: rgba(26,18,8,0.65);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 5px;
}
.result-tag.orange { background: #FEE9DC; color: #B33D00; }

/* Spinner for AJAX loading */
.hg-spinner {
  text-align: center;
  padding: 40px;
  color: var(--hg-muted);
  font-size: 14px;
}
.hg-spinner::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(232,84,10,0.2);
  border-top-color: var(--hg-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Pagination ──────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: #fff;
  color: var(--hg-dark);
  transition: all var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--hg-orange); border-color: var(--hg-orange); color: #fff; }

/* ── PROFILE PAGE ────────────────────────────────────────── */
.profile-hero {
  background: var(--hg-dark);
  padding: 48px 5vw 0;
  position: relative;
  overflow: hidden;
}
.profile-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, #E8540A 1px, transparent 1px);
  background-size: 28px 28px;
}
.profile-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

.profile-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.profile-logo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: #fff;
  border: 3px solid rgba(232,84,10,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.profile-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.profile-logo-initials { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--hg-orange); }

.profile-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.profile-cat-badge {
  background: rgba(232,84,10,0.2);
  border: 1px solid rgba(232,84,10,0.35);
  color: #FFB38A;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-name { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 8px; }
.profile-address { font-size: 14px; color: rgba(255,255,255,0.5); }

.profile-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  background: rgba(255,255,255,0.07);
  transition: all var(--transition);
  cursor: pointer;
}
.action-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.action-btn.primary { background: var(--hg-orange); border-color: var(--hg-orange); }
.action-btn.primary:hover { background: var(--hg-orange-light); }

/* Gallery */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.gallery-img { overflow: hidden; cursor: pointer; position: relative; }
.gallery-img:first-child { grid-row: span 2; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-img:hover img { transform: scale(1.04); }
.gallery-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* Profile main content */
.profile-main { padding: 48px 5vw; }
.profile-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.profile-section { margin-bottom: 40px; }
.ps-label { font-size: 11px; font-weight: 500; color: var(--hg-orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; display: block; }
.ps-title { font-size: 1.3rem; font-weight: 700; color: var(--hg-dark); margin-bottom: 16px; }

.profile-text { font-size: 15px; line-height: 1.75; color: rgba(26,18,8,0.75); }
.profile-text p { margin-bottom: 16px; }
.profile-text p:last-child { margin-bottom: 0; }
.profile-text strong { color: var(--hg-dark); font-weight: 500; }

/* Badges */
.badges-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--hg-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--hg-dark);
}

.keuken-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.keuken-tag { background: var(--hg-warm); border-radius: 6px; padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--hg-dark); }

/* Vacatures on profile */
.vacature-item {
  background: #fff;
  border: 1px solid var(--hg-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.vac-func-title { font-size: 15px; font-weight: 700; color: var(--hg-dark); }
.vac-details { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.vac-detail { font-size: 12px; color: var(--hg-muted); }

/* Sidebar cards */
.sidebar-card {
  background: #fff;
  border: 1px solid var(--hg-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--hg-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon { font-size: 16px; flex-shrink: 0; }
.info-label { font-size: 11px; color: rgba(26,18,8,0.4); margin-bottom: 2px; }
.info-val a { color: var(--hg-orange); }
.info-val a:hover { text-decoration: underline; }

/* Opening hours */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.closed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFEBEE;
  color: #C62828;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.open-dot { width: 6px; height: 6px; border-radius: 50%; background: #43A047; animation: pulse 2s infinite; }

.ot-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 13px; }
.ot-row:last-child { border-bottom: none; }
.ot-day { color: var(--hg-muted); }
.ot-time { font-weight: 500; color: var(--hg-dark); }
.ot-time.closed { color: rgba(26,18,8,0.3); font-weight: 400; }
.ot-today .ot-day { color: var(--hg-orange); font-weight: 500; }

.map-wrap { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 12px; }
.map-wrap iframe { width: 100%; height: 160px; border: none; display: block; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: #111008; padding: 60px 5vw 30px; color: rgba(255,255,255,0.45); }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; line-height: 1.6; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: #fff; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .gallery-img:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav-menu.open { width: 100%; border-radius: 0; right: 0; left: 0; }
  .hero { min-height: 70vh; }
  .hg-section { padding: 56px 5vw; }
  .filter-bar { flex-direction: column; }
  .filter-group { min-width: 100%; }
  .filter-bar .btn, .filter-reset { width: 100%; }
  .hero-stats { gap: 20px; }
  .blog-cols { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .cats-inner { gap: 8px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 120px 120px; }
  .profile-header { flex-direction: column; }
}
