/* Wiseman Game Studios Dark Modern Theme */
/* Colors based on logo: navy, slate gray, silver-blue */

:root {
    --bg-dark: #0a0f1a;
    --accent-blue: #3ea6ff;
    --text-light: #e0e6ed;
    --card-bg: #182233;
    --hover-blue: #52b7ff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
}


/* NAVIGATION BAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--card-bg);
    padding: 1em 2em;
    border-bottom: 2px solid var(--accent-blue);
    position: relative;
}

.logo {
    color: var(--accent-blue);
    font-size: 1.4em;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue);
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 6em 2em;
    background: linear-gradient(to bottom right, #101828, #1a2435);
}

.hero-content h2 {
    font-size: 2.5em;
    color: var(--accent-blue);
}

.hero-content p {
    max-width: 600px;
    margin: 1em auto;
    font-size: 1.1em;
    line-height: 1.6em;
}

.btn {
    display: inline-block;
    margin-top: 1.5em;
    background-color: var(--accent-blue);
    color: var(--bg-dark);
    padding: 0.75em 1.5em;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background-color: var(--hover-blue);
}

/* CONTENT SECTION */
.content {
    max-width: 800px;
    margin: 4em auto;
    padding: 2em;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.content h2 {
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 1em;
}

.content ol {
    line-height: 1.8em;
    font-size: 1.05em;
}

/* DIVIDER LINE */
.divider {
    margin: 3em auto;
    border: 0;
    height: 2px;
    width: 80%;
    background: var(--accent-blue);
    opacity: 0.5;
}

/* PROJECTS GRID */
.projects-grid {
    display: grid;
    
    gap: 2em;
    margin-top: 2em;
}

.project-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5em;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(62, 166, 255, 0.4);
}

.project-card h3 {
    color: var(--accent-blue);
    margin-bottom: 0.5em;
}

.project-card p {
    font-size: 0.95em;
    line-height: 1.6em;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 1.5em;
    background-color: var(--card-bg);
    border-top: 2px solid var(--accent-blue);
    font-size: 0.9em;
}
