/* ------------------------------
   Header Styles (Fixed to Top)
------------------------------ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    padding: 30px 10%;
    background-color: #0c1936;
}

.logo {
    margin-right: auto;
    height: 50px;
}

.logo img {
    height: 100%;
}

.nav__links {
    list-style: none;
    display: flex;
}

.nav__links a,
.cta,
.overlay__content a {
    font-family: "Roboto Bold", sans-serif;
    font-weight: 500;
    font-size: medium;
    color: #edf0f1;
    text-decoration: none;
}

.nav__links li {
    padding: 0px 20px;
}

.nav__links li a {
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
    color: #cb6502;
}

.cta {
    margin-left: 20px;
    padding: 9px 25px;
    background-color: rgb(41, 92, 198,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.cta:hover {
    background-color: rgba(41, 92, 198,0.8);
    color: #cb6502;
}

/* Mobile Nav */

.menu {
    display: none;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #24252a;
    overflow-x: hidden;
    transition: all 0.5s ease 0s;
}

.overlay--active {
    width: 100%;
}

.overlay__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay a {
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
}

.overlay a:hover,
.overlay a:focus {
    color: #cb6502;
}

.overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #edf0f1;
    cursor: pointer;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px;
    }

    .overlay .close {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

@media only screen and (max-width: 800px) {
    .nav__links,
    .cta {
        display: none;
    }

    .menu {
        display: initial;
    }
}

/* ------------------------------
   End Header Styles
------------------------------ */

body {
    margin: 0; /* Remove default margin */
    font-family: "Roboto Thin", sans-serif;
    background-color: #f4f4f4;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Vertical alignment for content */
    align-items: center; /* Horizontal alignment for content */
    gap: 5%;
    background-color: #f4f4f4;
}

/* ------------------------------
   Button Styles
------------------------------ */
.button {
    display: block; /* Make each button take its own line */
    padding: 15px 30px;
    margin: 20px 0; /* Add space between buttons */
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #112652;
    text-decoration: none;
    border-radius: 5px;
    transition: opacity 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px; /* Fixed width for uniformity */
}

.button.logout {
    background-color: red;
}

/* Hover effects for buttons */
.button:hover {
    opacity: 0.9;
    transform: translateY(-2px); /* Add slight lift effect */
    color: #cb6502;
}

/* Focused buttons for accessibility */
.button:focus {
    outline: 2px solid #cb6502;
}


/*!* ------------------------------*/
/*   Footer Styles (Static at Bottom)*/
/*------------------------------ *!*/
footer {
    position: relative;
    height: auto;
    clear: both;
    background-color: #0c1936;
    color: #edf0f1;
    text-align: center;
    font-family: "Roboto Light", sans-serif;
}
