/* COLOR PALETTE

Green         #009879
Dark green    #3c8453
Sandy beige   #bcaa96
Dark gray     #222222
Light gray    #d3d4d6
Off-white     #f6f6f6

*/


/* GLOBAL STYLES
--------------------------------*/
/* 
  https://www.paulirish.com/2012/box-sizing-border-box-ftw/
*/
html {
    box-sizing: border-box;
    font-size: 62.5%; /* set default size to 16px*/
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    height: 100%;
}

body {
    background: #f6f6f6;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
}

h1, h2, h3 {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    margin: 0;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.5rem;
}

a {
    color: #009879;
    text-decoration: none;
}

a:hover {
    color: #bcaa96;
}

.btn {
    background: #009879;
    color: #f6f6f6;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    display: inline-block;
    padding: 7px;
    letter-spacing: 0.1em;
    line-height: 1;
    border-radius: 4px;
}

.content-wrapper {
    margin: 0 auto;
    padding: 30px;
    max-width: 900px;
}


/* HEADER & NAV 
--------------------------------*/
.site-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
}

.page-nav {
    margin-top: 50px; /* space below logo */
    display: flex;
    gap: 20px;
}

.page-nav a {
    color: #009879;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-bottom 0.3s ease;
}

.page-nav a:hover,
.page-nav .active {
    border-bottom: 2px solid #009879;
}


/* HOME
--------------------------------*/
.home {
    background: url(../img/bg-home-office-studio.jpg) no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.home .content-wrapper {
    opacity: 0.9;
    flex: 1 0 auto;
}

.content-bg-push {
    background: rgb(255, 255, 255);
}

li + li {
    margin-top: 10px;
  }


/* RESUME
--------------------------------*/
.resume header::before {
    background: url(../img/bg-home-office-studio.jpg) center;
    background-size: cover;
    content: "";
    display: block;
    height: 375px;
}

.resume-section {
    margin-bottom: 50px;
}

.resume-section h2 {
    border-bottom: 2px dashed #222222;
}

.download-link {
    position: fixed;
    top: 5px;
    left: 5px;
    font-size: 1.5rem;
    
}

.highlight-link {
    color: #009879;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.highlight-link:hover {
    border-bottom: 2px solid #009879;
}

.resume-nav {
  margin-bottom: 25px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.resume-nav a {
  font-size: 1.4rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-bottom 0.3s ease, color 0.3s ease;
  color: #009879;
}

.resume-nav a:hover {
  border-bottom: 2px solid #009879;
}

.resume-nav .active-link {
  font-weight: bold;
  border-bottom: 2px solid #009879;
}


/* Roles Summary - table styling
--------------------------------*/
.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}



/* Profile
--------------------------------*/



/* Work Experience
--------------------------------*/



/* Education & Certifications
--------------------------------*/



/* --- Coding Projects: subtle buttons --- */
.project-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;          /* space between buttons */
  margin-top: .75rem;
}



/* FOOTER
--------------------------------*/
footer {
    background: #222;
    color: #d3d4d6;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.socials {
    list-style-type: none;
    padding: 0;
}

.socials li {
    display: inline-block;
    margin-left: 10px;
}

.socials img {
    width: 32px;
}

.socials img:hover {
    opacity: 0.5;
}



/* MEDIA QUERIES
--------------------------------*/
