/*
Theme Name: Nysera Theme
Version: 4.0
*/

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
    color: #fff;
}

/* Background */
body {
    background: url('assets/background.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

/* Dark overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: -1;
}

/* Reusable container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    text-decoration: none;
    font-size: 24px;
    letter-spacing: 3px;
    color: #00ffb3;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    opacity: 0.85;
}

.nav-menu a:hover {
    opacity: 1;
}

/* Page wrapper */
.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Centered content */
.content-container {
    max-width: 800px;
    width: 100%;
    background: rgba(0,0,0,0.6);
    padding: 50px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 40px rgba(0,255,179,0.15);
    text-align: center;
}

/* Typography inside WP content */
.content-container h1,
.content-container h2,
.content-container h3 {
    margin-top: 0;
}

.content-container p {
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {

    .nav-inner {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .page-wrapper {
        padding: 140px 20px 40px;
    }

    .content-container {
        padding: 30px;
    }

    .logo a {
        font-size: 20px;
    }
}