@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar h1 {
    margin-bottom: 0px;;
}

.nav-links {
    list-style: none;
    display: flex;
    font-size: 20px;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #8B0000;
}

#resume-download-btn {
  background-color: #8B0000; 
  color: white;
  border: none;
  border-radius: 9999px; 
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
}

#resume-download-btn:hover {
  background-color: #781616;
  font-size: 16px;
}


.main-content {
    margin-top: 30px;
    display: flex;
    min-width: 100%;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.intro-div {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 2rem 4rem;
    width: 90%;
    min-height: 200px;
    border-radius: 16px;
    background-color: rgb(232, 232, 232)
}

#headshot {
    height: auto;    
    max-width: 25%; 
    object-fit: contain; 
}

#bio {
    max-width: 100%;
    padding: 2rem;
}

html {
    scroll-behavior: smooth;
}

#resume-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f8d7da;
  color: #8B0000; 
  border-radius: 9999px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

#resume-scroll-btn .icon {
    height: 20px;
    width: 20px;
}

#resume-scroll-btn:hover {
    background-color: #f3c2c5;
    transform: translateY(-1px);
}

#resume-scroll-btn:active {
    background-color: #e9b1b4;
    transform: translateY(0);
}


/* RESUME SECTION */
#resume-section {
    margin-top: 100px;
    padding: 40px 12px;
    width: 75%;
    background-color: rgb(232, 232, 232);
    border-radius: 16px;
}

.resume-container {
    padding-top: 8px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.resume-container h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    color: #8B0000;
}

.resume-category h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #333;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 4px;
}

.resume-item {
    margin-bottom: 24px;
}

.resume-item h4 {
    font-size: 18px;
    margin: 4px 0;
    color: #8B0000;
}

.resume-date {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.resume-item p,
.resume-item ul {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.resume-item ul {
    padding-left: 20px;
    margin: 8px 0;
}

.resume-item ul li {
    margin-bottom: 6px;
}

#view-all-projects-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f8d7da; 
    color: #8B0000; 
    border-radius: 9999px; 
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

#view-all-projects-btn .icon {
    height: 20px;
    width: 20px;
}

#view-all-projects-btn:hover {
    background-color: #f3c2c5;
    transform: translateY(-1px);
}


/* PROJECTS PAGE */
.projects-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 900px;
}

.project-card {
    height: 100%;
    display: flex;
    align-items:center;
    background-color: #e8e8e8;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    gap: 24px;
    margin-bottom: 8px;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

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

.project-image img {
    width: 300px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.project-info h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #8B0000;
}

.project-date {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 12px;
}

.project-info p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.project-info ul {
    padding-left: 20px;
    margin: 0;
}

.project-info ul li {
    margin-bottom: 6px;
}

