:root {
    --background-dark: #1a1a1a;
    --background-light: #2c2c2c;
    --accent: #00c7b1; /* A vibrant teal */
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --border-color: #444;
    --font-main: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-main);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
}

/* Navbar Section */

.navbar {
    background-color: var(--background-light);
    width: 100%;
    height: 7vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    height: 100%;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.navbar-logo:hover {
    background-color: var(--background-dark);
}

.navbar-logo a {
    text-decoration: none;
    height: 100%;
    width: 100%;
    font-size: 3vh;
    padding: 1.5vh;
    align-items: center;
    color: var(--text-primary);
}

.navbar-links {
    margin-right: 10vh;
}

.navbar-links ul {
    list-style:none;
    display: flex;
    gap: 1vh;
}

.navbar-links ul li a {
   display: block;
   padding: 1.5vh 3vh;
   border-radius: 1vh;
   color: var(--text-primary);
   transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar-links ul li a:hover {
    background-color: var(--background-dark);
    color: var(--accent);
}

/* Main Section */

.main {
    flex: 1; /* Allows this section to grow and push the footer down */
    background: var(--background-dark);
    color: var(--text-primary);
    padding: 5vh 0 5vh 10%;
}

.main-content{
    display: block;
    width: 90%;
}

.main-content h1 {
    font-size: 3vh;
}

.main-content p {
    font-size: 1.5vh;
}
/* Footer */
 
footer {
    background: var(--background-light);
    width: 100%;
    padding: 3vh 5vh 5vh;
    flex-shrink: 0; /* Prevents footer from shrinking */
}

.footer-button-container {
    display: flex;
    justify-content: center;
}

.footer-button {
    display: inline-block;
    text-decoration: none;
    color: var(--accent);
    border: 0.1vh solid var(--accent);
    border-style: solid;
    border-radius: 0.3vh;
    padding: 0.5vh 3vh;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-button:hover {
    background-color: var(--accent);
    color: var(--background-dark);
    cursor: pointer;
}

.footer-content {
    margin: 1vh 5vh;
}

.footer-sitemap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 3vh;
    border-left: 0.2vh solid var(--accent);
    border-right: 0.2vh solid var(--accent);
}

.footer-sitemap ul {
    list-style: none;
}

.footer-sitemap ul li {
    padding: 0.2rem 0;
}

.footer-sitemap ul li strong {
    font-size: 1.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-sitemap a,
.footer-sitemap p {
    text-decoration: none;
    color: var(--text-primary);
}

.footer-sitemap a:hover {
    text-decoration: underline;
}