/* --- 1. Modern Variables & Nordic Palette --- */
:root {
    --viking-brown: #3e2723;
    --ember-orange: #d84315;
    --parchment-cream: #f4e4bc;
    --gold: #c5a059;
    --dark-bg: #0a0a0a;
    --glow-orange: 0 0 15px rgba(216, 67, 21, 0.6);
    --glow-gold: 0 0 15px rgba(197, 160, 89, 0.4);
}

/* --- 2. Base Setup --- */
body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    color: #e0e0e0;
    font-family: 'MedievalSharp', cursive;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* --- 3. Cinematic Viking Components --- */
/* The Glowing Animated Header Effect */
.viking-title {
    font-family: 'Germania One', cursive;
    font-size: 3.5rem;
    color: var(--parchment-cream);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0,0,0,0.8), 0 0 20px var(--ember-orange);
    animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
    from { text-shadow: 0 0 10px var(--ember-orange); }
    to { text-shadow: 0 0 25px var(--ember-orange), 0 0 40px #ff5722; }
}

/* Glowing Border Panels */
.parchment-panel, .bv-card {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: var(--glow-gold);
}

.parchment-panel:hover {
    border-color: var(--ember-orange);
    box-shadow: var(--glow-orange);
    transform: translateY(-5px);
}

/* Buttons with Nordic Elegance */
.btn-viking {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-family: 'Germania One', cursive;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
}

.btn-viking:hover {
    background: var(--gold);
    color: black;
    box-shadow: 0 0 20px var(--gold);
}

/* --- 4. Product/Shop Styling --- */
.card-img-top {
    filter: brightness(90%);
    transition: 0.3s;
}

.card:hover .card-img-top {
    filter: brightness(110%);
    transform: scale(1.03);
}

/* Typography Overrides */
h1, h2, h3, .bv-brand {
    font-family: 'Germania One', cursive;
    color: var(--gold);
    letter-spacing: 2px;
}

/* Utility Classes for mobile responsiveness */
@media (max-width: 768px) {
    .viking-title { font-size: 2rem; }
    .parchment-panel { padding: 1rem; }
}