/* =====================================================
   Đông Châu Leatherwear
   ===================================================== */

:root {
  --dc-rust:       #8B3A2A;
  --dc-olive:      #5C6B3A;
  --dc-olive-dark: #3D4A25;
  --dc-cream:      #F5EDD8;
  --dc-cream-dark: #EBE0C5;
  --dc-brown:      #3D2B1F;
  --dc-tan:        #C49A6C;
  --dc-white:      #FDFAF4;

  /* How far the green block hangs below the rust bar into the hero */
  --dc-overhang: 90px;
  /* Height of just the rust bar (above the overhang) */
  --dc-rust-h: 72px;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-script:  'Dancing Script', cursive;
  --f-body:    'Cormorant Garamond', Georgia, serif;
  --f-ui:      'Montserrat', sans-serif;
  --t: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--dc-brown);
  background: var(--dc-cream);
  margin: 0; padding: 0;
}

a { color: var(--dc-rust); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--dc-olive); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--f-display); color: var(--dc-brown); line-height: 1.2; font-weight: 700; }

/* Kill Astra's own header completely */
#masthead, .ast-site-header, .site-header,
.main-header-bar, .ast-primary-header-bar,
.ast-desktop-primary-menu, .ast-above-header-bar,
.ast-below-header-bar { display: none !important; }

/* Reset body padding Astra adds for its sticky header */
body {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Horizontal overflow op html/body zodat full-bleed blokken kunnen uitbreken uit .dc-site */
html { overflow-x: hidden; }


/* ══════════════════════════════════════════════════
   SITE WRAPPER — full width, no rails
   ══════════════════════════════════════════════════ */
.dc-site {
  width: 100%;
  background: var(--dc-cream);
  overflow-x: visible; /* full-bleed blokken mogen uitbreken; html clips horizontaal */
  margin-top: 0;
}

/* WordPress admin bar voegt html { margin-top: 32px } toe voor ingelogde gebruikers */
body.admin-bar .dc-site {
  margin-top: -32px;
}


/* ══════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════ */
.dc-header {
  position: relative;
  width: 100%;
  /* Total height = rust bar + how far green block hangs below */
  height: calc(var(--dc-rust-h) + var(--dc-overhang));
  z-index: 500;
}

/* ── Rust bar: fills only the top portion ─────── */
.dc-header__rust {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--dc-rust-h);
  background: var(--dc-rust);
}

/* ── Icons: absolute top-right inside rust bar ── */
.dc-header__icons {
  position: absolute;
  top: 0; right: 40px;
  height: var(--dc-rust-h);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.dc-icon-link {
  color: var(--dc-cream);
  display: flex; align-items: center;
  transition: color var(--t);
}
.dc-icon-link:hover { color: var(--dc-tan); }


/* ══════════════════════════════════════════════════
   GREEN LOGO + NAV BLOCK
   — Horizontally centred within .dc-header__rust
   — Starts at the very top of the rust bar (top: 0)
   — Extends down by --dc-overhang below the rust bar
   — Rounded bottom corners only
   ══════════════════════════════════════════════════ */
.dc-header__green {
  position: absolute;
  /* Horizontally centred */
  left: 50%;
  transform: translateX(-50%);
  /* Starts at top of rust bar */
  top: 0;
  /* Total height: rust bar + overhang */
  /* We don't set explicit height — let content define it */

  background: var(--dc-olive);
  border-radius: 0 0 18px 18px;
  min-width: 480px;
  max-width: 700px;

  /* Float above the hero */
  z-index: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);

  /* Clip nav row to follow rounded corners */
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Logo area ────────────────────────────────── */
.dc-header__logo {
  width: 100%;
  padding: 14px 52px 11px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.dc-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.dc-logo-name {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--dc-cream);
  line-height: 1;
}

.dc-logo-sub {
  font-family: var(--f-ui);
  font-size: 0.57rem;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(245,237,216,0.58);
  margin-top: 4px;
}

/* ── Nav row ──────────────────────────────────── */
.dc-nav { width: 100%; }

.dc-nav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;   /* single row */
}

.dc-nav__list > li { position: relative; }

.dc-nav__list > li > a {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dc-cream) !important;
  padding: 11px 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}

.dc-nav__list > li > a:hover,
.dc-nav__list > li.current-menu-item > a,
.dc-nav__list > li.current_page_item > a {
  color: var(--dc-tan) !important;
  background: rgba(0,0,0,0.18);
}

/* Active indicator */
.dc-nav__list > li.current-menu-item > a,
.dc-nav__list > li.current_page_item > a {
  border-bottom: 2px solid var(--dc-tan);
}

/* Dropdown */
.dc-nav__list .sub-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  min-width: 180px;
  background: var(--dc-olive-dark);
  border-top: 2px solid var(--dc-tan);
  list-style: none; margin: 0; padding: 6px 0; z-index: 700;
  border-radius: 0 0 10px 10px;
}
.dc-nav__list li:hover > .sub-menu { display: block; }
.dc-nav__list .sub-menu a {
  display: block;
  font-family: var(--f-ui); font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dc-cream) !important; padding: 10px 18px; text-decoration: none;
  transition: background var(--t), color var(--t);
}
.dc-nav__list .sub-menu a:hover { color: var(--dc-tan) !important; background: rgba(0,0,0,0.12); }


/* ══════════════════════════════════════════════════
   HERO
   — Full width
   — Sits directly below .dc-header (no gap)
   — The green block overlaps the top of the hero
     via the --dc-overhang
   ══════════════════════════════════════════════════ */
.dc-hero {
  position: relative;
  /* Push hero up so the green overhang covers it */
  margin-top: calc(-1 * var(--dc-overhang));
  height: 520px;
  overflow: hidden;
  width: 100%;
}

.dc-hero__image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  display: block;
}

@media (max-width: 960px) {
  .dc-hero__image {
    object-position: center center;
  }
  .dc-hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(12,4,0,0.60) 0%,
      rgba(12,4,0,0.25) 60%,
      transparent 100%
    );
  }
  .dc-hero__content {
    left: 0;
    right: 0;
    max-width: none;
    padding: 0 24px;
    text-align: center;
    top: 30px;
  }
}

.dc-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,4,0,0.70) 0%,
    rgba(12,4,0,0.28) 55%,
    transparent 100%
  );
}

.dc-hero__content {
  position: absolute;
  /* Start below the overhanging green block */
  top: calc(var(--dc-overhang) + 60px);
  left: 360px;
  max-width: 560px;
}

.dc-hero__title {
  font-family: var(--f-display);
  font-size: 3.2rem; line-height: 1.1;
  color: var(--dc-cream); margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55);

}
.dc-hero__title em {
  font-family: var(--f-script); font-style: normal;
  font-size: 3.7rem; color: var(--dc-tan);
}

.dc-hero__sub {
  font-family: var(--f-body); font-size: 1.05rem; font-weight: 300;
  color: rgba(245,237,216,0.88); line-height: 1.75; margin-bottom: 28px;
}

.dc-hero__content > * { opacity: 0; animation: dcUp 0.7s ease forwards; }
.dc-hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.dc-hero__content > *:nth-child(2) { animation-delay: 0.3s; }
.dc-hero__content > *:nth-child(3) { animation-delay: 0.5s; }
@keyframes dcUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.dc-btn {
  display: inline-block;
  font-family: var(--f-ui); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--dc-cream) !important;
  background: var(--dc-rust); border: 1.5px solid transparent;
  padding: 14px 32px; cursor: pointer; text-decoration: none;
  transition: background var(--t);
}
.dc-btn:hover { background: var(--dc-brown); color: var(--dc-cream) !important; }
.dc-btn--outline {
  background: transparent; border: 1.5px solid var(--dc-cream);
  color: var(--dc-cream) !important;
}
.dc-btn--outline:hover { background: rgba(255,255,255,0.12); }
.dc-btn--dark {
  background: transparent; border: 1.5px solid var(--dc-rust) !important;
  color: var(--dc-rust) !important;
}
.dc-btn--dark:hover { background: var(--dc-rust) !important; color: var(--dc-cream) !important; }


/* ══════════════════════════════════════════════════
   HOMEPAGE LAYOUT
   ══════════════════════════════════════════════════ */
.dc-home-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  background: var(--dc-white);
  padding: 52px 40px;
  gap: 0;
}
.dc-home-main { padding-right: 44px; border-right: 1px solid var(--dc-cream-dark); }
.dc-home-sidebar { padding-left: 40px; }

.dc-section-title {
  font-family: var(--f-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--dc-brown); margin-bottom: 30px; padding-left: 16px; position: relative;
}
.dc-section-title::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 16px; background: var(--dc-rust);
}


/* ══════════════════════════════════════════════════
   PRODUCT GRID
   ══════════════════════════════════════════════════ */
.dc-products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 24px; }

.dc-product-card { background: transparent; border: none; cursor: pointer; position: relative; transition: transform 0.3s ease; }
.dc-product-card:hover { transform: translateY(-3px); }

.dc-product-card__img-wrap {
  background: var(--dc-cream-dark); aspect-ratio: 1; overflow: hidden;
  margin-bottom: 10px; position: relative;
  display: flex; align-items: center; justify-content: center;
}

.dc-product-overlay {
  position: absolute; inset: 0; background: rgba(61,43,31,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t); z-index: 2;
}
.dc-product-card:hover .dc-product-overlay { opacity: 1; }
.dc-product-overlay span {
  font-family: var(--f-ui); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--dc-cream); border: 1.5px solid var(--dc-cream); padding: 8px 20px;
}

.dc-product-card__price { font-family: var(--f-body); font-size: 1rem; font-weight: 600; color: var(--dc-brown); }
.dc-product-card__name {
  font-family: var(--f-ui); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: #888; margin-top: 2px; padding: 0 !important;
}


/* ══════════════════════════════════════════════════
   STORY CARD
   ══════════════════════════════════════════════════ */
.dc-story-card {
  background: var(--dc-olive); padding: 38px 30px; text-align: center;
  position: relative; overflow: hidden;
}
.dc-story-card::before {
  content: ''; position: absolute; top: -24px; right: -24px;
  width: 110px; height: 110px; border: 2px solid rgba(255,255,255,0.07); border-radius: 50%;
}
.dc-story-card__avatar {
  width: 92px; height: 92px; border-radius: 50%; border: 3px solid var(--dc-tan);
  overflow: hidden; margin: 0 auto 20px; background: var(--dc-cream-dark);
}
.dc-story-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.dc-story-card__title {
  font-family: var(--f-ui); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--dc-cream); margin-bottom: 16px; line-height: 1.55;
}
.dc-story-card__text { font-family: var(--f-body); font-size: 0.96rem; font-weight: 300; color: rgba(245,237,216,0.82); line-height: 1.85; }


/* ══════════════════════════════════════════════════
   DIVIDER
   ══════════════════════════════════════════════════ */
.dc-divider { display: flex; align-items: center; gap: 18px; padding: 22px 40px; background: var(--dc-cream-dark); }
.dc-divider__line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--dc-tan), transparent); }
.dc-divider__ornament { font-family: var(--f-display); color: var(--dc-rust); font-size: 1.3rem; line-height: 1; }


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.dc-footer {
  background: var(--dc-brown); padding: 52px 40px 40px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 44px;
  color: rgba(245,237,216,0.72);
}
.dc-footer__logo-name { font-family: var(--f-display); font-size: 1.5rem; color: var(--dc-cream); margin-bottom: 4px; letter-spacing: 2px; }
.dc-footer__logo-sub  { font-family: var(--f-ui); font-size: 0.58rem; letter-spacing: 5px; text-transform: uppercase; color: var(--dc-tan); margin-bottom: 18px; }
.dc-footer__text      { font-family: var(--f-body); font-size: 0.96rem; line-height: 1.85; font-weight: 300; }
.dc-footer-heading    { font-family: var(--f-ui); font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--dc-tan); margin-bottom: 18px; }
.dc-footer__links     { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.dc-footer__links a   { font-family: var(--f-body); font-size: 1rem; color: rgba(245,237,216,0.65); text-decoration: none; transition: color var(--t); }
.dc-footer__links a:hover { color: var(--dc-tan); }
.dc-footer-bottom { background: #1a0f08; padding: 16px 40px; text-align: center; }
.dc-footer-bottom p { font-family: var(--f-ui); font-size: 0.58rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,237,216,0.3); margin: 0; }

footer.site-footer, .ast-small-footer, .ast-footer-overlay { display: none !important; }


/* ══════════════════════════════════════════════════
   ASTRA SCROLL-TO-TOP OVERRIDE
   ══════════════════════════════════════════════════ */
.ast-scroll-top { background-color: #D37D09 !important; }
.ast-scroll-top:hover { background-color: #b86a07 !important; }


/* ══════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════ */
.dc-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.dc-reveal.dc-visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --dc-overhang: 0px; }
  .dc-header__green { min-width: 100%; border-radius: 0; position: static; transform: none; }
  .dc-header { height: auto; }
  .dc-header__rust { position: static; height: auto; display: flex; flex-direction: column; align-items: center; padding-bottom: 0; }
  .dc-hero { margin-top: 0; height: 360px; }
  .dc-hero__content { top: 40px; left: 28px; max-width: 320px; }
  .dc-hero__title { font-size: 2rem; }
  .dc-hero__title em { font-size: 2.3rem; }
  .dc-home-layout { grid-template-columns: 1fr; padding: 32px 24px; }
  .dc-home-main { padding-right: 0; border-right: none; border-bottom: 1px solid var(--dc-cream-dark); padding-bottom: 32px; margin-bottom: 32px; }
  .dc-home-sidebar { padding-left: 0; }
  .dc-products-grid { grid-template-columns: repeat(2,1fr); }
  .dc-footer { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
}

@media (max-width: 600px) {
  .dc-nav__list > li > a { padding: 9px 10px; font-size: 0.6rem; }
  .dc-hero { height: 300px; }
  .dc-hero__title { font-size: 1.6rem; }
  .dc-hero__title em { font-size: 1.85rem; }
  .dc-hero__content { left: 18px; max-width: 260px; }
}

/* ══════════════════════════════════════════════════
   ASTRA NUCLEAR OVERRIDE
   Kill every possible Astra header element
   ══════════════════════════════════════════════════ */
#masthead,
#masthead *,
.ast-site-header,
.site-header,
.main-header-bar,
.main-header-bar *,
.ast-primary-header-bar,
.ast-primary-header-bar *,
.ast-desktop-primary-menu,
.ast-desktop-primary-menu *,
.ast-above-header-bar,
.ast-below-header-bar,
:not(body).ast-header-break-point,
:not(body).ast-header-break-point *,
.ast-mobile-header-bar,
.ast-mobile-header-bar *,
.ast-mobile-popup,
.ast-mobile-popup *,
.ast-full-screenoverlay,
.ast-overlay,
.menu-toggle,
.ast-menu-toggle,
.ast-button-wrap,
.site-branding,
.ast-site-title,
.ast-logo-svg,
.custom-logo-link,
header.site-header,
.ast-main-header-wrap {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* Zorg dat body.ast-header-break-point (Astra's mobile body-class) nooit verborgen raakt */
body.ast-header-break-point {
  display: block !important;
  visibility: visible !important;
  overflow-x: hidden !important;
  padding-top: 0 !important;
}

/* Verwijder eventuele pseudo-element overlays die Astra injecteert */
body.ast-header-break-point::before,
body.ast-header-break-point::after {
  display: none !important;
  content: none !important;
}

/* ══ FIX: Nav horizontal, geen bullets, witte letters ══ */

/* Astra voegt standaard ul-styling toe — dit overschrijven we hard */
.dc-nav__list,
.dc-nav ul.dc-nav__list,
nav.dc-nav ul,
nav.dc-nav ul.menu,
.dc-header__green ul,
.dc-header__green ul.menu {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

@media (min-width: 961px) {
  .dc-nav__list,
  .dc-nav ul.dc-nav__list,
  nav.dc-nav ul,
  nav.dc-nav ul.menu,
  .dc-header__green ul,
  .dc-header__green ul.menu {
    flex-wrap: nowrap !important;
  }
}

.dc-nav__list > li,
.dc-header__green ul > li {
  display: block !important;
  float: none !important;
  padding: 0 !important;
}

/* Bullets verwijderen */
.dc-nav__list > li::before,
.dc-nav__list > li::marker,
.dc-header__green ul > li::before,
.dc-header__green ul > li::marker {
  content: none !important;
  display: none !important;
}

.dc-nav__list > li > a,
.dc-header__green ul > li > a,
.dc-header__green ul.menu > li > a {
  display: block !important;
  font-family: var(--f-ui) !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #F5EDD8 !important;   /* cream wit — hard gekleurd */
  padding: 12px 16px !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: background 0.2s, color 0.2s !important;
}

.dc-nav__list > li > a:hover,
.dc-header__green ul > li > a:hover,
.dc-nav__list > li.current-menu-item > a,
.dc-nav__list > li.current_page_item > a {
  color: #C49A6C !important;
  background: rgba(0,0,0,0.15) !important;
}

/* Green block breder — desktop only */
@media (min-width: 961px) {
  .dc-header__green {
    min-width: 600px !important;
    max-width: 820px !important;
  }
}

/* ══ WordPress Admin Bar — zorg dat hij zichtbaar blijft ══ */
#wpadminbar {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  position: fixed !important;
  top: 0 !important;
  z-index: 99999 !important;
}

/* Verschuif de header naar beneden als adminbar zichtbaar is */
.admin-bar .dc-header {
  margin-top: 32px;
}

/* Op telefoon is de admin bar 44px hoog */
@media (max-width: 782px) {
  .admin-bar .dc-header {
    margin-top: 44px;
  }
}

/* ══════════════════════════════════════════════════
   GENERIC PAGE CONTENT
   ══════════════════════════════════════════════════ */
.dc-page-content {
  background: var(--dc-white);
  min-height: 40vh;
}

.dc-page-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
}

.dc-page-title {
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--dc-brown);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dc-cream-dark);
}

.dc-page-entry {
  font-family: var(--f-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--dc-brown);
}

.dc-page-entry p { margin-bottom: 1.4em; }
.dc-page-entry h2 { font-size: 1.6rem; margin: 1.6em 0 0.6em; }
.dc-page-entry h3 { font-size: 1.3rem; margin: 1.4em 0 0.5em; }
.dc-page-entry img { border-radius: 4px; margin: 1.2em 0; }
.dc-page-entry a { color: var(--dc-rust); border-bottom: 1px solid currentColor; }
.dc-page-entry a:hover { color: var(--dc-olive); }
