/* styles.css */
:root {
    --main-brand-color: #e287ff;
}

html {
    overflow-y: scroll; /* Ensures a consistent scrollbar track on all pages */
}
/* Base styles & Page Fade-In */
body {
    background-color: #111111;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}
/* Only the main page content fades in */
main {
    animation: fadeIn 0.35s ease-in-out forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
/* Top Header / Nav */
header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}


/* Centered main container */
.container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


nav a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover, nav a.active {
    color: #ffffff;
}

/* Site Footer */
.site-footer {
    width: 100%;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #2a2a35;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.site-footer p {
    margin: 4px 0;
}

.site-footer a {
    color: var(--main-brand-color);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Add any other shared classes here... */