/* 
    MULGE RECORDS - FINAL FORCE FIX
    Fixes: Blue Links, Invisible Text, Broken Footer
*/

:root {
    --black: #050505;
    --gold: #d4af37;
    --gold-grad: linear-gradient(135deg, #d4af37 0%, #fcf6ba 45%, #d4af37 100%);
    --silver: #e0e0e0;
    --muted: #888888;
}

body {
    background-color: var(--black) !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* CONTENT VISIBILITY - FORCE SHOW */
.reveal { opacity: 1 !important; transform: none !important; }

/* NAVBAR FIX */
.navbar-custom { background: rgba(0,0,0,0.9); padding: 15px 0; border-bottom: 1px solid rgba(212,175,55,0.1); }
.nav-link { color: #fff !important; font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }

/* HERO TEXT FIX */
.heading-xl { font-size: clamp(3rem, 10vw, 7rem); font-weight: 900; line-height: 1; margin-bottom: 20px; }
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lead { color: var(--silver) !important; font-size: 1.1rem; line-height: 1.8; }

/* FOOTER - PROFESSIONAL LUXURY (No more Blue Links!) */
footer {
    background: #000 !important;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 80px;
}

footer a {
    color: var(--silver) !important; /* Force Silver Color */
    text-decoration: none !important;
    transition: 0.3s;
}

footer a:hover {
    color: var(--gold) !important;
}

.footer-header {
    color: var(--gold) !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* SOCIAL ICONS FIX - Premium Circular */
.social-box {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.social-circle:hover {
    background: var(--gold-grad);
    color: #000 !important;
    transform: translateY(-5px);
}

/* NEWSLETTER INPUT FIX */
.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 20px auto 0;
}

.news-field {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #fff !important;
    border-radius: 50px 0 0 50px !important;
    padding: 12px 20px !important;
    flex-grow: 1;
}

.news-btn {
    background: var(--gold-grad) !important;
    color: #000 !important;
    font-weight: 800 !important;
    border: none !important;
    border-radius: 0 50px 50px 0 !important;
    padding: 0 25px !important;
    text-transform: uppercase;
    font-size: 13px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    footer { text-align: center; }
    .newsletter-form { margin: 20px auto; }
}