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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #334351;
    color: #CCA463;
    min-height: 100vh;
    position: relative;
}

/* Watermark - stays centered and fixed behind all content */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('assets/knmLogoFull.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* Global Navigation */
.global-nav {
    background-color: #242E38;
    padding: 1rem 2rem;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.site-name {
    color: #CCA463;
    font-size: 1.25rem;
    font-weight: 600;
    margin-right: auto;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-name:hover {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #CCA463;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Main Content */
main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 72px);
}

.welcome-message {
    font-size: 3rem;
    color: #CCA463;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .site-name {
        margin-right: 0;
        width: 100%;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .welcome-message {
        font-size: 2rem;
        padding: 1rem;
    }
}
