/* ===========================================================
   EdgeSeeker – shared styles (loaded by every page)
   Reset · base · header/navigation · footer
   =========================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0A0E1A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Header / Navigation ===== */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 4rem;
    background: #0A0E1A;
    border-bottom: 1px solid #2D3748;
}
.site-logo { display: inline-flex; }
.site-logo img { height: 40px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}
.site-nav a:hover { color: #8CE67D; }
.site-nav a.active {
    color: #8CE67D;
    border-bottom: 2px solid #8CE67D;
    padding-bottom: 3px;
}

/* ===== Footer ===== */
footer {
    background: #0A0E1A;
    border-top: 1px solid #2D3748;
    padding: 2rem 0;
    width: 100%;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #8CE67D; }
.footer-copyright {
    text-align: center;
    color: #718096;
    font-size: 0.8rem;
}

/* Social icons (footer + contact) */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.footer-social a {
    color: #A0AEC0;
    display: inline-flex;
    transition: color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { color: #8CE67D; transform: translateY(-2px); }
.footer-social svg { width: 22px; height: 22px; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .site-header { padding: 1.25rem 1.5rem; }
}
