* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

main {
    text-align: center;
    background: linear-gradient(to bottom, #000000, #292929);
    padding-top: 90px;
}

.glass {
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
}

nav {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.logo-link {
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.logo-link:hover { 
    background: transparent; 
    opacity: 0.5; 
}

a {
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
a:hover { 
    background: white; 
    color: black; 
}

a.active {
    background: rgba(80, 80, 80, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
a.active:hover { 
    background: rgba(80, 80, 80, 0.4); 
    color: white; 
}

.title_summary {
    display: grid;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 60px;
}

.title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 80px;
    color: white;
}

.bar {
    width: 60%;           
    margin: 0 auto;
    padding: 16px 40px;   
    border-radius: 100px;
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;       
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.summary {
    width: 70%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

.scrolling_bar {
    width: 100%;
    padding: 30px 0;
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 1px;
    font-size: 16px;
}

.scrolling_content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.scrolling_content span { 
    display: inline-block; 
    padding-right: 150px; 
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.projects_section {
    padding: 60px 40px;
    margin: 40px 0;
}

.projects_title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 48px;
    margin-bottom: 60px;
}

.projects_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.project_circle { 
    display: flex; 
    justify-content: center; 
}

.circle_icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.circle_icon:hover {
    background: rgba(100, 100, 100, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.circle_icon span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 10px;
    text-align: center;
}

.about_me_section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about_me_title {
    grid-column: 1 / -1;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.home_headshot {
    grid-column: 1;
    grid-row: 2 / 4;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    position: relative;
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.home_headshot img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.home_headshot::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
}
.home_headshot::after {
    content: 'About Me';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.home_headshot:hover::before,
.home_headshot:hover::after { 
    opacity: 1; 
}

.home_headshot:hover { 
    border-color: rgba(255,255,255,0.4); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); 
}

.restaurant_photo, .thrifting_photo, .city_photo, .cooking_photo {
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    position: relative;
    transition: all 0.3s ease;
}
.restaurant_photo span, .thrifting_photo span,
.city_photo span, .cooking_photo span {
    position: absolute;
    bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: black;
    padding: 8px 16px;
    border-radius: 10px;
}
.restaurant_photo:hover, .thrifting_photo:hover,
.city_photo:hover, .cooking_photo:hover {
    background: rgba(100, 100, 100, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.restaurant_photo { 
    grid-column: 2; 
    grid-row: 2; 
}

.thrifting_photo { 
    grid-column: 3; 
    grid-row: 2; 
}

.city_photo { 
    grid-column: 2; 
    grid-row: 3; 
}

.cooking_photo { 
    grid-column: 3; 
    grid-row: 3; 
}

.about_section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about_hero_grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: stretch;
}

.headshot {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%; 
}

.headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top; 
    display: block;
    transition: all 0.3s ease;
}

.about_story {
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my_story { 
    font-family: 'Inter', sans-serif; 
    font-weight: 600; 
    font-size: 18px; 
}

.about_summary { 
    font-family: 'Inter', sans-serif; 
    font-size: 15px; 
    line-height: 1.8; 
    color: rgba(255,255,255,0.85); 
}

.timeline_section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline_title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    text-underline-offset: 10px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline_line {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
    top: 83px;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        white 8%,
        white 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        white 8%,
        white 92%,
        transparent 100%
    );
}

.timeline_items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.timeline_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.timeline_label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: white;
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: flex-end;
}

.timeline_dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.timeline_year {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.interests_section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.interests_title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    text-underline-offset: 10px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.interests_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    justify-items: center;
}

.interest_circle {
    display: flex;
    justify-content: center;
}

.hobbies_section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.hobbies_title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 48px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    text-underline-offset: 10px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.hobbies_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.hobby_card {
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hobby_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    border-radius: 20px;
}

.hobby_card span {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: white;
    background: black;
    padding: 8px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.hobby_card:hover {
    background: rgba(100, 100, 100, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.projects_page_section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.projects_page_title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 64px;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.projects_filter_bar {
    display: inline-flex;
    gap: 10px;
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 8px 16px;
    margin-bottom: 60px;
}

.filter_btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter_btn:hover {
    background: white;
    color: black;
}

.active_filter {
    background: rgba(80, 80, 80, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.active_filter:hover {
    background: rgba(80, 80, 80, 0.5);
    color: white;
}

.projects_cards_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.project_card {
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    border-radius: 20px;
}

.project_card span {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: white;
    background: black;
    padding: 8px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.project_card:hover {
    background: rgba(100, 100, 100, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.resume_section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.resume_title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 64px;
    color: white;
    text-align: center;
}

.resume_preview {
    width: 100%;
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
}

.resume_preview img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.resume_action_bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.resume_toggle {
    display: inline-flex;
    gap: 4px;
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 6px 10px;
}

.toggle_btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.toggle_btn:hover {
    background: white;
    color: black;
}

.active_toggle {
    background: rgba(80, 80, 80, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.active_toggle:hover {
    background: rgba(80, 80, 80, 0.5);
    color: white;
}

.download_btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: rgba(40, 40, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 14px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.download_btn:hover {
    background: white;
    color: black;
    border-color: white;
}

footer {
    background: rgba(80, 80, 80, 0.2);
    backdrop-filter: blur(10px);
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
    padding: 32px 40px;
    line-height: 1.8;
}
.footer_content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.footer_text { 
    text-align: left; 
}

.footer_title { 
    font-family: 'Inter', sans-serif; 
    font-weight: 500; 
    margin-bottom: 8px; 
}

footer img { 
    flex-shrink: 0; 
}