/* Header.css */
/* Navbar */
.navbar-brand span.text-gold {
    color: #dcb109 !important;
}

.navbar-brand span.text-danger {
    color: #dc3545 !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #dcb109 !important;
}

.btn-gold {
    background-color: #dcb109;
    color: #1a1a1a;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #e6c200;
    color: #000;
    transform: translateY(-2px);
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 177, 9, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 177, 9, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 177, 9, 0);
    }
}

/* Footer.css */
footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0;
    border-top: 1px solid #333;
}

footer h4,
footer h5 {
    color: #fff;
}

footer .text-gold {
    color: #dcb109 !important;
}

footer .text-danger {
    color: #dc3545 !important;
}

footer .text-secondary {
    color: #6c757d !important;
}

footer a.text-secondary:hover {
    color: #dcb109 !important;
}

footer .border-dark-subtle {
    border-color: #333 !important;
}

/* Floating CTA */
.fixed-bottom {
    background-color: #1a1a1a;
    border-top: 2px solid #dcb109;
    z-index: 1030;
}