body {

    --main-bg-color: #0b0d17;
    --card-bg-color-transparent: #1a1d29cc;
    --card-bg-color: #1a1d29;
    --highlight-color: #1990d4;
    --highlight-color-darker: #0776b6;
    --text-color: #e3eef5;
    --text-dark-color: #032b42;

    margin: 0;
    font-family: 'B612', sans-serif;
    background-color: var(--main-bg-color);
    color: var(--text-color);
}

.hero {
    height: 90vh;
    background: url('../img/main-bg.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
    z-index: 1;
}

.hero-text {
    position: relative;
    max-width: 90vw;
    z-index: 2;
}

.hero-text h1 {
    font-size: 50px;
    margin: 0;
}

.hero-text p {
    font-size: 18px;
    margin: 10px 0;
}

.cta-container {
    margin: 30px 0;
}

.cta-button {
    margin: 30px 0;
    padding: 15px 30px;
    background-color: var(--highlight-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.cta-button:hover {
    background-color: var(--highlight-color-darker);
}

.mission-overview {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--main-bg-color);
}

.mission-overview h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mission-overview p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.footer {
    background-color: var(--card-bg-color); /* Dark Blue background for the footer */
    color: var(--text-color); /* Light grey text */
    padding: 20px;
    text-align: center;
    border-top: 2px solid var(--highlight-color); /* Cyan border at the top of the footer */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Circular profile picture */
    border: 4px solid var(--highlight-color); /* Cyan border */
    box-shadow: 0px 0px 10px var(--highlight-color); /* Cyan glow */
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info h2 {
    font-family: 'B612', sans-serif;
    color: var(--highlight-color); /* Cyan text */
    margin-bottom: 10px;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
    font-family: 'B612', sans-serif;
    color: var(--text-color); /* Light grey text */
}

.contact-info ul li {
    margin: 5px 0;
}

.contact-info a {
    color: var(--highlight-color); /* Cyan links */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.resume-button {
    display: inline-block;
    background-color: var(--highlight-color); /* Cyan background */
    color: var(--text-dark-color); /* Deep Green text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'B612', sans-serif;
}

.resume-button:hover {
    background-color: var(--highlight-color-darker); /* Slightly darker cyan */
}

.footer-bottom {
    margin-top: 20px;
    font-family: 'B612', sans-serif;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-color); /* Light grey text */
}

