/* Second Fold and Display  */
.second-fold {
    position: relative;
    min-height: 300vh;
    width: 100%;
    overflow: hidden;
}

.display_window {
    position: relative;
    width: 100%; 
    opacity: var(--glow-opacity, 0);
    transition: opacity 0.1s ease;
    margin-top: 15vh; 
    pointer-events: none; 
}

.content_screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px); 
    transition: opacity 0.4s ease, transform 0.4s ease;
    color: white;
    font-family: "Imprima", sans-serif;
}

.content_screen.active {
    opacity: 1;
    pointer-events: auto; 
    transform: translateY(0);
}

#about.content_screen, 
#experience.content_screen, 
#projects.content_screen {
    display: flex;
    padding-left: 20vh; 
    padding-top: 3.5vh; 
}

/* About Section */
#about.content_screen {
    flex-direction: column;
    gap: 1rem;
}

.bio_container {
    width: 100%;
    max-width: 35rem; 
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bio_heading {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 400;
    margin: 0; 
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.location {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.location_icon {
    width: 28px;
    height: 28px;
    margin-right: 0.5rem;
}

.location_text {
    color: #FFF;
    font-family: "Imprima", sans-serif;
    font-size: clamp(0.75rem, 2vw, 1rem);
    font-weight: 400;
    margin: 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.bio {
    font-size: clamp(1rem, 2vw, 1.10rem);
    font-weight: 400;
    margin: 0;
    max-width: 31rem; 
    line-height: 1.5;
}

.highlight {
    color: #48bcff;
    text-shadow: 0 0 8px #48bcff;
}

.highlight2 {
    color: #ff9361;
    text-shadow: 0 0 8px #ff9361;
}

.highlight3 {
    color: #ffd166;
    text-shadow: 0 0 8px #ffd166;
}

.line1 {
    padding: 1rem 0;
    width: 31rem; 
    opacity: 0.6;
}

/* Technical Skills */
.technical_container {
    display: flex;
    flex-direction: column;
    margin-top: 0rem; 
}

.skills_container {
    display: flex;
    flex-direction: column;
    gap: 1.15rem; 
    
}

.skills_inner_container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.tech_header {
    font-size: clamp(0.9rem, 2.5vw, 1.10rem); 
    font-weight: 400;
    margin: 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    width: 7.25rem; 
    flex-shrink: 0;
}

.tech_icons {
    flex-wrap: wrap; 
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.icon_wrapper {
    position: relative;
    display: inline-block;
}

.tech_icons img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    cursor: pointer;
}

.javascript {
    transform: scale(0.85);
}

.icon_wrapper:hover img {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.icon_wrapper::after {
    content: attr(data-label);
    position: absolute;
    bottom: -2.8rem;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: rgba(0, 0, 0, 0.85);
    color: #FFFFFF;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.icon_wrapper:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

/* Experience Section */
#experience.content_screen {
    flex-direction: column;
    align-items: stretch; 
    min-height: 100vh;
}

.timeline_container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 35%;
    max-width: 50rem;
}

.experience_container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
    width: 100%;  
}

.experience_header_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.experience_header, .leadership_header, .involvement_header {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 400; 
    margin: 0; 
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Resume Download */
.resume_download {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.download_button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download_button:hover {
    transform: scale(1.1);
    text-shadow: 0 0 8px #ffffff;
}

.download_logo {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.download_text {
    color: #FFFFFF;
    font-size: 0.90rem;
}

/* Roles */
.role {
    margin-bottom: 2.5rem;
}

.place_container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.place_logo_container {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.place_logo {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;
}

.place_and_role {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.place_name {
    font-size: clamp(1rem, 4vw, 1.2rem);
    font-weight: 400;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.role_name {
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.duration_style {
    display: flex;
    flex-direction: column; 
    margin-left: auto;
    text-align: right;
    gap: 0.1rem;
}

.duration_text {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.type_text {
    font-size: 0.8rem;
    margin: 0.2rem 0 0 0;
    color: #b187ff;
    text-shadow: 0 0 5px rgba(151, 72, 255, 0.4);
}

.role_description {
    max-width: 30rem;
    font-size: 1rem;
    line-height: 2;
    margin: 0;
    padding-left: 4rem; 
}

.role_skills {
    padding-left: 4rem; 
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.role_skills .tech_icons img {
    width: 2.2rem;   
    height: 2.2rem;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    cursor: pointer;
}

.role_skills .icon_wrapper:hover img {
    transform: scale(1.2) translateY(-3px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.role_skills .icon_wrapper::after {
    bottom: -2.2rem; 
}

/* Projects Section  */
#projects.content_screen {
    flex-direction: column;
    gap: 1rem;
}

.live_container, .projects_container, .design_container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 60%;
}


.projects_container, .design_container {
    margin-top: 2rem;
}

.heading_live_container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 100%;
}

.live_container_heading, .projects_container_heading, .design_container_heading {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 400; 
    margin: 0; 
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.live_projects, .projects_projects, .design_projects {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; 
    justify-content: flex-start; 
    gap: 2rem;
    max-width: 100%;
}

.card_container {
    text-decoration: none;
    color: inherit;
    display: block;
}

.live_project_card, .project_card {
    width: 20rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border:rgba(255, 255, 255) 1px solid;
    min-height: 26.5rem;
    max-height: 26.5rem;
    background: rgba(0, 0, 0, 0.5);
}

.live_project_card:hover, .project_card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.project_image {
    width: 95%;
    margin-top: 0.5rem;
    margin-left: 0.45rem;
    margin-bottom: 0rem;
    border:rgba(255, 255, 255) 1px solid;
}

.project_info {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: -1rem;
    gap: 0.75rem;
    margin-left: 0.75rem;
}

.project_title {
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-weight: 400; 
    margin: 0; 
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    min-height: 3rem;
    max-width: 95%;
}

.live_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8rem;
}

.users { 
    display: flex; 
    align-items: center; 
    gap: 0.25rem; 
    margin-top: -1rem;
}

.live_meta_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
    margin-bottom: 0.7rem;
    gap: 1rem;
    margin-left: -3rem;
}

.live_meta_row_p {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
    margin-bottom: 0.7rem;
    gap: 1rem;
    margin-left: 2rem;
}

.meta_row {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    max-width: 95%;
    margin-bottom: 0.7rem;
    margin-right: 1.3rem;
    gap: 1rem;
}


.user_icon { 
    width:  1.75rem; 
    height: 1.75rem; 
    margin-top: 0.75rem;
}

.user_count { 
    font-size: 1.2rem; 
    width: 3rem;
    margin: 0; 
    text-shadow: 0 0 5px white; 
}

.github_card_icon {
    width: 1.75rem;
    height: 1.75rem;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
    transition: transform 0.3s ease;
}

.github_card_icon_hidden {
    width: 1.75rem;
    height: 1.75rem;
    opacity: 0.5;
    pointer-events: none;
}

.project_github_link_hidden {
    pointer-events: none;
}


.video_card_icon {
    width: 1.75rem;
    height: 1.75rem;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
    transition: transform 0.3s ease;
}

.video_card_icon_hidden {
    width: 1.75rem;
    height: 1.75rem;
    opacity: 0.5;
    pointer-events: none;
}

.project_video_link_hidden {
    pointer-events: none;
}

.drive_card_icon {
    width: 1.75rem;
    height: 1.75rem;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
    transition: transform 0.3s ease;
}

.figma_card_icon {
    width: 1.75rem;
    height: 1.75rem;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
    transition: transform 0.3s ease;
}


.figma_card_icon:hover { 
    transform: scale(1.2); 
}

.github_card_icon:hover { 
    transform: scale(1.2); 
}

.video_card_icon:hover { 
    transform: scale(1.2); 
}

.drive_card_icon:hover { 
    transform: scale(1.2); 
}

.tech_icons_p {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap; 
    gap: 1rem;
    max-width: 90%;
}

.icon_wrapper_p { 
    position: relative; 
}

.tech_icons_p img { 
    width: 2rem; 
    height: 2rem; 
    transition: transform 0.3s ease; 
    cursor: pointer; 
}

.icon_wrapper_p:hover img { 
    transform: scale(1.2) translateY(-3px); 
}

.icon_wrapper_p:after {
    content: attr(data-label);
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.icon_wrapper_p:hover::after { 
    opacity: 1; 
    transform: translateX(-50%) translateY(3px);
}