:root {
    --title-font: Verdana, Geneva, Tahoma, sans-serif;
}

/* TAGS */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Headings */
h1 {
    font-size: 20px;
    font-family: var(--title-font);
    text-align: center;
}

h3, h4 {
    font-family: var(--title-font);
}

/* CLASSES */

.container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

.left {
    color: white;
    flex: 1;
    background-color: black;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 450px;
    max-width: 450px;
    box-sizing: border-box;
}

.right {
    background-color: white;
    color: black;
    max-width: 800px;
    padding-left: 25px;
    padding-right: 50px;
    margin-right: auto;
    flex: 2;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Ensure both columns match height */
.container > .left,
.container > .right {
    align-self: stretch;
}

/* Utility Classes */
.currentPage {
    color: cadetblue;
}

.rounded {
    border-radius: 50%;
}

.mainImage {
    margin-left: 25%;
    margin-right: auto;
    width: 160px;
}

.naviLink {
    color: white;
    text-decoration: none;
}

.naviLink:hover {
    text-decoration: underline;
}

.navigation {
    list-style: none;
    padding: 0;
}

.navItem {
    padding: 5px;
}

.programmingLanguage {
    color: green;
}

.someButton {
    height: 25px;
    width: 25px;
    color: white;
}

.someLinks {
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px;
    text-align: center;
}

.workExperienceHeaderRow {
    font-weight: bold;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin: 10px;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        background-color: black;
        z-index: 1000;
        width: 250px;
        padding-top: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .left.active {
        transform: translateX(0);
        display:block;
        opacity:1;
    }

    .hamburger {
        display: block;
    }

    .right {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .mainImage {
        margin-left: 0;
        width: 60%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 16px;
    }

    h3, h4 {
        font-size: 14px;
    }

    .mainImage {
        width: 50%;
    }

    .someButton {
        height: 20px;
        width: 20px;
    }

    .navItem {
        padding: 8px 0;
    }

    .navigation {
        text-align: center;
        padding: 0;
    }
}

