/* === Moosetracks Theme (consolidated) ===
   Palette */

:root {
    --moose-brown: #5A3B1E;
    --moose-tan: #C78A50;
    --moose-yellow: #E7B96A;
    /* warmer gold */
    --cream-60: rgba(255, 250, 245, .60);
    --cream-70: rgba(255, 250, 245, .70);
    --cream-80: rgba(255, 250, 245, .80);
}


/* Body backdrop (soft cream gradient) */

html,
body {
    height: 100%
}

body {
    background: linear-gradient(180deg, #FAF5E6 0%, #FFFFFF 40%, #FAF5E6 100%);
    color: var(--moose-brown);
}


/* Simple utilities to mirror Tailwind tokens you used */

.text-moose-brown {
    color: var(--moose-brown)
}

.bg-moose-brown {
    background-color: var(--moose-brown)
}

.bg-moose-tan {
    background-color: var(--moose-tan)
}

.bg-moose-yellow {
    background-color: var(--moose-yellow)!important
}

.bg-moose-yellow:hover {
    background-color: #dca853!important
}

.border-moose-brown {
    border-color: var(--moose-brown)!important
}

.border-moose-yellow {
    border-color: var(--moose-yellow)!important
}

.portal-btn {
    display: inline-block;
    background: #004c91;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.portal-btn:hover {
    background: #0066cc;
}


/* Glassy card shadow */

.shadow-glass {
    box-shadow: 0 8px 24px rgba(90, 59, 30, .18);
    backdrop-filter: blur(6px)
}


/* “Creamy” translucents to match your screenshots */

.bg-white\/60 {
    background-color: var(--cream-60)!important
}

.bg-white\/70 {
    background-color: var(--cream-70)!important
}

.bg-white\/80 {
    background-color: var(--cream-80)!important
}


/* Fancy underline highlight */

.fancy-underline {
    position: relative
}

.fancy-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: .1em;
    width: 100%;
    height: .35em;
    background: var(--moose-yellow);
    opacity: .5;
    border-radius: 3px;
    z-index: -1;
}


/* Float animation for the three dots */

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
}

.animate-floaty {
    animation: floaty 2.5s ease-in-out infinite
}


/* Tracks layer goes BEHIND content */


/* Moose hoof trail styling */

.hoof-print {
    position: absolute;
    width: 64px;
    height: auto;
    opacity: 0;
    transition: opacity 0.8s ease;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
    pointer-events: none;
    z-index: 0;
}

.tracks-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, .08));
}

.track {
    position: absolute;
    pointer-events: none;
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.08));
}

@keyframes drift {
    0% {
        transform: translate(-20vw, 10vh) rotate(-8deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(120vw, -30vh) rotate(8deg);
        opacity: 0;
    }
}

.animate-drift {
    animation: drift var(--speed, 40s) linear infinite;
}


/* Parallax wash behind hero */

.parallax {
    background-image: radial-gradient(1200px 600px at 20% 10%, rgba(199, 138, 80, .18) 0, transparent 60%), radial-gradient(1000px 500px at 80% 20%, rgba(90, 59, 30, .10) 0, transparent 60%);
    background-attachment: fixed;
    background-repeat: no-repeat;
}


/* Hero right card: gradient border frame + soft cream interior */

.hero-frame {
    border-radius: 1.5rem;
    padding: 4px;
    background: linear-gradient(135deg, rgba(199, 138, 80, .35), rgba(231, 185, 106, .35));
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.hero-frame>.inner {
    border-radius: calc(1.5rem - 2px);
    background: var(--cream-60);
    backdrop-filter: blur(6px);
}


/* Left hero “card” look */

.hero-card {
    background: var(--cream-80);
    border: 1px solid rgba(199, 138, 80, .30);
    box-shadow: 0 8px 24px rgba(90, 59, 30, .15);
    border-radius: 1rem;
}


/* CTA band gradient and button contrast */

.cta-band {
    background: linear-gradient(90deg, #5A3B1E 0%, #C78A50 100%)!important;
    color: #fff!important;
    box-shadow: 0 12px 28px rgba(90, 59, 30, .20);
}

.cta-band a {
    background: #fff;
    color: var(--moose-brown)!important;
}

.cta-band a:hover {
    background: var(--moose-yellow)
}


/* Header active link color */

header nav a.text-moose-tan {
    color: var(--moose-tan);
    font-weight: 600;
    transition: color .3s ease
}


/* Make sure main content stacks above tracks */

header,
section,
footer {
    position: relative;
    z-index: 10
}

.from-moose-tan\/30 {
    --tw-gradient-from: rgb(199 138 80 / 0.3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(199 138 80 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}