.bodyStyle {
    font-family: Lexend;
    background-color: lightgray;
    background-image: url(./Assets/bg.jpg);
    background-size: cover;
    height: 100vh;
    font-weight: 320;
    overflow: hidden;
}

.bodyStyle h1 {
    font-weight: 450;
}

.bodyStyle h3 {
    font-weight: 400;
}

.bodyStyle span {
    font-weight: 370;
}

.bodyStyle p {
    font-weight: 320;
}

.bodyStyle i {
    font-weight: 300;
}

.bodyStyle ul {
    font-weight: 330;
}

.intro {
    border: 1px solid #bebebe;
    border-width: 2px;
    width: 580px;
    height: fit-content;
    border-radius: 10px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    text-align: center;
    font-size:larger;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(197, 196, 196, 0.366);
    backdrop-filter: blur(4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: none;
    opacity: 0;
}

.intro.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.viewNormal {
    cursor: pointer;
    background-color: rgba(217, 217, 217, 0.486);
    padding: 10px;
    width: fit-content;
    border-radius: 20px;
    margin-top: 5px;
    transition: transform 0.14s ease;

}

.viewNormal:hover {
    background-color: rgba(234, 234, 234, 0.549);
    transform: scale(1.03);
}

.viewEnter {
    cursor: pointer;
    background-color: rgba(187, 187, 187, 0.355);
    padding: 10px;
    width: fit-content;
    border-radius: 20px;
    margin-top: -2px;
    transition: transform 0.14s ease;
}

.viewEnter:hover {
    background-color: rgba(206, 206, 206, 0.567);
    transform: scale(1.03);  
}

.viewSource {
    color: #121212; 
    font-size: 14px;
    margin-top: -4px;
    transition: transform 0.14s ease;
}

.viewSource:hover {
    color: black;
    transform: scale(1.01);
}

.topBar {
    display: flex;
    background-color: rgba(176, 176, 176, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 0 30px;
    color: #2B2B2B;
}

.bottomBar {
    display: flex;
    background-color: rgba(255, 255, 255, 0.19);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    color: #171717;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin-bottom: 25px;
    padding: 0 20px;
    align-items: center;
    gap: 26px;
    transition: transform 0.22s ease, background 0.14s ease;
}

.bottomBar:hover {
    transform: translateX(-50%) scale(1.05);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(5px);
}

.baseIcon {
    background: rgba(215, 215, 215, 0.45); 
    padding: 5px; 
    border-radius: 8px;
    transition: 0.1s ease;
}

.baseIcon.active {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    background: rgba(215, 215, 215, 0.6)
}

.dockIcon:hover {
    transform: scale(1.07);
}

.dockIcon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-top: 14px;
    transition: transform 0.16s ease;
}

.projectWindow {
    display: flex;
    flex-direction: column;
    width: 1300px;
    height: 750px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: fixed;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}


.projectWindow.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.projectTitleBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.682);
    backdrop-filter: blur(15px);
    cursor: move;
}

.projectBody {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.projectSidebar {
    width: 170px;
    height: 800px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.25);
    border-right: 2px solid rgba(255, 255, 255, 0.134);
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.sidebarItem {
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 5px
}

.sidebarItem:hover {
    background: rgba(255, 255, 255, 0.134)
}

.sidebarItem.active {
    background: rgba(255, 255, 255, 0.4)
}

.projectContent {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(7px);
    transition: opacity 0.15s ease;
}

.projectContentInner {
    transition: opacity 0.13s ease, transform 0.13s ease;
}

.projectContentInner.fading {
    opacity: 0.15;
    transform: translateY(6px);
}

.projectControls {
    display: flex;
    align-items: center;
}

.closeButton {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ff5f57;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.15s ease;
}

.closeButton:hover {
    background-color: #e0443e;
}

.resumeView {
    width: 100%;
    height: 100%;
    border: none;
    flex: 1;
}

.notesWindow {
    display: flex;
    flex-direction: column;
    width: 600px;
    height: 750px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: fixed;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.notesWindow.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.notesContent {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(255, 255, 255, 0.402);
    backdrop-filter: blur(8px);
    font-size: 18px
}

.notesContact {
    height: 45px;
    width: 45px;
    cursor: pointer;
    transition: transform 0.17s ease;
}

.notesContact:hover {
    transform: scale(1.1)
}

.notesSocials {
    display: flex;
    justify-content: flex-start;
    gap: 20px
}

.projectRow {
    display: flex;
    gap: 12px;
}

.projectPhoto {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 8px;
}

.projectPhotoS1 {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 8px;
}

.projectPhotoRB {
    width: 50%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 8px;
}


.projectDesc {
    display: block;
    font-size: 18px;
}

.projectLiner {
    margin-top: -10px;
    display: block;
    opacity: 0.85;
}

.projectProgress {
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 8px;
    overflow: hidden;
    object-fit: cover;
    width: 50%;
    height: 330px;
}

.githubButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    text-decoration: none;
    color: #171717;
    font-size: 18px;
    transition: 0.15s ease, background 0.15s ease;
    height: 50px
}

.githubButton:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

.projectVideo { 
    width: 100%;
    border-radius: 8px;
    margin-top: 30px;
    display: block;
}

.projectImgFeature { 
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
    display: block;
}

.projectVidFeature { 
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}


.projectVidWrap {
    border-radius: 8px;
    overflow: hidden;
    display: inline-block;
    margin-top: 30px;
    display: flex;
    height: 490px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.featureCaption {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom:0;
}

.githubButton2 {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    background: rgba(225, 225, 225, 0.753);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    text-decoration: none;
    color: #171717;
    font-size: 18px;
    transition: 0.15s ease, background 0.15s ease;
    height: 50px
}

.githubButton2:hover {
    background: rgb(225, 225, 225);
    transform: scale(1.02);
}

.itchButton2 {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    background: rgba(255, 216, 216, 0.753);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    text-decoration: none;
    color: #171717;
    font-size: 18px;
    transition: 0.15s ease, background 0.15s ease;
    height: 50px
}

.itchButton2:hover {
    background: rgb(253, 193, 193);
    transform: scale(1.02);
}

.splitButton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.aboutMe {
    width: 950px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.aboutColumn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
}

.skillCategory {
    font-size: 20px;
    margin-bottom: 0px;
    margin-top: 20px;
}

.skills {
    margin-top: -5px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 490px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}

.carouselTrack {
    width: 100%;
    height: 100%;
    position: relative;
}

.carouselSlide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carouselSlide.active {
    opacity: 1;
}

.carouselBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.4s ease, background 0.4s ease;
}

.carousel:hover .carouselBtn {
    opacity: 1;
}

.carouselBtn:hover {
    background: rgba(0, 0, 0, 0.65);
}

.carouselBtn.prev {
    left: 12px;
}

.carouselBtn.next {
    right: 12px;
}

.projectImgFeatureP1 { 
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}

.projectPhotoH1 {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 8px;
}

.projectImgWrap {
    border-radius: 8px;
    overflow: hidden;
    display: inline-block;
    margin-top: 30px;
    display: flex;
    height: 490px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(225, 225, 225, 0.753)
}

.projectPhotoC2 {
    width: 50%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 8px; 
}
