/*
Theme Name: ExvomoTheme
Theme URI: https://exvomo.com
Author: Exvomo
Author URI: https://exvomo.com
Description: Custom WordPress theme for Exvomo.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: exvomo-theme
Tags: custom-logo, full-site-editing
*/

:root {
    --color-primary:        #1C1C39;
    --color-secondary:      #ABE3BF;
    --color-bg:             #1C1C39;
    --color-card-bg:        #ABE3BF;
}

/* ── Skip link ── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    z-index: 9999;
    background: var(--color-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    left: 1rem;
}

/* ── Site footer ── */
.site-footer {
    background-color: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 2rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.footer-menu li a:hover,
.footer-menu li a:focus-visible {
    color: var(--color-secondary);
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
    border-radius: 2px;
}
