/* Dark Theme Styling */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Background Watermark */
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: url('logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    z-index: -1;
}

/* Header: Logo on left, Nav centered */
header {
    display: flex;
    align-items: center;
    padding: 20px 5%;
    background-color: #000000;
    border-bottom: 1px solid #333; /* Adds that professional line */
}

.nav-logo {
    height: 40px;
    width: auto;
}

/* Center the navigation links */
nav {
    flex-grow: 1; /* Pushes nav to fill space */
    text-align: center; /* This centers the links */
    padding-right: 40px; /* Balances the logo on the left */
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px; /* Adds space between links */
    font-size: 0.9rem;
    opacity: 0.8;
}

nav a:hover {
    opacity: 1;
}

/* Main Content: Center everything */
.container {
    max-width: 800px;
    margin: 0 auto; /* Centers the block itself */
    padding: 60px 20px;
    text-align: center; /* This forces all text to the middle */
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 500;
}

p {
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
}
