/* 
   Legacy Eternal & Sovereign Future Authority 
   Brand Identity CSS
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Space+Grotesk:wght@300;400;700&display=swap');

:root {
    --bg-dark: #0D0D0D;
    --gold: #B8860B;
    --purple: #3B0066;
    --marble-white: #FDFDFD;
    --text-muted: rgba(253, 253, 253, 0.7);
    --gold-glow: rgba(184, 134, 11, 0.3);
}

body {
    background-color: var(--bg-dark);
    color: var(--marble-white);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, .brand-font {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }

/* Navigation */
.navbar {
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid var(--gold);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}

.nav-link {
    color: var(--marble-white) !important;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
    text-shadow: 0 0 10px var(--gold-glow);
}

/* UI Elements */
.btn-legacy {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 30px;
    font-family: 'Cinzel', serif;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.btn-legacy:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Black Hole Press Effect */
.btn-legacy:active {
    transform: scale(0.95);
    filter: brightness(0.8);
}

.card-legacy {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 0;
    transition: all 0.4s ease;
    padding: 2rem;
}

.card-legacy:hover {
    border-color: var(--gold);
    background: rgba(184, 134, 11, 0.05);
    transform: translateY(-5px);
}

/* Animations */
@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 5px var(--gold-glow); }
    50% { box-shadow: 0 0 20px var(--gold-glow); }
    100% { box-shadow: 0 0 5px var(--gold-glow); }
}

.mandala-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    opacity: 0.05;
    z-index: -1;
    animation: slowRotate 120s linear infinite;
    pointer-events: none;
}

/* Luminous Fusion Effect */
.fusion-hover {
    mix-blend-mode: screen;
    transition: filter 0.3s ease;
}

.fusion-hover:hover {
    filter: blur(2px) brightness(1.2);
}

footer {
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    padding: 4rem 0;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-section {
    padding: 150px 0;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-slogan {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.5rem;
}
