/* ---------- Cleaned / final CSS (with FIXED footer + IG + X + Twitter bird + Discord) ---------- */

/* Hide the theme's built-in site title/logo (single rule) */
.site-title,
.site-branding .site-title,
.header .site-title,
.site-header .site-title,
.site-logo,
.branding .site-title {
  display: none !important;
}

/* Smooth scroll */
html, body {
  height: 100%;
  scroll-behavior: smooth;
}

/* reserve space for the fixed footer */
:root {
  --nv-footer-h: 110px; /* height of your footer (adjust only if needed) */
}

/* ensure page content isn't hidden behind the fixed footer */
body {
  padding-bottom: var(--nv-footer-h) !important;
  box-sizing: border-box;
}

/* Spacer: one full viewport so tagline sits below the fold */
#nv-spacer {
  height: 100vh;
  box-sizing: border-box;
}

/* Tagline block - moved LOWER on page */
#nv-tagline-scroll {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 260px 20px 220px !important;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.1s ease-out, transform 1.1s ease-out;
  z-index: 5;
}

/* When scrolled into view we add .visible (JS handles this) */
#nv-tagline-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay logo (top-left) */
#nv-overlay {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 9999;
  pointer-events: auto;
}
body.admin-bar #nv-overlay { top: 56px; }

.nv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  line-height: 1;
  margin: 0;
}

/* ---------- UPDATED FIXED FOOTER (IG + X + Twitter bird + Discord) ---------- */
#nv-footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 18px 0 26px; /* taller to fit larger icons */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  font-family: 'Montserrat', sans-serif;
  z-index: 999999;
  box-sizing: border-box;
  box-shadow: 0 -8px 18px rgba(0,0,0,0.25);
}

/* Footer headline */
#nv-footer-fixed .footer-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Icon container holding the icons */
#nv-footer-fixed .footer-ig-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px; /* spacing between icons */
}

/* Shared clickable icon wrapper */
#nv-footer-fixed .footer-ig-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.12s ease, opacity 0.2s ease;
}

/* hover / active */
#nv-footer-fixed .footer-ig-icon:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Instagram icon size (larger) */
#nv-footer-fixed .ig-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: block;
  /* For stroke-based IG SVG we set stroke */
  stroke: #fff;
  fill: none;
}

/* X icon (simple X glyph) */
#nv-footer-fixed .x-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: block;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Old Twitter bird icon (if used) */
#nv-footer-fixed .twitter-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: block;
  fill: #fff;
}

/* Discord icon */
#nv-footer-fixed .dc-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: block;
  fill: #fff;
}

/* Make sure all icons inherit color when using currentColor */
#nv-footer-fixed .footer-ig-icon svg {
  color: #fff;
}

/* Responsive: reduce icon size and footer height on small screens */
@media (max-width: 1000px) {
  :root { --nv-footer-h: 110px; }
  #nv-footer-fixed { padding: 16px 0 22px; }
  #nv-tagline-scroll { padding-top: 160px !important; padding-bottom: 160px !important; }
}

@media (max-width: 600px) {
  :root { --nv-footer-h: 120px; }
  #nv-footer-fixed { padding: 14px 10px 20px; }
  #nv-footer-fixed .footer-text { font-size: 16px; margin-bottom: 6px; }
  #nv-footer-fixed .ig-icon,
  #nv-footer-fixed .x-icon,
  #nv-footer-fixed .twitter-icon,
  #nv-footer-fixed .dc-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }
  #nv-tagline-scroll { padding-top: 120px !important; padding-bottom: 120px !important; }
  .nv-main { font-size: 34px; }
  .nv-sub  { font-size: 16px; }
  #nv-overlay { left: 12px; top: 12px; }
}
