/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212; /* Very dark grey (almost black) for the page body */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Light font weight */
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    background-color: #000000; /* Pure Black Bar */
    padding: 20px 0;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #333; /* Subtle separation */
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-weight: 400; /* Slightly bolder than body text */
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; /* White Text */
    font-weight: 300;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Hover Effect */
.nav-links a:hover {
    color: #FFB6C1; /* Light Pink */
}

/* Main Content Area */
main {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    animation: fadeIn 0.5s ease-in;
}

/* Smooth fade in for content */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Headings inside loaded pages */
h1 {
    font-weight: 300;
    color: #FFB6C1; /* Pink Headers */
    margin-bottom: 20px;
    font-size: 2.5rem;
}

p {
    margin-bottom: 15px;
    color: #e0e0e0; /* Off-white for better readability */
}