:root{
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: rgba(15,23,42,.72);
  --line: rgba(15,23,42,.10);
  --accent: #2563eb;
  --accent2: #0ea5e9;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(15,23,42,.08);
  --shadow2: 0 26px 80px rgba(15,23,42,.12);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(1200px 600px at 80% 0%, rgba(14,165,233,.10), transparent 60%),
    var(--bg);
  color: var(--text);
}

a{ color: inherit; }
.container{ width:min(1120px, calc(100% - 40px)); margin:0 auto; }
.muted{ color: var(--muted); }
.page{ padding: 34px 0 64px; }

.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(246,247,251,.74);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit; }
.brand-logo{ width:46px; height:46px; object-fit:contain; }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-name{ font-weight:900; letter-spacing:.10em; font-size: 15px; }
.brand-tagline{ font-size: 13px; color: var(--muted); margin-top:4px; }

.nav{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end; }
.nav a{
  text-decoration:none; color: rgba(15,23,42,.82);
  padding: 10px 12px; border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover{ border-color: var(--line); background: rgba(255,255,255,.70); }
.nav a.active{
  border-color: rgba(37,99,235,.26);
  background: rgba(37,99,235,.10);
  color: rgba(15,23,42,.95);
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,.35);
  background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(14,165,233,.10));
  color: rgba(15,23,42,.95);
  font-weight: 800;
  cursor: pointer;
  text-decoration:none;
  gap: 10px;
}
.btn:hover{ filter: brightness(1.02); }
.btn.secondary{
  border-color: rgba(15,23,42,.14);
  background: rgba(255,255,255,.70);
  font-weight: 750;
}

.hero{ padding: 42px 0 10px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.hero-card{
  padding: 22px;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow2);
  overflow:hidden;
  position: relative;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(800px 300px at 20% 0%, rgba(37,99,235,.16), transparent 60%),
              radial-gradient(800px 300px at 80% 0%, rgba(14,165,233,.14), transparent 60%);
  pointer-events:none;
}
.hero-content{ position:relative; z-index:1; }
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 7px 12px;
  border: 1px solid rgba(37,99,235,.18);
  background: rgba(37,99,235,.08);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing:.06em;
  color: rgba(15,23,42,.88);
  font-size: 12px;
  text-transform: uppercase;
}
.kicker .dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(14,165,233,.95));
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.6vw, 54px);
  letter-spacing: .03em;
}
.lede{ font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 62ch; }
.hero-actions{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 16px; }

.quickcards{ display:grid; grid-template-columns: 1fr; gap: 12px; }
.quickcard{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.74);
}
.quickcard h3{ margin:0 0 6px 0; font-size: 14px; letter-spacing:.04em; }
.quickcard p{ margin:0; color: var(--muted); font-size: 13px; line-height:1.5; }

.section{ padding: 28px 0; }
.section h2{ font-size: 22px; margin: 0 0 12px 0; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}

.band-card{ padding: 16px; }
.band-card h3{ margin:0 0 6px; font-size: 16px; }
.band-card p{ margin:0 0 10px; color: var(--muted); line-height:1.5; font-size: 13px; }
.band-actions{ display:flex; gap: 10px; flex-wrap:wrap; }

.profile{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){
  .profile{ grid-template-columns: 1fr; }
}
.profile-card{ padding: 18px; position: relative; overflow:hidden; }
.profile-photo{
  width:100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit:cover;
  aspect-ratio: 1 / 1;
}
.profile-card h2{ margin-top:0; }
.prose{ color: rgba(15,23,42,.86); line-height: 1.75; }
.prose p{ margin: 0 0 12px 0; }

.badges{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 12px; }
.badge{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.72);
  font-weight: 750;
  font-size: 12px;
}

.form{ padding: 18px; }
label{ display:block; font-weight:700; margin: 12px 0 8px; }
input, textarea{
  width:100%;
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
  background: #fff;
}
input:focus, textarea:focus{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 780px){
  .grid-2{ grid-template-columns: 1fr; }
}

.notice{
  padding: 12px 14px;
  border-radius: 14px;
  margin: 14px 0;
  border: 1px solid var(--line);
}
.notice.ok{ background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.25); }
.notice.error{ background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.25); }

.fineprint{ margin-top:10px; font-size: 12px; color: var(--muted); }
.hp{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

.site-footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(255,255,255,.62);
}
.footer-inner{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }

/* Header brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0b1220;
}

.brand-tagline {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 3px;
}

/* =========================================================
   CORBOOKING – Header brand (force groter)
   Plak dit ONDERAAN site.css
   ========================================================= */

/* Zorg dat brand netjes uitlijnt */
.site-header .brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:inherit;
}

/* Force: logo echt groter */
.site-header .brand-logo{
  width:68px;
  height:68px;
  object-fit:contain;
  flex:0 0 auto;
  /* Als je PNG veel witruimte heeft: dit maakt het optisch groter */
  transform: scale(1.10);
  transform-origin:left center;
}

/* Tekst blok naast het logo */
.site-header .brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

/* CORBOOKING titel */
.site-header .brand-name{
  font-weight:900;
  letter-spacing:.10em;
  font-size:22px;
  color: var(--text);
}

/* Tagline */
.site-header .brand-tagline{
  font-size:14px;
  color: var(--muted);
  margin-top:4px;
}

/* Mobiel iets compacter */
@media (max-width: 780px){
  .site-header .header-inner{
    padding: 12px 0;
    gap: 12px;
  }
  .site-header .brand-logo{
    width:54px;
    height:54px;
    transform: scale(1.06);
  }
  .site-header .brand-name{
    font-size:18px;
  }
  .site-header .brand-tagline{
    font-size:13px;
  }
}

