/* Elegant Golden Background Effects */

/* Dark bluish background */
body {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1b2a 100%);
    background-attachment: fixed;
}

/* Golden Viking Runes - FEWER, SLOWER, BACKGROUND ONLY */
.golden-rune {
    position: fixed;
    font-size: 2em;
    color: #D4AF37; /* Real gold color */
    text-shadow: 0 0 10px #D4AF37, 0 0 20px #FFD700;
    pointer-events: none;
    z-index: -1; /* Behind everything */
    opacity: 0;
    animation: runeSlowFade 15s ease-in-out infinite;
}

/* Only 3 runes total */
.rune-god {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.rune-valhalla {
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.rune-protection {
    top: 60%;
    left: 5%;
    animation-delay: 10s;
}

@keyframes runeSlowFade {
    0% { 
        opacity: 0; 
        transform: scale(0.8) rotate(-10deg); 
    }
    30% { 
        opacity: 0.4; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.05) rotate(5deg); 
    }
    70% { 
        opacity: 0.4; 
        transform: scale(1) rotate(0deg); 
    }
    100% { 
        opacity: 0; 
        transform: scale(0.8) rotate(10deg); 
    }
}

/* Starfield / Milky Way Effect */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1); }
}

/* Background glow - subtle gold */
.golden-glow {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -3;
    animation: glowSlow 12s ease-in-out infinite;
}

@keyframes glowSlow {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Content areas - keep clean */
section, .container, .content-card, .service-card {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Section backgrounds - subtle dark */
section {
    background: rgba(10, 22, 40, 0.3) !important;
    backdrop-filter: blur(5px);
}

/* Hero sections */
.hero, .about-hero, .services-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1b2a 100%) !important;
}

/* Text colors - clear on dark */
h1, h2, h3 {
    color: #fff !important;
    position: relative;
    z-index: 2;
}

p, li {
    color: #ddd !important;
    position: relative;
    z-index: 2;
}

/* Buttons with golden accent */
.btn-primary {
    background: linear-gradient(135deg, #5B8DEF, #7B68EE) !important;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
