:root {
    --color-background-dark: #1a1a1a;
    --color-background-medium: #2c2c2c;
    --color-accent-blue: #18c0f5;;
    --color-text-light: #ffffff;
    --color-text-dark: #333333; /* For contrast if needed */
}

body {
    font-family: Arial, sans-serif;
    /* background-color: var(--color-background-dark); */
    /* color: var(--color-text-light); */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: var(--color-accent-blue);
    text-decoration: none;
}

/* Header and Navigation Styles */
.site-header {
    background-color: grey;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure it takes full width for proper spacing */
}

.navbar {
    background-color: transparent !important; /* Override Bootstrap's default */
    padding: 0;
    width: 100%; /* Ensure navbar takes full width */
}

.navbar-collapse {
    flex-grow: 1; /* Allow the collapse div to grow and push content */
    justify-content: flex-end; /* Push content to the end (right) */
}

.navbar-nav {
    margin-left: auto; /* Push nav items to the right */
}

.navbar-brand {
    color: var(--color-text-light) !important;
    font-size: 1.8em;
    font-weight: bold;
}

.navbar-brand:hover {
    color: var(--color-text-light) !important;
}

.logo {
    color: var(--color-text-light);
}

.logo.highlight {
    color: var(--color-accent-blue);
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

@media (max-width: 900px) {
    .navbar-brand {
        font-size: 1.2em;
    }
}

.navbar-nav .nav-link {
    color: var(--color-text-light) !important;
    font-weight: bold;
    padding: 0.5rem 1rem;
    text-decoration: underline;
}

.navbar-nav .nav-link:hover {
    color: var(--color-accent-blue) !important;
}

.navbar-nav .nav-link.active {
    color: #87cefa !important;
    font-weight: bold;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Footer Styles */
.site-footer {
    background-color: grey;
    color: var(--color-text-light);
    padding: 20px 0;
    text-align: center;
    /* margin-top: 50px; */
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-light);
    margin-top: 0;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

.container {
    max-width: 2500px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent-blue);
    color: var(--color-text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #158cb1;; /* Slightly darker blue on hover */
}