/* ========================================
   SLUGTRAIL THEME — CHAMPAGNE GLOW
   Black Luxury + Gold Accents
   ======================================== */

:root {
  --theme: #D4AF37;               /* primary gold */
  --theme-accent: #F5E6B8;        /* soft champagne highlight */
  --bg: #291c0b;                  /* near-black background */
  --text: #FDF7EC;                /* warm off-white */
  --font: "Poppins", sans-serif;
  --icon-color: #FFFFFF;
  --block-bg: rgba(255, 245, 220, 0.06);
  --shadow: 0 0 18px rgba(0, 0, 0, 0.55);
  --radius: 14px;
}

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

/* Firefox-specific selection styling */
::-moz-selection {
  background-color: var(--theme);
  color: #000;
}
 
/* === Base Structure === */
body {
  background: radial-gradient(circle at top, #291c0b 0%, #050308 45%, #291c0b 100%);
  color: var(--text);
  font-family: var(--font);
  margin: 0;
  padding: 10px;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}


body::before {    
  content: ""; 
  position: fixed;       /* ✅ KEY FIX */
  inset: 0;
  background-image: url("https://www.slugtrail.com/asset/images/patterns/beige-paper.png");
  background-size: 300px;
  opacity: 0.45;
   pointer-events: none;
  z-index: 1;            /* ✅ sits ABOVE gradients */
}

body::before {
  animation: drift 80s linear infinite;
}   

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255,255,255,0.06) 0%,
      rgba(255,255,255,0.02) 25%,
      rgba(0,0,0,0.65) 80%
    );
  z-index: -1;
}
 
 
@keyframes drift {
  from { background-position: 0 0; }
  to   { background-position: 10px 1200px; }
}
body > * {
  position: relative;
  z-index: 2;            /* ✅ content stays above pattern */
}

.slugtrail-page{
    padding:20px !important;
    width: 100%;
    margin: 10px auto; 
} 
.container {
  max-width: 550px;
  padding: 20px;
  border-radius: 25px;
  margin: 0 auto;
}

/* === Blocks === */
.block {
  margin: 1.2rem 0;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--block-bg);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.8),
    0 0 18px rgba(10, 8, 3, 0.6);
}

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: var(--bg);
  line-height: 1.2;
 }

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  color: var(--theme);
   font-size: 1.1rem;
}

ul {
  padding-left: 1.2rem;
}

/* === Links & Buttons (Global) === */
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: #000 !important;
  background: var(--theme-accent);
  transform: translateY(-2px);
}

/* === Primary CTA Button (Blink) === */
.blink {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--theme);
  color: #111 !important;
  text-decoration: none;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.75);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.blink:hover {
  background: var(--theme-accent);
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.9);
}

/* === Contact Card === */
.contact-card {
  background: rgba(10, 8, 3, 0.9);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(245, 230, 190, 0.22);
  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-accent);
  text-align: center;
  flex-shrink: 0;
}

/* Linked row (full-width tappable) */
.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: rgba(212, 175, 55, 0.15);
  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: #111;
  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: #111 !important;
  background-color: #F7F0DF !important;
  text-decoration: none;
  font-weight: 600;
  border: none;
  transition: background 0.25s ease, color 0.25s ease;
  text-align: center !important;
  border-radius: 8px;
  padding: 10px 12px;
}

.contact-value a:hover {
  color: #FDF7EC !important;
  background-color: #111 !important;
  text-decoration: none;
}

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

.social-links a {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}

.social-links a i {
  color: var(--theme-accent);
  font-size: 1.8rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.social-links a:hover i {
  color: #FFFFFF;
  transform: translateY(-2px);
  text-shadow: 0 0 16px rgba(245, 230, 184, 0.9);
}

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

/* === Embed / Video / Map Container === */
.embed-wrapper {
  margin: 1.5rem 0;
  background: #050509;
  border-radius: 12px;
  padding: 6px;
  border: 1px solid rgba(245, 230, 184, 0.18);
}

.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: radial-gradient(circle at top, #151016 0%, #050308 65%);
  border-radius: 14px;
  transition: transform 0.25s ease, background 0.25s ease;
  border: 1px solid rgba(245, 230, 184, 0.2);
}

.slugs-qr img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  display: inline-block;
  background: #fff;
  padding: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8);
}

.slugs-qr img:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9);
}

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

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

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

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

.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 (Inline 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(--theme-accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
  margin-bottom: 5px !important;
}

.slugtrail a:hover {
  color: #FFFFFF;
}

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

.slugtrail .current {
    color: #D4AF37;
  margin-left: 15px;
    font-weight: bold;
  font-weight: 700;
  opacity: 0.9;
 }

/* === 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 — Flat Icon Button
   ======================================== */

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: transparent;
  color: #FFFFFF;
  border: none;
  outline: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

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

#backToTop:hover {
  transform: translateY(-2px);
}

#backToTop i {
  pointer-events: none;
  color: #FFFFFF;
}

/* ========================================
   Floating Trail Companion
   ======================================== */

.trail-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

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

/* Main circular button */
#trailMainBtn {
  background: var(--theme);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
}

#trailMainBtn i {
  color: #FFFFFF;
}

#trailMainBtn:hover {
  background: var(--theme-accent);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}

/* Optional subtle pulse */
#trailMainBtn.pulse::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  inset: 0;
  box-shadow: 0 0 14px 6px rgba(245, 230, 184, 0.55);
  opacity: 0.6;
  animation: champagnePulse 2.5s infinite ease-in-out;
}

@keyframes champagnePulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}

/* Dropdown tray */
.trail-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: rgba(10, 8, 3, 0.96);
  padding: 14px 12px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(245, 230, 184, 0.22);
  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 4px 12px rgba(0, 0, 0, 0.75);
  transition: all 0.25s ease;
}

.trail-item i {
  color: #111;
}

/* Hover */
.trail-item:hover {
  background: var(--theme-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.9);
}

/* Trail path as stacked buttons */
.trail-path {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  padding: 0;
}

/* Each breadcrumb behaves like a full-width pill */
.trail-path a,
.trail-path .current {
  display: block;
  width: 100%;
  background: rgba(12, 10, 5, 0.95);
  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 3px 10px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(245, 230, 184, 0.28);
}

.trail-path a:hover {
  background: var(--theme);
  color: #111;
  transform: translateY(-2px);
}

/* Current slug highlight */
.trail-path .current {
  background: radial-gradient(circle at top left, #F5E6B8 0%, #D4AF37 45%, #8A6B20 100%);
  color: #111;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(245, 230, 184, 0.9);
  animation: glowPulse 2.4s infinite ease-in-out;
}

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

/* Staggered entrance */
.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;
}

@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 breadcrumb subtle pulse */
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(245, 230, 184, 0.7);
  }
  50% {
    box-shadow: 0 0 18px rgba(245, 230, 184, 1);
  }
}

/* Share menu */
.share-menu {
  position: relative;
  margin-top: 8px;
  background: rgba(5, 4, 2, 0.98);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: bounceIn 0.4s ease;
}

.trail-menu .share-menu.show {
  display: flex;
}

.share-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(21, 18, 10, 0.95);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(245, 230, 184, 0.22);
}

.share-option i {
  color: var(--theme-accent);
  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;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(10px);
  }
  60% {
    opacity: 1;
    transform: scale(1.02) translateY(-3px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

/* ========================================
   Lead Form Block
   ======================================== */

.lead-form-block {
  padding: 22px 20px;
  border-radius: 12px;
  margin: 5px 0 !important;
  background: rgba(10, 8, 3, 0.96);
  border: 1px solid rgba(245, 230, 184, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8);
}

.lead-form-block h3 {
  margin: 0 0 18px 0;
  padding: 12px 18px;
  text-align: center;
  color: #111;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: radial-gradient(circle at top, #FDF7EC 0%, #E4D4B0 55%, #B89C55 100%);
  border-radius: 30px;
  border: 1px solid rgba(185, 157, 94, 0.6);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

.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(245, 230, 184, 0.4);
  background: rgba(18, 14, 7, 0.95);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  font-family: var(--font) !important;
}

/* Placeholder */
.lead-form-block form input::placeholder,
.lead-form-block form textarea::placeholder {
  color: rgba(230, 216, 188, 0.7);
}

/* Focus state */
.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  background: rgba(24, 18, 8, 0.98);
  border-color: var(--theme);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
  color: var(--text);
  outline: none;
}

/* Submit button */
.lead-form-block button,
.lead-form-block button[type="submit"] {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #F5E6B8, #D4AF37);
  color: #111 !important;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(245, 230, 184, 0.55);
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
  font-family: var(--font) !important;
}

.lead-form-block button:hover,
.lead-form-block button[type="submit"]:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.95),
    0 0 14px rgba(245, 230, 184, 0.9);
}

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

.lead-success.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Video Block
   ======================================== */

.video-block {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  background: #050307;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.video-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.95);
}

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

/* Inner border glow */
.video-block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 0 10px rgba(245, 230, 184, 0.15);
}

/* ========================================
   Lightbox
   ======================================== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.94);
  z-index: 9999;
}

.lightbox-overlay.active {
  display: flex;
}

.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 32px rgba(0, 0, 0, 0.95);
  cursor: zoom-out;
}

.lightbox-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.2s;
}

.lightbox-overlay .close-btn:hover {
  color: var(--theme-accent);
}

/* Image link reset */
.slugimglink,
.slugimglink a {
  padding: 0 !important;
  margin: 0 !important;
  display: block;
  line-height: 0;
  background: none !important;
  background-color: transparent !important;
  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;
}

/* =========================================
   Scrollbar — Subtle Champagne Glass
   ========================================= */

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

::-webkit-scrollbar-track {
  background: rgba(60, 55, 45, 0.7);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

::-webkit-scrollbar-thumb {
  background: rgba(245, 230, 184, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(25, 20, 12, 0.9);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 230, 184, 0.9);
  box-shadow: 0 0 10px rgba(245, 230, 184, 0.7);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 230, 184, 0.7) rgba(40, 35, 28, 0.9);
}
.block {
  margin: 1.2rem 0;
  padding: 1.4rem;
  border-radius: 18px;
  color: #867437;
  /* Soft luxury glass */
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);

  /* NO OUTLINE */
  border: dotted #867437 thin;


  /* Smooth surfaces */
  overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

}
.block p{
    color: #867437;
}
.social-links a i{
    color: #D4AF37 !important;
    text-shadow: none !important;
    
}
.social-links a i:hover{
    color: #836813 !important;
    
}


@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;
     
}
    .slugtrail .current {
    font-weight: bold;
    font-weight: 700;
    opacity: 0.9; 
    float: left;
    width: 100%;     
    text-align: center !important;
    padding: 5px;
    margin-bottom: 15px;    
 }
}   
/* === FINAL FIX — ANIMATION OVERRIDE PRIORITY === */
.block.visible[class*="anim-"] {
    opacity: 1 !important;
    transform: none !important;
}
