/* --- BASIS SETUP --- */
body {
    background-color: #000000 !important;
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* NAVIGATION LINKS */
.nav-link-fixed {
    font-family: 'Cinzel', serif !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.nav-link-fixed:hover {
    color: #D4AF37 !important;
}

/* GOLD TEXT EFFEKT */
.text-gold-shimmer {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    display: inline-block;
}

/* BUTTON SYSTEM: BLACK KERN & GOLD BORDER */
.btn-royal {
    background-color: #000000 !important;
    color: #D4AF37 !important;
    border: 1px solid #D4AF37 !important;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-royal:hover {
    background-color: #D4AF37 !important;
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.btn-hero {
    border: 2px solid #D4AF37 !important;
    padding: 18px 48px;
    font-size: 14px;
    font-weight: 900;
}

/* CARDS */
.glass-card {
    background-color: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.5s ease;
}

/* VEREDELTER SAFETY BEREICH */
.footer-text-safety {
    font-size: 11px;
    color: #ffffff;
    line-height: 1.8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-style: italic;
    background-color: #050505;
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #B3001B;
    box-shadow: 0 0 20px rgba(179, 0, 27, 0.2);
}

/* ANIMATIONEN */
@keyframes shine { to { background-position: 200% center; } }

.reveal { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: all 0.8s ease-out;
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}