/*General*/
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #292725;
    font-family: 'Inter', sans-serif;
    color: #F3F3F4;
    position: relative;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('images/golden_glider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/*Landing Page*/
.landing-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 90%;
}
.headshot-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3pt solid #F3F3F4;
    background: #292725;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}
.spacer {
    height: 18px;
    display: block;
}
.headshot-caption {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #F3F3F4;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'JetBrains Mono', monospace;
}
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}
.nav-btn {
    padding: 0.5em 1.5em;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: #F3F3F4;
    background: #E89229;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: url('https://www.rw-designer.com/cursor-extern.php?id=134125'), pointer;
}
.nav-btn:hover {
    background: #e0e0e0;
    color: #292725;
}


/*Panes*/
.panes-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    width: calc(100vw - 15vh);
    height: 85vh;
    gap: 2%;
}
.pane {
    background: #292725;
    color: #F3F3F4;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
}
.pane.contact {
    width: 25%;
    height: 100%;
    align-items: top;
    box-sizing: border-box;
    padding: 20px;
}
.pane.content {
    width: 73%;
    height: 100%;
    align-items: center;
}

/*Contact*/


/*About me*/
