/* VOID Custom Overrides */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
}
/* 1. The Home Link Hover */
.navbar-nav .nav-link {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #F3E29F !important; /* Solar Flare Gold */
    text-shadow: 0 0 10px rgba(243, 226, 159, 0.6);
}

/* 2. The Logo (navbar-brand) Hover */
.navbar-brand img {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.navbar-brand:hover img {
    /* Creates a gold glow around the image logo */
    filter: drop-shadow(0 0 10px #C19D54);
    transform: scale(1.02);
}

/* 3. The Cart Icon & Badge Hover (For consistency) */
.nav-link:hover .bi-bag {
    fill: #F3E29F;
}

#nav-cart-count {
    background-color: #C19D54 !important; /* Gold Badge */
    color: #000000 !important;
    border: none !important;
}

.nav-link:hover #nav-cart-count {
    background-color: #F3E29F !important; /* Brighter Gold on hover */
    box-shadow: 0 0 10px rgba(243, 226, 159, 0.8);
}
/* Replaced Tailwind gray-400 with Muted Bronze */
.text-gray-400 {
    color: #7D6334; 
}

/* Deepest background */
.bg-gray-900 {
    background-color: #000000; 
}

/* Dark Gold Border */
.border-gray-700 {
    border-color: #3D301A; 
}

/* Navbar: White text with Gold Hover */
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #C19D54;
}

/* Cards: Solid Black with Gold Border */
.card {
    background-color: #000000;
    border: 1px solid #7D6334;
    color: #ffffff;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 0 15px rgba(193, 157, 84, 0.2);
}

/* Buttons: Primary Gold */
.btn-outline-light {
    border-color: #C19D54;
    color: #C19D54;
}

.btn-outline-light:hover {
    background-color: #C19D54;
    color: #000000;
    box-shadow: 0 0 20px rgba(193, 157, 84, 0.4);
}

/* Hero Section: Black to Dark Ember Gradient */
.hero-section {
    min-height: 75vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: radial-gradient(circle at center, #1A160F 0%, #000000 100%);
    overflow: hidden; 
}

/* The Glowing Hero Line - Now Gold */
.hero-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, #C19D54, transparent);
    z-index: 0;
    box-shadow: 0 0 15px rgba(193, 157, 84, 0.5);
}

/* Hero Button Customization */
.hero-btn {
    transition: all 0.3s ease;
    border: 1px solid #F3E29F;
    color: #F3E29F;
}

.hero-btn:hover {
    background-color: #F3E29F;
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(243, 226, 159, 0.6);
}

/* Pulsating Animation for the "VOID" Glow */
@keyframes neon-pulse {
    0% { text-shadow: 0 0 5px #C19D54; filter: brightness(1); }
    50% { text-shadow: 0 0 20px #F3E29F, 0 0 30px #C19D54; filter: brightness(1.2); }
    100% { text-shadow: 0 0 5px #C19D54; filter: brightness(1); }
}

.glow-icon:hover {
    animation: neon-pulse 1.5s infinite alternate;
    color: #F3E29F !important;
    transform: scale(1.1);
}