@charset "UTF-8";
/* CSS Document */

:root{
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #222222;
  --muted: #777777;
  --border: rgba(0,0,0,0.10);

  --header-bg: rgba(255,255,255,0.86);
  --search-bg: rgba(0,0,0,0.04);

  --link: rgb(51,153,204);
  --link-hover: #444444;
}

/* Always respect hidden */
.vlv-shell [hidden]{ display: none !important; }

/* Nav typography baseline (so it doesn't inherit weird page fonts) */
.vlv-header,
.vlv-explore-menu,
.vlv-nav,
.vlv-links,
.vlv-links a,
.vlv-links button,
.vlv-menu-link,
.vlv-menu-heading{
  font-family: Helvetica, Arial, sans-serif;
}
.vlv-links button,
.vlv-menu-close,
.vlv-search-btn{
  font: inherit;
}

/* =========================
   HEADER / NAV
   ========================= */

.vlv-header{
  position: fixed; /* pinned on explore pages */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: var(--header-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0,0,0,0.06);
}

html.vlv-night .vlv-header{
  border-bottom-color: var(--border);
}

/* IMPORTANT: this is the Tumblr grid container */
.vlv-nav{
  display: grid;
  align-items: center;
  gap: 16px;
  padding: 10px 0px;
}

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

.vlv-star{
  width: 26px;
  height: 26px;
  display: block;
  opacity: 0.55;
  transition: opacity 0.15s ease, filter 0.15s ease;
}
.vlv-brand:hover .vlv-star{ opacity: 1; }

.vlv-brand,
.vlv-brand:visited{
  color: var(--muted);
  text-decoration: none;
}
.vlv-brand:hover{
  color: var(--text);
  text-decoration: none;
}

.vlv-brand-text{
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Links cluster */
.vlv-links{
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

/* Links look */
.vlv-links a,
.vlv-links a:visited{
  color: #777 !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 400;
}
.vlv-links a:hover{
  color: #000 !important;
  text-decoration: none !important;
}

/* Explore + hamburger should look like links (exact reset) */
.vlv-links button.vlv-explore-btn,
.vlv-links button.vlv-menu-btn{
  font-size: 13px;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: #777;
  cursor: pointer;
  font-family: inherit;
  font-weight: 400;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}
.vlv-links button.vlv-explore-btn:hover,
.vlv-links button.vlv-menu-btn:hover{
  color: #000;
}

/* Sun button */
.vlv-night{
  border: 0;
  background: transparent;
  font-size: 24px;
  opacity: 0.75;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
  line-height: 1;
}
.vlv-night:hover{
  color: var(--text);
  opacity: 1;
}

/* Search */
.vlv-search{ min-width: 0; }
.vlv-search-form{
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.vlv-search-form input{
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: var(--search-bg);
  padding: 0 34px 0 8px;
  font-size: 15px;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--text);
}
.vlv-search-form input::placeholder{
  font-size: 13px;
  color: var(--muted);
}
.vlv-search-btn{
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
}
.vlv-search-btn:hover{ color: var(--text); }
.vlv-search-btn svg{
  display: block;
  width: 18px;
  height: 18px;
}

/* -------------------------
   DESKTOP: LEFT / TRUE CENTER / RIGHT (THIS is the spacing you want)
   ------------------------- */
@media (min-width: 721px){
  .vlv-nav{
    grid-template-columns: 1fr auto minmax(280px, 560px) auto 1fr;
  }
  .vlv-brand{ grid-column: 2; justify-self: start; }
  .vlv-search{ grid-column: 3; justify-self: center; width: 100%; }
  .vlv-links{ grid-column: 4; justify-self: end; }

  /* allow search to shrink first */
  .vlv-search{ min-width: 0; }
  .vlv-search-form{ max-width: 560px; width: 100%; }

  /* Desktop: hamburger hidden */
  .vlv-menu-btn{ display: none; }
}

/* -------------------------
   MOBILE: STAR + SEARCH + HAMBURGER (external improvement)
   ------------------------- */
@media (max-width: 720px){
  .vlv-nav{
    grid-template-columns: auto 1fr auto !important;
    gap: 10px;
    padding: 8px;
    align-items: center;
  }

  .vlv-brand-text{ display: none; }

  /* Keep nav cluster for hamburger */
  .vlv-links{
    display: inline-flex !important;
    justify-content: flex-end;
    gap: 0;
  }

  /* Hide Photos + Explore + Night on the top row */
  .vlv-links a{ display: none !important; }
  .vlv-explore-btn{ display: none !important; }
  .vlv-night{ display: none !important; }

  /* Show hamburger */
  .vlv-menu-btn{
    display: inline-flex !important;
    font-size: 22px;
    padding: 4px 6px;
  }

  .vlv-search-form{
    max-width: none;
    margin: 0;
  }

  .vlv-search-btn svg{
    width: 20px;
    height: 20px;
  }
}

/* =========================
   EXPLORE MENU (Desktop mega bar + Mobile drawer)
   ========================= */

/* Backdrop */
.vlv-menu-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.08);
  z-index: 2000;
}

/* Shared menu base */
.vlv-explore-menu{
  z-index: 2100;
  background: #fff;
}

/* ---------- Desktop dropdown: full-width "mega bar" ---------- */
@media (min-width: 721px){
  .vlv-explore-menu{
    position: fixed;
    left: 0;
    right: 0;
    top: 50px;             /* matches your pinned header offset */
    width: 100vw;
    transform: none;

    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 0;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    border-radius: 0;
    box-shadow: none;

    padding: 26px 0;
    z-index: 2100;
  }


  /* No X on desktop */
  .vlv-menu-close{ display: none; }

  /* Backdrop not needed on desktop */
  .vlv-menu-backdrop{ display: none !important; }

  /* Center the menu content inside the full-width bar */
  .vlv-menu-grid{
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  justify-items: center;
}
}

/* ---------- Mobile drawer ---------- */
@media (max-width: 720px){
  .vlv-explore-menu{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(420px, 90vw);
    background: #fff;
    border-left: 1px solid rgba(0,0,0,0.10);
    border-radius: 0;
    padding: 26px 22px;
    box-shadow: -24px 0 50px rgba(0,0,0,0.12);
    z-index: 2100;
  }

  .vlv-menu-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vlv-menu-close{
    position: absolute;
    top: 18px;
    right: 18px;
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
  }
  .vlv-menu-close:hover{ opacity: 1; }
}

/* ---------- Menu interior styles ---------- */
.vlv-menu-heading{
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}

.vlv-menu-rule{
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 0 0 18px 0;
  width:66%;
}

.vlv-menu-link{
  display: block;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 700;
  color: #777;
  text-decoration: none;
  margin: 8px 0;
}
.vlv-menu-link:hover{
  color: #000;
  text-decoration: none;
}
.vlv-menu-link-blue{ color: rgb(51,153,204); }
.vlv-menu-link-blue:hover{ color: #000; }

/* Night-mode menu colors */
html.vlv-night .vlv-explore-menu{
  background: rgba(18,18,18,0.98);
  border-color: rgba(255,255,255,0.14);
}
html.vlv-night .vlv-menu-heading{ color: rgba(231,231,231,0.72); }
html.vlv-night .vlv-menu-rule{ border-top-color: rgba(255,255,255,0.14); }
html.vlv-night .vlv-menu-link{ color: #a8a8a8; }
html.vlv-night .vlv-menu-link-blue{ color: rgb(121,188,221); }
html.vlv-night .vlv-menu-link:hover{ color: #fff; }

html.vlv-night header .vlv-links a:hover,
html.vlv-night header .vlv-links button:hover{
  color: #ffffff !important;
}

   /* NIGHT MODE variables (so toggling html.vlv-night actually changes the nav) */
html.vlv-night{
  --bg: #0f1115;
  --surface: #151a20;
  --text: #e7e7e7;
  --muted: rgba(231,231,231,0.70);
  --border: rgba(255,255,255,0.14);

  --header-bg: rgba(15,17,21,0.78);
  --search-bg: rgba(255,255,255,0.06);

  --link: rgb(121,188,221);
  --link-hover: #ffffff;
}

/* Optional: if you want the whole page to go dark too */
html.vlv-night body{
  background: #0f1115;
  color: var(--text);
}

/* =========================
   EXPLORE: MOBILE HAMBURGER SIZE (no nav height change)
   Paste at VERY BOTTOM of vlv-nav.css
   ========================= */
@media (max-width: 720px){
  .vlv-links{ align-items: center; }

  .vlv-links button.vlv-menu-btn{
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    line-height: 1;      /* safer than 0 if any device clips the glyph */
  }
}

button.vlv-night {
    font-size: 24px;
}


/* =========================
   RESET: Explore menu on MOBILE to match vintagelasvegas.com
   Paste at VERY BOTTOM of vlv-nav.css
   ========================= */

/* Match Tumblr’s lighter backdrop */
.vlv-menu-backdrop{
  background: rgba(0,0,0,0.08) !important; /* Tumblr uses 0.08 */ 
}

/* Mobile drawer exactly: right-side panel, not full screen */
@media (max-width: 720px){
  .vlv-explore-menu{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(420px, 90vw);
    border-left: 1px solid rgba(0,0,0,0.10);
    border-radius: 0;
    padding: 26px 22px;
    box-shadow: -24px 0 50px rgba(0,0,0,0.12);
  }

  /* Ensure the X is present and clickable on mobile */
  .vlv-menu-close{
    position: absolute;
    top: 18px;
    right: 18px;
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    display: inline-flex; /* force show */
  }
  .vlv-menu-close:hover{ opacity: 1; }
}

    /* Help match Tumblr rendering (especially on macOS) */
.vlv-header,
.vlv-nav,
.vlv-links,
.vlv-links a,
.vlv-links button{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
