/* =========================
   THEME VARIABLES (kleuren)
   ========================= */
:root{
  --paper:#f8f6f3;                 /* achtergrond “papier” */
  --ink:#1a1814;                   /* tekstkleur */
  --muted: rgba(26,24,20,0.72);    /* secondary tekst */
  --line: rgba(26,24,20,0.10);     /* borders / lijnen */
}

/* =========================
   BASE / RESET LIGHT
   ========================= */
*{ box-sizing: border-box; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700; /* basis “vet” look */
}

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

/* ===== Responsive helpers ===== */
.desktop-only{ display: flex; }
.mobile-only{ display: none; }

@media (max-width: 820px){
  .desktop-only{ display: none !important; }
  .mobile-only{ display: inline-flex !important; }

  /* op mobiel: grid zodat hamburger rechts past */
  .navbar{
    padding: 0 18px;
    grid-template-columns: 1fr auto 1fr; /* logo blijft mooi center */
  }
}

/* =========================
   NAVBAR (fixed + glass)
   ========================= */
.navbar{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 72px;
  z-index: 50;

  display: grid;
  grid-template-columns: 1fr auto 1fr; /* links - logo - rechts */
  align-items: center;

  padding: 0 40px;

  background: rgba(10,10,10,0.18);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Links: knoppen naast elkaar */
.nav-left{
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Center: logo echt in het midden */
.nav-center{ justify-self: center; }

/* Rechts */
.nav-right{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Navbar links */
.nav-btn{
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.nav-btn:hover{
  border-bottom-color: rgba(255,255,255,0.7);
}

/* Rond logo “WG” */
.logo-mark{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);

  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;

  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  text-decoration: none;
}

/* Navbar scrolled state */
.navbar.scrolled{
  background: rgba(248,246,243,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.navbar.scrolled a{
  color: #1a1814;
}

/* =========================
   MOBILE MENU (hamburger + side menu)
   ========================= */

/* Hamburger: standaard verbergen (desktop) */
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  margin-left: 10px;
}

.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
}

/* Overlay */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 60;
}

/* Side menu */
.side-menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 360px);

  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255,255,255,0.08);

  transform: translateX(100%);
  transition: transform .22s ease;
  z-index: 70;

  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-menu-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.side-title{
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.menu-close{
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  cursor: pointer;
}

.side-link{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  padding: 12px 10px;
  border-radius: 12px;
}
.side-link:hover{
  background: rgba(255,255,255,0.08);
}

/* Open state */
.menu-open .menu-overlay{
  opacity: 1;
  pointer-events: auto;
}
.menu-open .side-menu{
  transform: translateX(0);
}

/* =========================
   MOBILE BEHAVIOR
   ========================= */
@media (max-width: 768px){

  /* Logo perfect gecentreerd: nav-left blijft ruimte innemen maar is onzichtbaar */
  .nav-left{
    visibility: hidden;
  }

  /* Atelier link weg op mobiel (menu zit in side menu) */
  .desktop-link{
    display: none !important;
  }

  /* Hamburger tonen op mobiel */
  .hamburger{
    display: inline-flex;
  }
}

/* Hamburger wordt donker wanneer navbar scrolled is */
.navbar.scrolled .hamburger span{
  background: #1a1814;
}

/* =========================
   PAGE HERO (top banner)
   ========================= */
.page-hero{
  padding-top: 72px; /* ruimte voor fixed navbar */
  background: linear-gradient(to bottom, rgba(26,24,20,0.95), rgba(26,24,20,0.70));
}

.page-hero-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px 70px;
  text-align: center;
  color: rgba(255,255,255,0.95);
}

.page-hero-inner h1{
  margin: 0 0 10px 0;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 1px;
  font-weight: 900;
}

.page-hero-inner p{
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.6px;
  font-weight: 800;
}

/* =========================
   MAIN CONTAINER
   ========================= */
.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 90px;
}

/* =========================
   PANELS (cards in media page)
   ========================= */
.panel{
  margin-top: 22px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.06);
}

.panel-head h2{
  margin: 0 0 6px 0;
  font-size: 28px;
  font-weight: 900;
}
.panel-head p{
  margin: 0 0 18px 0;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   ANNOUNCEMENTS GRID
   ========================= */
.announce-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.announce{
  border-radius: 18px;
  background: rgba(26,24,20,0.05);
  border: 1px solid rgba(26,24,20,0.10);
  padding: 16px;
}

.announce-badge{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(26,24,20,0.12);
  border: 1px solid rgba(26,24,20,0.18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.announce-badge.soft{ background: rgba(255,255,255,0.70); }

.announce h3{ margin: 10px 0 8px; font-weight: 900; }
.announce p{ margin: 0; color: var(--muted); line-height: 1.6; }
.announce-meta{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(26,24,20,0.55);
  font-weight: 800;
}

/* =========================
   NEWS GRID (als je die gebruikt)
   ========================= */
.news-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card{
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(26,24,20,0.10);
  padding: 16px;
}

.news-date{
  font-size: 12px;
  color: rgba(26,24,20,0.55);
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.news-card h3{ margin: 10px 0 8px; font-weight: 900; }
.news-card p{ margin: 0 0 12px; color: var(--muted); line-height: 1.6; }

/* herbruikbare link style */
.link{
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid rgba(26,24,20,0.25);
}
.link:hover{ border-bottom-color: rgba(26,24,20,0.60); }

/* =========================
   SOCIAL GRID
   ========================= */
.social-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.social-card{
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(26,24,20,0.10);
  padding: 16px;
}

.social-title{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.social-title h3{ margin: 0; font-weight: 900; }

/* Instagram box */
.ig-box{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26,24,20,0.10);
  background: rgba(26,24,20,0.04);
}

.ig-media{
  height: 320px;
  display: grid;
  place-items: center;
  background: #f8f6f3;
}
.ig-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-video{
  font-weight: 900;
  color: rgba(26,24,20,0.75);
  padding: 18px;
  text-align: center;
}

.ig-caption{
  padding: 12px 14px 8px;
  font-weight: 800;
  color: rgba(26,24,20,0.80);
}
.ig-meta{
  padding: 0 14px 12px;
  font-size: 12px;
  color: rgba(26,24,20,0.55);
  font-weight: 900;
}

.social-placeholder{
  border-radius: 16px;
  border: 1px dashed rgba(26,24,20,0.25);
  padding: 14px;
  background: rgba(26,24,20,0.03);
  color: rgba(26,24,20,0.75);
}
.social-placeholder code{ font-weight: 900; }

/* =========================
   CONTACT BLOCK (herbruikbaar)
   ========================= */
.contact-block{ padding: 64px 24px; }

.contact-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.contact-head h2{ margin: 0 0 6px 0; font-size: 34px; }
.contact-head p{
  margin: 0 0 22px 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
}

.contact-card{
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  padding: 20px;
}

.contact-card h3{
  margin: 0 0 14px 0;
  font-size: 18px;
  letter-spacing: 0.6px;
}

.contact-card a{ color: #16110c; }

.contact-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.contact-list li{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,24,20,0.08);
}
.contact-list li:last-child{ border-bottom: 0; }

.contact-list .label{
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.8;
}

.contact-list .value a{
  border-bottom: 1px solid rgba(26,24,20,0.25);
}

.hours-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.hours-col{
  border: 1px solid rgba(26,24,20,0.08);
  border-radius: 14px;
  padding: 14px;
  background: rgba(26,24,20,0.03);
}

.hours-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  margin-bottom: 10px;
}

.hours{
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours li{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(26,24,20,0.08);
  font-size: 14px;
}
.hours li:last-child{ border-bottom: 0; }

.hours li span:first-child{
  font-weight: 900;
  width: 28px;
}

.hours-note{
  margin: 14px 0 0 0;
  font-size: 12px;
  color: rgba(26,24,20,0.70);
  line-height: 1.55;
}

/* =========================
   FOOTER
   ========================= */
.footer{
  padding: 28px 24px;
  border-top: 1px solid rgba(26,24,20,0.10);
  background: rgba(255,255,255,0.65);
}

/* Desktop layout */
.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(26,24,20,0.75);
  text-align: center;
}

.footer-inner a{
  color: rgba(26,24,20,0.75);
  text-decoration: none;
}
.footer-inner a:hover{
  text-decoration: underline;
}

.footer-legal{
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(26,24,20,0.55);
}

.footer-legal a{
  color: rgba(26,24,20,0.55);
  text-decoration: none;
}
.footer-legal a:hover{
  text-decoration: underline;
}

/* =========================
   MOBILE OPTIMALISATIE
   ========================= */
@media (max-width: 768px){

  .footer{
    padding: 32px 18px;
  }

  /* Hoofdtekst onder elkaar */
  .footer-inner{
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
  }

  /* Puntjes verbergen op mobiel */
  .footer .dot{
    display: none;
  }

  /* Legal links rustiger & leesbaarder */
  .footer-legal{
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
  }
}


/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .navbar{ padding: 0 18px; }
  .announce-grid{ grid-template-columns: 1fr; }
  .news-grid{ grid-template-columns: 1fr; }
  .social-grid{ grid-template-columns: 1fr; }
  .ig-media{ height: 260px; }
  .hours-grid{ grid-template-columns: 1fr; }
}
