/**
 * Styles du Footer Avancé - Hyperion-Libs-SP
 *
 * Footer avec section de contact et bouton d'administration
 */

/* Footer principal avancé */
.hyperion-footer-advanced {
    background: #000000;
    color: #cbd5e0;
    margin-top: auto;
}

.hyperion-footer-content {
    border-top: 3px solid #e53e3e;
    padding: 30px 0;
    text-align: center;
}

.hyperion-footer-contact {
    font-size: 13px;
    color: #cbd5e0;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.hyperion-footer-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hyperion-btn-footer {
    padding: 10px 24px;
    border: 2px solid #2d2d2d;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: #1a1a1a;
    color: #cbd5e0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hyperion-btn-footer:hover {
    background: #2d2d2d;
    border-color: #e53e3e;
    color: #ffffff;
    transform: translateY(-2px);
}

.hyperion-btn-admin {
    border-color: #e53e3e;
    color: #e53e3e;
}

.hyperion-btn-admin:hover {
    background: #e53e3e;
    color: #ffffff;
}

.hyperion-footer-bottom {
    background: #000000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hyperion-footer-bottom .hyperion-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.hyperion-footer-bottom p {
    font-size: 12px;
    margin: 0;
    color: #718096;
}

.hyperion-footer-bottom a {
    color: #e53e3e;
    text-decoration: none;
    transition: color 0.2s;
}

.hyperion-footer-bottom a:hover {
    color: #c53030;
    text-decoration: underline;
}

.hyperion-link-author {
    color: #e53e3e;
    font-weight: 600;
}

/* Container */
.hyperion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hyperion-footer-content {
        padding: 20px 0;
    }

    .hyperion-footer-contact {
        font-size: 12px;
    }

    .hyperion-btn-footer {
        font-size: 12px;
        padding: 8px 20px;
    }

    .hyperion-footer-bottom p {
        font-size: 11px;
    }
}
