/* ===== CSS Reset (lightweight) ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== Root Variables (easy to tweak later) ===== */
:root {
    --bg-main: #0b1020;
    --bg-secondary: #121833;

    --text-main: #e6e9f2;
    --text-muted: #a9afc7;

    --accent: #8aa2ff;

    --max-width: 1100px;
}

/* ===== Base Page Styling ===== */
body {
    font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif;

    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}



/* ===== Layout Helpers ===== */
main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

section {
    margin-bottom: 4rem;
}

/* ===== Header / Navigation ===== */
.site-header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    padding: 5rem 1rem 6rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tagline {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== Current Project Section ===== */
.current-project h2 {
    margin-bottom: 1.5rem;
}

.project-card {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 8px;
}

.project-card h3 {
    margin-bottom: 0.75rem;
}

.project-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===== Buttons ===== */
.button {
    display: inline-block;
    padding: 0.6rem 1.4rem;

    background-color: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

.button:hover {
    opacity: 0.9;
}

/* ===== Footer ===== */
.site-footer {
    text-align: center;
    padding: 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.aria-chibi {
    height: 140px;
    width: auto;
    opacity: 0.95;
}

.social-links {
    list-style: none;
    padding: 0;
    margin-top: 1rem;

    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.social-links a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
}

.social-links a:hover {
    text-decoration: underline;
}

.page-intro {
    margin: 0 auto 4rem auto;
    max-width: 600px;
}

.page-secondary {
    margin: 0 auto 3rem auto;
    max-width: 600px;
}


main p {
    margin-bottom: 1.25rem;
}

.site-footer {
    margin-top: 4rem;
}

.content-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;

    padding: 2.5rem;
    margin-bottom: 3.5rem;
}

.aria-intro {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    max-width: 720px;
    margin: 0 auto 4rem;
}

.aria-chibi {
    height: 140px;
    width: auto;
    flex-shrink: 0;
}

.aria-line {
    color: var(--text-muted);
    font-size: 1rem;
}