
@charset "utf-8";

html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #eae3cb;
    font-family: 'Lato', sans-serif;
}

body {
    position: relative;
    isolation: isolate;
}

/* Links */
a:link {
    color: #4fc3ff;   /* bright readable blue */
}

a:visited {
    color: #c792ea;   /* soft purple that still contrasts */
}

a:hover,
a:focus {
    color: #ffffff;
    text-decoration: underline;
}

a:active {
    color: #ffd54f;   /* brief gold flash on click */
}

/* Navigation */
.main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Primary links */
.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.85);
    color: #000;
    border-radius: 999px;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
}

.nav-links a:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

.nav-links i {
    font-size: 14px;
}

/* Social icons */
.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
}

.nav-social a:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-1px);
}

/* Mobile tightening */
@media (max-width: 600px) {
    .nav-links a span {
        display: none;
    }

    .nav-links a {
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
}

/* Background video */
.videobg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.videobg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Foreground */
.site-content {
    position: relative;
    z-index: 10;
}

.page-title {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 4vw;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    text-align: center;
    text-shadow: 2px 2px 4px #000;
    color: #305f72;
}

@media (max-width: 768px) {
    h1 { font-size: 6vw; }
}

.div_main {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid #444;
    padding: 1px 4px;
    width: 1000px;
    max-width: 98%;
    margin: auto;
    border-radius: 15px;
    position: relative;
    z-index: 10;
}

/* keep your existing rules below this line (menus, footer, etc) */
