/* ============================
   FOOTER STYLING
   ============================ */

.main-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 3px solid #d4af37;
    margin-top: 60px;
    padding: 40px 0 0 0;
    color: #ccc;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.5em;
    margin: 0 0 10px 0;
}

.footer-section h4 {
    color: #d4af37;
    font-size: 1.1em;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #333;
    padding-bottom: 8px;
}

.footer-tagline {
    color: #d4af37;
    font-style: italic;
    margin: 5px 0 15px 0;
    font-size: 0.95em;
}

.footer-description {
    font-size: 0.9em;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 20px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    background: #1a1a1a;
    color: #d4af37;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #333;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.footer-social a:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9em;
    display: inline-block;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Footer Stats */
.footer-stats {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.stat-item {
    margin: 5px 0;
    font-size: 0.9em;
    color: #d4af37;
}

/* Bottom Bar */
.footer-bottom {
    background: #000;
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.85em;
    color: #888;
}

.footer-bottom strong {
    color: #d4af37;
}

.footer-bottom a {
    color: #d4af37;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-credits {
    font-size: 0.8em !important;
    color: #666 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }
}

/* Dark mode extra glow effect */
.main-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #d4af37 50%, 
        transparent 100%
    );
    box-shadow: 0 0 20px #d4af37;
}