/**
 * Estilos del Footer (pie de página) - Tarot Místico
 * Componente reutilizable en todas las páginas
 */

.site-footer {
    margin-top: auto;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    text-align: center;
}

.site-footer__inner {
    max-width: 800px;
    margin: 0 auto;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.site-footer__link {
    color: rgba(255, 215, 0, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.site-footer__link:hover {
    color: #ffd700;
    text-decoration: underline;
}

.site-footer__copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.site-footer__copyright a {
    color: rgba(255, 215, 0, 0.8);
    text-decoration: none;
}

.site-footer__copyright a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 0.75rem;
    }

    .site-footer__links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .site-footer__link {
        font-size: 0.85rem;
    }

    .site-footer__copyright {
        font-size: 0.75rem;
    }
}
