/* ============================================================
   nav-final.css — MASTER NAV (v310) — Weekendje Duitsland logo
   - Header full width + fixed
   - Logo gestuurd op breedte i.p.v. hoogte
   - Geschikt voor breed logo met slogan
   - Mobiel: hamburger netjes naast logo
   - Dropdown open via body.sf-menu-open
   - Geen bullets hier
   ============================================================ */

:root{
  --wrap-max: 1200px;
  --wrap-pad: 16px;

  --nav-h-desktop: 84px;
  --nav-h-mobile: 92px;

  --logo-slot-max-desktop: 260px;
  --logo-slot-max-mobile: 230px;

  --toggle-size: 44px;

  --link-gap: 22px;
  --menu-right-offset: 40px;

  --border: #e5e5e5;
  --text: #222;

  --underline-offset: 6px;
  --underline-thickness: 2px;

  --mobile-toggle-gap: 12px;
}

/* ============================================================
   HEADER — full width fixed
   ============================================================ */

header.wrapper{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 6000;

  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(0,0,0,.10);

  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;

  height: var(--nav-h-desktop);
}

/* ============================================================
   NAV container
   ============================================================ */

#sfNav.sf-nav{
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);

  height: var(--nav-h-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
}

/* ============================================================
   LOGO
   ============================================================ */

.sf-nav__logo{
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  max-width: var(--logo-slot-max-desktop);
  width: 100%;
  text-decoration: none;
}

.sf-nav__logo img{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

/* ============================================================
   MENU — DESKTOP
   ============================================================ */

.sf-nav__list{
  display: flex;
  align-items: center;
  gap: var(--link-gap);
  list-style: none;
  margin: 0;
  padding: 0;

  margin-left: auto;
  margin-right: var(--menu-right-offset);
}

.sf-nav__list li{
  margin: 0;
  padding: 0;
  border: 0;
}

.sf-nav__list a{
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 8px 6px;

  outline: none;
  box-shadow: none;
  border: 0;
  background: none;
}

.sf-nav__list a:hover,
.sf-nav__list a:focus{
  text-decoration: underline;
  text-decoration-thickness: var(--underline-thickness);
  text-underline-offset: var(--underline-offset);
}

.sf-nav__list a:focus-visible{
  outline: none;
  box-shadow: none;
}

/* ============================================================
   TOGGLE — desktop uit
   ============================================================ */

.sf-nav__toggle{
  display: none;

  width: var(--toggle-size);
  height: var(--toggle-size);

  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;

  align-items: center;
  justify-content: center;

  font-size: 22px;
  line-height: 1;
  color: var(--text);

  outline: none;
  box-shadow: none;

  flex: 0 0 auto;
  border-radius: 10px;
}

/* ============================================================
   MOBIEL / TABLET
   ============================================================ */

@media (max-width: 980px), (pointer: coarse){

  header.wrapper{
    height: var(--nav-h-mobile);
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
  }

  #sfNav.sf-nav{
    height: var(--nav-h-mobile);
    gap: var(--mobile-toggle-gap);
  }

  .sf-nav__logo{
    max-width: var(--logo-slot-max-mobile);
    flex: 0 1 auto;
    min-width: 0;
  }

  .sf-nav__logo img{
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
  }

  .sf-nav__toggle{
    display: inline-flex;
    margin-left: auto;
    flex: 0 0 auto;
  }

  #sfNav .sf-nav__list{
    position: fixed;
    top: var(--nav-h-mobile);
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: flex-start;

    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 26px rgba(0,0,0,.10);

    padding: 12px var(--wrap-pad) 16px;
    gap: 10px;

    display: none;
    z-index: 6500;

    margin-left: 0;
    margin-right: 0;
  }

  body.sf-menu-open #sfNav .sf-nav__list{
    display: flex;
  }

  #sfNav .sf-nav__list a{
    padding: 12px 6px;
    width: 100%;
    font-size: 17px;
  }

  #sfNav .sf-nav__list li,
  #sfNav .sf-nav__list li:first-child{
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  #sfNav .sf-nav__list a,
  #sfNav .sf-nav__list a.current,
  #sfNav .sf-nav__list a:hover,
  #sfNav .sf-nav__list a:focus,
  #sfNav .sf-nav__list a:focus-visible{
    text-decoration: none !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  #sfNav .sf-nav__toggle:focus,
  #sfNav .sf-nav__toggle:focus-visible{
    outline: none !important;
    box-shadow: none !important;
  }
}

/* ============================================================
   EXTRA MOBIEL — logo-slot iets ruimer houden
   ============================================================ */

@media (max-width: 980px){

  header.wrapper #sfNav.sf-nav .sf-nav__logo{
    max-width: 245px !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
  }

  header.wrapper #sfNav.sf-nav .sf-nav__logo img{
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
  }

  header.wrapper #sfNav.sf-nav{
    gap: 12px !important;
  }
}