/* ===== FOOTER STYLES ONLY =====
   Safe to include on any page - no global resets
   ========================================== */

/* Footer Component */
.site-footer {
    background: linear-gradient(180deg, #1a2332 0%, #0f1419 100%);
    color: #e2e8f0;
    padding: 30px 20px 30px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Footer Logo with plaque effect */
.footer-logo-container {
    display: inline-block;
    background: rgba(15, 15, 15, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 20px 30px 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 70px;
    width: auto;
    display: block;
    margin: 0 auto 8px;
}

.footer-tagline-small {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
    font-style: italic;
}

.site-footer h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Navigation Links */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #68a1be;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Legal Links */
.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 15px;
    margin-bottom: 20px;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #94a3b8;
}

/* Disclaimer */
.footer-disclaimer {
    font-size: 0.75rem;
    color: #475569;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    display: inline-block;
}

/* Copyright */
.footer-copy {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.footer-copy .heart {
    color: #ef4444;
    display: inline;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 15px 25px;
    }

    .footer-logo-container {
        padding: 15px 20px 12px;
    }

    .footer-logo {
        height: 55px;
    }

    .site-footer h3 {
        font-size: 1.2rem;
    }

    .footer-links {
        gap: 8px 15px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}
