/* ========================================
   SLUGTRAIL THEME — MAGENTAEDGE
   ======================================== */

:root {
  --theme: #FF2D95;
  --theme-accent: #FF74B5;
  --bg: #FF2D95;
  --text: #ffffff;
  --font: "Poppins", sans-serif;
  --icon-color: var(--theme);
  --block-bg: rgba(0,0,0,0.15);
  --shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  --radius: 14px;
}


/* Basic text selection styling */
::selection {
    background-color: var(--theme);
    color: #fff;
}

/* Firefox-specific selection styling */
::-moz-selection {
    background-color: var(--theme);
    color: #fff;
}
  

/* === Base Structure === */
body {
  background:
    radial-gradient(
      circle at 50% 120%,
      rgba(255, 0, 120, 0.25) 0%,   /* magenta glow */
      rgba(120, 0, 80, 0.20) 22%,   /* deep magenta */
      rgba(60, 0, 60, 0.15) 45%,    /* purple fade */
      rgba(20, 0, 30, 0.30) 70%,    /* dark violet */
      rgba(0, 0, 0, 1) 100%         /* pure black */
    ),
    linear-gradient(
      180deg,
      #000000 0%,
      #0A0010 40%,
      #260018 70%,
      #39001F 100%
    );

  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
  margin: 0;
  padding: 10px;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}



/* === Background Pattern Layer === */
body::before {    
  content: ""; 
  position: fixed;
  inset: 0;
  background-image: url("https://www.slugtrail.com/asset/images/patterns/starring.png");
  background-size: 20px;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;

  animation: starfield 18s ease-in-out infinite,
             twinkle 4s ease-in-out infinite alternate;
}

/* ✅ Parallax + rotation + breathing scale */
@keyframes starfield {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    background-position: 0px 0px;
  }
  50% {
    transform: translateY(-6px) scale(1.04) rotate(0.8deg);
    background-position: 40px 30px;
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
    background-position: 0px 0px;
  }
}

/* ✅ subtle shimmering, NOT annoying */
@keyframes twinkle {
  0%   { opacity: 0.18; }
  50%  { opacity: 0.28; }
  100% { opacity: 0.18; }
}

body > * {
  position: relative;
  z-index: 2;
}

.slugtrail-page{
    padding:20px !important;
    width: 100%;
    margin: 10px auto; 
}  

.container {
  max-width: 550px;
  padding: 20px;
  border-radius: 25px;
  background: var(--bg);  
}

/* === Blocks === */
.block {
  margin: 1.2rem 0;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--block-bg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
p{
    color: var(--text);
}
.block img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
}

/* === Typography === */
h1, h2, h3, p, ul {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

h1, h2 {
  color: #4D0560;
  line-height: 1.2;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.4rem; }
h3 { color: #4D0560; font-size: 1.1rem; }

ul { padding-left: 1.2rem; }

/* === Links & Buttons === */
a,
button {
  color: #111;
  background: var(--theme);
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-block;
  
}

a:hover,
button:hover {
  color:#111 !important;    
  background: var(--theme-accent);
  transform: translateY(-2px);
  
}

/* === Buttons (Blink - Flat Lime Style) === */
.blink {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--theme);     /* lime green */
  color: #111 !important;       /* black text */
  text-decoration: none;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: none;
  box-shadow: none;             /* flat look */
  transition: background 0.2s ease, transform 0.2s ease;
}

.blink:hover {
  background: var(--theme-accent); /* slightly lighter lime */
  transform: translateY(-1px);
    text-decoration: none;
}

/* === Contact Card (Full-Width Flat Lime Style, variable-based) === */
.contact-card {
  background: var(--block-bg);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* Each row */
.contact-row {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  gap: 10px;
}

/* Icon style */
.contact-row i {
  width: 24px;
  font-size: 1.1rem;
  color: var(--theme);
  text-align: center;
  flex-shrink: 0;
}

/* === Full-width linked rows === */
.contact-row.is-link {
  width: 100%;
  text-align: center !important;
}

.contact-row.is-link a {
  flex-grow: 1;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--theme) 15%, transparent);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, color 0.2s ease;
}

.contact-row.is-link a:hover {
  background: var(--theme);
  color: var(--bg);
  transform: translateX(3px);
  text-decoration: none;
}

/* === Text links (email, phone, etc.) === */
.contact-value {
  flex-grow: 1;
  width: 100%;
}

.contact-value a {
  display: block;
  width: 100% !important;
  color: #000 !important;
  background-color: #FFF !important;
  text-decoration: none;
  font-weight: 600;
  border: none;
  transition: color 0.25s ease;
  text-align: center !important;
}

.contact-value a:hover {
  color: #FFF !important;
    background-color: #000 !important;
  text-decoration: underline;
  text-align: center !important;
}



/* === Social Links (SlugTrail Brand Style) === */
.social-links {
  margin-top: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  color: var(--theme);
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);

  box-shadow:
    inset 0 0 6px rgba(255,255,255,0.5),
    0 0 6px rgba(55,185,255,0.25);

  transition: all 0.25s ease;
}


.social-links a i {
  transition: all 0.25s ease;
  color: var(--theme);
}

.social-links a:hover {
  background: rgba(255,255,255,0.75);
  box-shadow:
    0 0 10px rgba(55,185,255,0.35),
    0 0 25px rgba(55,185,255,0.25);
  transform: translateY(-3px) scale(1.05);
  text-decoration: none;
}

.social-links a:hover i {
  color: var(--theme-accent);
  text-shadow: 0 0 8px rgba(55,185,255,0.6);
}


.social-links a:hover i {
  color: var(--theme-accent);
  text-shadow: 0 0 8px rgba(155, 226, 22, 0.6);
}


/* === Images === */
img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* === Embed / Video / Map Styling === */
.embed-wrapper {
  margin: 1.5rem 0;
  background: #111;
  border-radius: 12px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}

.embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 315px;
  border-radius: 10px;
  background: #000;
}


/* === Slug QR Display === */
.slugs-qr {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: #111;
  border-radius: 14px;
   transition: transform 0.25s ease, background 0.25s ease;
}

.slugs-qr img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  display: inline-block;
  background: #fff;
  padding: 10px;
  transition: transform 0.25s ease;
}

.slugs-qr img:hover {
  transform: scale(1.05);
}

.slugs-qr.no-qr {
  font-size: 0.9rem;
  color: #777;
  padding: 40px 0;
}

/* === Slugsy Footer === */
.slugsy-footer {
  margin-top: 13px;
  text-align: center;
  padding: 13px 0 10px;
  font-size: 0.9rem;
  color: #888;
  opacity: 0.95;
  border-radius: 0 0 20px 20px;
  background: none; /* let page bg show */
}

.slugsy-footer a {
  color: var(--theme);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  padding: 0;
  background: none !important; /* remove green box */
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.slugsy-footer a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.slugsy-footer img {
  
  vertical-align: middle;
  margin: 0;
  border-radius: 0;
  transition: transform 0.25s ease;
}

.slugsy-footer a:hover img {
  transform: rotate(-3deg) scale(1.16);
}

.slugsy-footer .slugsy{
    max-width:250px !important;
    margin: 0 auto;
} 
.qr{
    max-width:350px !important;
    margin: 0 auto;

}
/* === SlugTrail Path (Breadcrumb) === */
.slugtrail {
  font-family: var(--font);
  color: var(--text);
  font-size: 0.95rem;
  margin: 0 0 20px 0;
  text-align: left;
  word-break: break-word;
    
}

.slugtrail a {
  color: var(--font);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
    margin-bottom: 5px !important;    
}

.slugtrail a:hover {
  color: var(--theme-accent);
 }

.slugtrail .sep {
  margin: 0 6px;
  color: rgba(255,255,255,0.3);
}

.slugtrail .current {
  color: #000;
  font-weight: 700;
  opacity: 1.0;
}

/* === Responsive === */
@media (max-width: 600px) {
  .container { padding: 10px; }
  .block { padding: 1rem; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .blink { font-size: 0.95rem; }
}

/* === Back to Top Button === */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: var(--theme);
  color: #111;
  border: none;
  outline: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;                     /* start invisible */
  visibility: hidden;             /* disable clicks */
  transform: translateY(20px);    /* slight offset down */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--theme-accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 10px var(--theme);
}

#backToTop i {
  pointer-events: none;
}

/* === Trail Float (fixed position with fade-in) === */
.trail-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

/* When visible */
.trail-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Trail Button */
#trailMainBtn {
  background: var(--theme);
  color: #111;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
    
}

#trailMainBtn:hover {
  background: var(--theme-accent);
  transform: translateY(-3px) scale(1.05);
}


/* === Floating Trail Companion (Refined Final) === */
.trail-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Main circular button */
#trailMainBtn {
  background: var(--theme);
  color: #111;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(155, 226, 22, 0.4);
  transition: all 0.25s ease;
}

#trailMainBtn:hover {
  background: var(--theme-accent);
  transform: rotate(180deg);
  box-shadow: 0 0 18px rgba(155, 226, 22, 0.6);
}

/* Dropdown tray */
.trail-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: var(--block-bg);
  padding: 14px 12px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  width: 220px;
  margin-bottom: 10px;
  animation: fadeInTrail 0.25s ease;
  transform-origin: bottom right;
}

.trail-float.open .trail-menu {
  display: flex;
}

/* Menu buttons (Top / Share) */
.trail-item {
  background: var(--theme);
  color: #111 !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
    
}

.trail-item:hover {
  background: var(--theme-accent);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(155, 226, 22, 0.45);
}

/* Replace previous .trail-path section with this: */
.trail-path {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  padding: 0;
}

/* Each breadcrumb now behaves like a full-width button */
.trail-path a,
.trail-path .current {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.slugtrail .current{
  display: block;
    width: auto;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-top: 20px;
}
.trail-path a:hover {
  background: var(--theme);
  color: #111;
  transform: translateY(-2px);
}

.trail-path .current {
  background: linear-gradient(145deg, var(--theme) 0%, var(--theme-accent) 100%);
  color: #111;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(155, 226, 22, 0.4);
}


/* Animation */
@keyframes fadeInTrail {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* === Animated Breadcrumb Stack === */

/* Trail menu opening animation */
.trail-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: var(--block-bg);
  padding: 14px 12px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  width: 220px;
  margin-bottom: 10px;
  animation: fadeInTrail 0.25s ease;
  transform-origin: bottom right;
}

/* When open, children animate in sequence */
.trail-float.open .trail-menu .trail-item,
.trail-float.open .trail-menu .trail-path a,
.trail-float.open .trail-menu .trail-path .current {
  opacity: 0;
  animation: trailPop 0.25s forwards;
}

.trail-float.open .trail-menu .trail-item:nth-child(1) { animation-delay: 0.05s; }
.trail-float.open .trail-menu .trail-item:nth-child(2) { animation-delay: 0.1s; }
.trail-float.open .trail-menu .trail-item:nth-child(3) { animation-delay: 0.15s; }
.trail-float.open .trail-menu .trail-path a:nth-child(1) { animation-delay: 0.2s; }
.trail-float.open .trail-menu .trail-path a:nth-child(2) { animation-delay: 0.25s; }
.trail-float.open .trail-menu .trail-path a:nth-child(3) { animation-delay: 0.3s; }
.trail-float.open .trail-menu .trail-item:last-child { animation-delay: 0.35s; }

/* === Bouncy Entrance Animation for Trail Menu === */
@keyframes trailPop {
  0% {
    transform: translateY(15px) scale(0.9);
    opacity: 0;
  }
  60% {
    transform: translateY(-4px) scale(1.03);
    opacity: 1;
  }
  80% {
    transform: translateY(2px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}


/* === Current Slug Glow === */
.trail-path .current {
  background: linear-gradient(145deg, var(--theme) 0%, var(--theme-accent) 100%);
  color: #111;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(155, 226, 22, 0.4);
  animation: glowPulse 2.2s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(155, 226, 22, 0.4); }
  50% { box-shadow: 0 0 18px rgba(155, 226, 22, 0.7); }
}

.trail-item:hover,
.trail-path a:hover {
  transform: scale(1.04);
  box-shadow: 0 0 12px rgba(155, 226, 22, 0.4);
}

.share-menu {
  position: relative;
  margin-top: 8px;
  background: rgba(0,0,0,0.8);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 8px rgba(155,226,22,0.2);
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: bounceIn 0.4s ease;
}

.trail-menu .share-menu.show {
  display: flex;
  animation: bounceIn 0.4s ease;
}

.share-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--block-bg);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.share-option i {
  color: var(--theme);
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.share-option:hover {
  background: var(--theme);
  color: #111;
  transform: translateX(4px);
}

.share-option:hover i {
  color: #111;
}
/* ===== Trail Float Scroll Visibility ===== */
.trail-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.trail-float.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Neon Pulse Glow ===== */
#trailMainBtn {
  background: var(--theme);
  color: #111;
  border: none;
  outline: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--theme);
  transition: all 0.3s ease;
  position: relative;
}

#trailMainBtn.pulse::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  inset: 0;
  box-shadow: 0 0 16px 8px var(--theme);
  opacity: 0.4;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.8; }
  100% { transform: scale(1); opacity: 0.4; }
}

.lead-form-block {
  padding: 22px 20px;
  border-radius: 12px;
  margin: 5px 0 !important;
 }

.lead-form-block h3 {
  margin: 0 0 18px 0;
  padding: 12px 18px;
  text-align: center;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .4px;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 30px;
  backdrop-filter: blur(12px);

  box-shadow:
    0 4px 12px rgba(0,0,0,0.08),
    inset 0 0 8px rgba(255,255,255,0.5);

  width: 100%;
  display: block;
}
.lead-form-block h3:hover {
  box-shadow:
    0 4px 16px rgba(0,0,0,0.12),
    inset 0 0 12px rgba(255,255,255,0.7);
  transform: translateY(-1px);
  transition: .25s;
}



.lead-form-block form input,
.lead-form-block form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 15px;
  transition: border-color .25s, background .25s;
}

/* GlassLight FORM FIX */
.lead-form-block form input,
.lead-form-block form textarea {
  background: rgba(255,255,255,0.65) !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Placeholder visibility */
.lead-form-block form input::placeholder,
.lead-form-block form textarea::placeholder {
  color: rgba(0,0,0,0.45);
}

/* Focus state */
.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  background: rgba(255,255,255,0.9) !important;
  border-color: var(--theme);
  box-shadow: 0 0 6px rgba(55,185,255,0.4);
  color: #111;
}

.lead-form-block button {
  background: #000;
  color: #fff;
  box-shadow: 0 4px 10px rgba(55,185,255,0.25);
}

.lead-form-block button {
  background: #000;
  color: #fff;
  box-shadow: 0 4px 10px rgba(55,185,255,0.25);
}


.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  border-color: var(--theme, #00aeac);
  background: rgba(0,0,0,0.55);
  outline: none;
}

.lead-form-block button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--theme, #00aeac), var(--theme-accent, #926cb2));
  color: #fff;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: opacity .25s, transform .2s;
}

.lead-form-block button:hover {
  opacity: .9;
  transform: translateY(-2px);
}

/* ✅ Success message fade-in */
.lead-success {
  display: none;
  text-align: center;
  color: #a4ff59;
  margin-top: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s ease, transform .4s ease;
}

.lead-success.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  box-shadow: 0 0 6px rgba(0,174,172,0.4);
}
.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  border-color: var(--theme, #a4ff59);
  outline: none;
  box-shadow: 0 0 6px rgba(164,255,89,0.4);
  transition: 0.25s;
} 
 
/* === VIDEO BLOCK STYLING === */
.video-block {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.video-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(164,255,89,0.25);
}

/* Maintain proper 16:9 aspect ratio */
.video-block iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
}

/* Optional: subtle inner border for glow effect */
.video-block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
  cursor: zoom-out;
}
.lightbox-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.2s;
}

.lightbox-overlay img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
  cursor: zoom-out;
}

.lightbox-overlay .close-btn:hover { color: #a7ff00; }
    
.slugimglink,
.slugimglink a {
  padding: 0 !important;
  margin: 0 !important;

  display: block;
  line-height: 0;
  background: none !important;   /* removes inherited background */
  background-color: transparent !important; /* extra safety */
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
.slugimglink a:hover,
.slugimglink a:focus {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}/* =========================================
   SLUGTRAIL — GLASSLIGHT SCROLLBAR (Frosted)
   ========================================= */

/* Chrome / Edge / Safari */
::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.8);
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.6) rgba(255,255,255,0.3);
}
.trail-menu {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  padding-bottom: 14px;
}

.trail-menu:hover {
  background: rgba(255,255,255,0.75);
}
.lead-form-block form input,
.lead-form-block form textarea,
.lead-form-block button {
  font-family: var(--font) !important;
}
/* =========================================
   MAGENTAEDGE — COTTON CANDY GLASS UPGRADE
   ========================================= */

/* Background */
body {
 } 

/* Blocks = frosted candy panels */
.block {
  background: rgba(255,255,255,0.25) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow:
    0 8px 22px rgba(255, 0, 128, 0.25),
    inset 0 0 12px rgba(255,255,255,0.4);
}

/* Headings inside blocks */
.block h3,
.lead-form-block h3 {
  background: rgba(255,255,255,0.65) !important;
  border: 1px solid rgba(255,255,255,0.5);
  color: #B3005A !important;
  text-shadow: 0 0 4px rgba(255,255,255,0.6);
}

/* Inputs */
.lead-form-block form input,
.lead-form-block form textarea {
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,0,128,0.25) !important;
  color: #B3005A !important;
}

.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  background: #fff !important;
  border-color: #FF2D95 !important;
  box-shadow: 0 0 10px rgba(255,0,128,0.4) !important;
}

/* Buttons */
.lead-form-block button,
.blink,
.trail-item {
  background: linear-gradient(135deg, #FF2D95, #FF74B5) !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(255,0,128,0.35);
}

/* Breadcrumb pills */
.trail-path a,
.trail-path .current {
  background: rgba(255,255,255,0.45) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5);
  color: #B3005A !important;
}

/* Hover */
.trail-path a:hover {
  background: #fff !important;
  color: #FF2D95 !important;
}

/* Social icons */
.social-links a {
  background: rgba(255,255,255,0.6) !important;
  box-shadow:
    0 4px 14px rgba(255,0,128,0.25),
    inset 0 0 6px rgba(255,255,255,0.5);
}

/* === SlugTrail Path (Breadcrumb) === */
.slugtrail {
  font-family: var(--font);
  color: var(--text);
  font-size: 0.95rem;
  margin: 0 0 20px 0;
  text-align: left;
  word-break: break-word;
}

/* links */
.slugtrail a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.25s ease;
  margin-bottom: 5px !important;
  background: #000;
  backdrop-filter: blur(6px);
}

/* hover */
.slugtrail a:hover {
  color: #000;
  background: #FFF;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.15),
    0 0 6px rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

/* separator */
.slugtrail .sep {
  margin: 0 6px;
  color: rgba(255,255,255,0.3);
}

/* current */
.slugtrail span .current {
  color: #000 !important;
  font-weight: 700; 
  opacity: 1; 
  padding: 10px;  
  border-radius: 8px;
  background: linear-gradient(145deg, #FF74B5 0%, #FFB4DB 100%);
  box-shadow:
    0 3px 10px rgba(255,255,255,0.25),
    0 0 8px rgba(255,255,255,0.25);
    z-index: 99999;
}

.contact-row i {
  color: #fff !important;
  text-shadow: 0 0 8px rgba(255,255,255,0.35);
}

.contact-card {
 }



/* === Restore Button Identity in Link Blocks === */
.block.link a.blink,
.block.link .blink,
.block.link button {
  display: block;
  width: 100%;
  text-align: center;

  background: #000 !important;
  color: #FFF !important;

  font-weight: 700;
  padding: 14px 0;
  border-radius: 12px;

  border: none;
  cursor: pointer;

  box-shadow:
    0 4px 12px rgba(0,0,0,0.25),
    0 0 10px rgba(255,255,255,0.25);

  transition: transform .2s ease,
              box-shadow .25s ease,
              opacity .25s;
}

.block.link a.blink:hover,
.block.link .blink:hover,
.block.link button:hover {
  transform: translateY(-2px);
  opacity: .9;
  box-shadow:
    0 6px 16px rgba(0,0,0,0.3),
    0 0 14px rgba(255,255,255,0.35);
  background: #111;    
}
/* === Lead Form Submit Button (MagentaEdge CTA) === */
.lead-form-block button[type="submit"] {
  display: block;
  width: 100%;
  text-align: center;

  background: #000 !important;
  color: #FFF !important;
    
  font-weight: 700;
  padding: 14px 0;
  border-radius: 12px;
  border: none;
  cursor: pointer;

  box-shadow:
    0 4px 12px rgba(0,0,0,0.25),
    0 0 10px rgba(255,255,255,0.25);

  transition: transform .2s ease,
              box-shadow .25s ease,
              opacity .25s;
}

/* Hover */
.lead-form-block button[type="submit"]:hover {
  transform: translateY(-2px);
  opacity: .9;
  box-shadow:
    0 6px 16px rgba(0,0,0,0.3),
    0 0 14px rgba(255,255,255,0.35);
  background: #111 !important;
}

/* ------------------------------------
   BASE ANIMATION STATE (before visible)
--------------------------------------*/
.block[class*="anim-"] {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity .6s ease-out, transform .6s ease-out;
}

/* ------------------------------------
   FADE IN
--------------------------------------*/
.anim-fade-in {
    transform: none;
}
.block.visible.anim-fade-in {
    opacity: 1;
    transform: none;
}

/* ------------------------------------
   ZOOM IN
--------------------------------------*/
.anim-zoom-in {
    transform: scale(.9);
}
.block.visible.anim-zoom-in {
    opacity: 1;
    transform: scale(1);
}

/* ------------------------------------
   SLIDE UP
--------------------------------------*/
.anim-slide-up {
    transform: translateY(30px);
}
.block.visible.anim-slide-up {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------
   SLIDE LEFT
--------------------------------------*/
.anim-slide-left {
    transform: translateX(30px);
}
.block.visible.anim-slide-left {
    opacity: 1;
    transform: translateX(0);
}

/* ------------------------------------
   GLOW PULSE (SlugTrail sexy neon)
--------------------------------------*/
.anim-glow {
    opacity: 0;
    transform: scale(.95);
}
.block.visible.anim-glow {
    opacity: 1; 
    transform: scale(1);
    animation: glowPulse 2.4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,100% { box-shadow: 0 0 0 rgba(168,220,84,0.0); }
    50%     { box-shadow: 0 0 24px #000; }
}
   
/* ------------------------------------
   FLIP X  
--------------------------------------*/
.anim-flip-x {
    transform: rotateX(60deg);
    transform-origin: top;
}
.block.visible.anim-flip-x {
    opacity: 1;
    transform: rotateX(0);
}
 


@media (max-width: 600px) {
    .slugtrail-page{
        width: 94%;
        margin: 3%;  
    }     
 
    /* === SlugTrail Path (Breadcrumb) === */
.slugtrail {
  font-family: var(--font);
  color: var(--text);
  font-size: 0.7rem;
  margin: 0 0 20px 0;
  text-align: left;
  word-break: break-word;
     
} 
    
}
/* === FINAL FIX — ANIMATION OVERRIDE PRIORITY === */
.block.visible[class*="anim-"] {
    opacity: 1 !important;
    transform: none !important;
}
