
/* IMPORT FONTS ---------------------------------------------------------------------------------------------- */

    /* IMPORT INTER FONT ---------------------------------------------------------------- */
    @font-face {
        font-family: InterRegular;
        src: url(./Assets/Fonts/Inter/Inter-Regular.ttf);
    }

    @font-face {
        font-family: InterMedium;
        src: url(./Assets/Fonts/Inter/Inter-Medium.ttf);
    }

    @font-face {
        font-family: InterBold;
        src: url(./Assets/Fonts/Inter/Inter-Bold.ttf);
    }
    /* IMPORT INTER FONT ENDED ---------------------------------------------------------------- */


    /* IMPORT PACIFICO FONT ---------------------------------------------------------------- */
    @font-face {
        font-family: Pacifico;
        src: url(./Assets/Fonts/Pacifico/Pacifico-Regular.ttf);
    }
    /* IMPORT PACIFICO FONT ENDED ---------------------------------------------------------------- */


    /* IMPORT POPPINS FONT ---------------------------------------------------------------- */
    @font-face {
        font-family: PoppinsRegular;
        src: url(./Assets/Fonts/Poppins/Poppins-Regular.ttf);
    }

    @font-face {
        font-family: PoppinsBold;
        src: url(./Assets/Fonts/Poppins/Poppins-Bold.ttf);
    }

    /* IMPORT POPPINS FONT ENDED ---------------------------------------------------------------- */

/* IMPORT FONTS ENDED ---------------------------------------------------------------------------------------------- */

html,
body,
div,
header,
p {
  margin: 0;
  padding: 0;
}

a{
    display: inline-block;
    width: auto;
    height: auto;
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #00FFB2;
    cursor: pointer;
}

html,
body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}

.vectorImage {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    max-width: 450px;
    max-height: 450px;
    min-width: 150px;
    min-height: 150px;
}

.desktopHide {
    display: block;
  }

.vectorImage2 {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    max-width: 600px;
    max-height: 600px;
    min-width: 200px;
    min-height: 200px;
}

.vectorImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vectorImage2 img {
    border-radius: 400px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headerWrapper {
    position: fixed;
    top: 0;
    background-color: rgba(26,26,26, 1);
    width: 100%;
    height: 6%;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}


.homeLink {
    margin-left: 10vw;
    font-family: InterBold;
    font-size: 14px;
    color: #00FFB2;
}

.homeLink:hover {
    color: #F2F4F3;
    cursor: pointer;
}

.pagesWrapper {
    margin-right: 2px;
    display: flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 895px) {


    .mobileHide {
      display: none;
    }
  
    .hamburgerMenu {
      display: block;
    }
  
    .menu {
        display: block;
        position:absolute;
        align-items: flex-end;
        justify-content: flex-end;
        width: 40%;
        height: 100vh; /* Cover the entire viewport height */
        background-color: rgba(26, 26, 26, 0.9);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        top: 0;
        right: 0; /* Ensure the menu sticks to the right part of the screen */
        padding: 0; /* Remove padding */
        margin: 0; /* Remove margin */
    }

    .menu.active {
        transform: translateX(0%);
    }

    .menu .pageObject {
        display: block;
        margin: 1rem 0;
    }

    .closeButton {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #FFF;
        cursor: pointer;
    }

    .modal {
        position: fixed;
        z-index: 9999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 99vw;
        height: 99vh;
        display:none;
        overflow: auto;
    }
    
    .modal-content {
        background-color: #363636;
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .close {
        color: #fff;
        position: absolute; /* Position relative to the modal-content */
        top: 10px;
        right: 20px;
        font-family: poppinsRegular;
        font-size: 6vw;
        font-weight: bold;
    }
    
    .close:hover,
    .close:focus {
        color: #00FFB2;
        text-decoration: none;
        cursor: pointer;
    }
    
    .modalContentWrapper{
        width: 100vw;
        height: inherit;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    
    .modalLeftWrapper{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
        height: 80vh;
    }
    
    .modalTitle {
        display: flex;
        margin-top: 6vh;
        max-width: 60vw;
        text-align: center;
        font-family: PoppinsBold;
        font-size: 4vw;
        color: #F2F4F3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .modalDivider{
        background-color: #00FFB2;
        width: 50vw;
        height: 0.6vh;
    }
    
    .modalDesc{
        font-family: PoppinsRegular;
        margin-top: 2vh;
        color: #F2F4F3;
        max-width: 80vw;
        height: 100vw;
        font-size: 3.2vw; /* Adjust the base font size as per your preference */
        word-wrap: break-word; /* For legacy browser support */
        overflow-wrap: break-word; /* For modern browser support */
        overflow: auto;
        padding-bottom: 5vh;
    }
    
    .modalRightWrapper{
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 5vw;
        padding-bottom: 1.6vh;
        padding-top: 1.8vh;
        background-color: #363636;
    }
    
    .ytVideoFrame {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F2F4F3;
        border-radius: 0.5vw;
        width: 90vw;
        height: calc(90vw * 9 / 16);
    }
    
    .ytVideoFrame iframe {
        width: 100%;
        height: 100%;
        border-radius: 0.5vw; /* Apply the same border-radius as the container */
    }
    
    /* Add this CSS to style the modal */
    .modal2 {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
    }
    
    .modal-content2 {
        background-color: #fefefe;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 400px;
    }
    
    .close2 {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }
    
    .close2:hover,
    .close2:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    
    .galleryGrid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Center the grid within the container */
        max-width: 80vw;
        gap: 10px; /* This ensures spacing scales with the grid */
        padding-bottom: 100px;
    }
    
    .galleryElement {
        position: relative;
        background-color: #00FFB2;
        width: 80vw;
        height: 40vw;
        margin: 5px; /* Ensures consistent 10px spacing around each element */
        padding: 0; /* No padding inside the element */
        box-sizing: border-box; /* Include padding in the element's total width and height */
        overflow: hidden; /* Ensures the overlay stays within the element */
        transition: transform 0.3s; /* Smooth transition for scaling */
        cursor:pointer;
    }
    
    .galleryElement:hover {
        transform: scale(1.1); /* Enlarge the element upon hover */
    }
    
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black overlay */
        opacity: 0;
        transition: opacity 0.3s; /* Smooth transition for opacity */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .galleryElement:hover .overlay {
        opacity: 1; /* Show the overlay upon hover */
    }
    
    .text {
        color: white;
        font-size: 24px;
    }
    
    .galleryElement img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image covers the whole area */
        display: block;
    }
}

.hamburgerMenu{
    display: block;
    color:#F2F4F3;
    width: 20px;
    height: 20px;
    margin: 5px 20px;
    margin-right: 20px;
}

.hamburgerMenu img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.pageObject {
    padding: 10px 30%;
    margin-right: 20px;
    font-family: InterMedium;
    font-size: 14px;
    color: #F2F4F3;
}

.pageObject:hover {
    color: #00FFB2;
    cursor: pointer;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.pageSection::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.pageSection {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

#pSection1 {
    background-color: #1A1A1A;
    overflow-y: scroll;
    overflow-x: hidden;
    min-height: 100vh;

}

#pSection2 {
    background-color: #363636;
    overflow-y: scroll;
    overflow-x: hidden;
    min-height: 100vh;

}

#pSection3 {
    background-color: #1A1A1A;
    overflow-y: scroll;
    overflow-x: hidden;
    height: auto;

}

.contentWrapperMaster {
    padding-top: 140px;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contentWrapperMasterCenter {
    padding-top: 140px;
    width: 100vw;
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leftContentWrapper{
    margin-left : 10px;
}

.rightContentWrapper{
    padding-right: 20px;
}

.welcomeText{
    font-family: Pacifico;
    font-size: 60px;
    line-height: 80px;
    color: #F2F4F3;
}

#letterR{
    color: #00FFB2;
}

.descriptionText{
    padding-top: 40px;
    font-family: PoppinsRegular;
    font-size: 16px;
    color: #F2F4F3;
}

.greenButton{
    padding-top: 10px;
}

.greenButtonWrapper:hover{
    color: #F2F4F3;
    cursor: pointer;
}

.greenButtonWrapper{
    border-radius: 5px;
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00FFB2;
}

.greenButtonText{
    font-family: InterBold;
    Color: #363636;
}

.aboutMeWrapper{
    
    display: flex;
    flex-direction: column;
}

.aboutText{
    font-family: PoppinsBold;
    font-size: 35px;
    color: #F2F4F3;
}

.aboutTextH2{
    padding-top: 25px;
    padding-bottom: 20px;
    font-family: PoppinsBold;
    font-size: 21px;
    color: #F2F4F3;
}

.aboutTextH2Hobbies{
    padding-top: 25px;
    padding-bottom: 20px;
    font-family: PoppinsBold;
    font-size: 21px;
    color: #F2F4F3;
}

.aboutTextH2Hobbies:hover{
    color: #00FFB2;
    cursor: pointer;
}

.aboutTextH3{
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: PoppinsBold;
    font-size: 13px;
    color: #F2F4F3;
}

.aboutLine{
    width: 180px;
    height: 6px;
    color: #00FFB2;
    background-color: #00FFB2;
}

.aboutLine2{
    width: 150px;
    height: 6px;
    color: #00FFB2;
    background-color: #00FFB2;
}

.aboutLine3{
    width: 210px;
    height: 6px;
    color: #00FFB2;
    background-color: #00FFB2;
}

.aboutDescription{
    padding-left: 10px;
    padding-right: 15px;
    max-width: 600px;
    word-wrap: break-word;
    padding-top: 50px;
    font-family: PoppinsRegular;
    font-size: 16;
    color: #F2F4F3;
}

.aboutDescriptionInter{
    max-width: 600px;
    word-wrap: break-word;
    padding-top: 10px;
    font-family: InterRegular;
    font-size: 16;
    color: #F2F4F3;
}

.interBold{
    max-width: 600px;
    word-wrap: break-word;
    padding-top: 50px;
    font-family: InterBold;
    font-size: 16;
    color: #F2F4F3;
}

.contentSpacing{
    margin-bottom : 100px;
}

.portfolioImgWrapper {
    padding-top: 80px;
    height: 60vh;
    width: 100vw;
}

.fourWrapper {
    height: 60vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #1A1A1A;
    width: 100%;
}

.portfolioImg, .portfolioImgNoBehavior {
    position: relative;
    width: 100vw;
    height: 60vh;
    flex: 1 0 21%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolioImg::before, .portfolioImgNoBehavior::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.portfolioImg:hover::before {
    opacity: 1;
}

.portfolioImg img, .portfolioImgNoBehavior img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolioImg:hover img {
    transform: scale(1.3);
}

.imgDescription {
    position: absolute;
    width: 100%;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
    z-index: 2;
}

.portfolioImg:hover .imgDescription, .portfolioImgNoBehavior:hover .imgDescription {
    opacity: 1;
}

.imgDescription {
    position: absolute;
    width: 100%;
    color: white;
    opacity: 0;
    transition: opacity 0.3s 0.6s;
    text-align: center;
    z-index: 1;
    font-family: PoppinsRegular;
}

.portfolioImg:hover .imgDescription, .portfolioImgNoBehavior:hover .imgDescription {
    opacity: 1;
}

.imgDescription {
    position: absolute;
    width: 100%;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
    z-index: 1;
}

.portfolioImg:hover .imgDescription, .portfolioImgNoBehavior:hover .imgDescription {
    opacity: 1;
}

footer {
    background-color: #1A1A1A;
    color: #F2F4F3;
    font-family: 'InterRegular', sans-serif;
    font-size: 10px;
    padding: 2px 2px;
}

.footer-icons {
    display: flex;
    flex-direction: row;
    
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px;
}

.footer-text {

}

.socialIcon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.socialIcon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.socialIcon:hover {
    color: #00FFB2;
    fill : #00FFB2;
    border-radius: 10px;
    background-color: #00FFB2;
    cursor: pointer;
}

.socialIcon a {
    display: inline-block;
    width: auto;
    height: auto;
    color: inherit;
    text-decoration: none;
}

.arrow-down {
    display: inline-block;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #F2F4F3;
}

.arrow-up {
    display: inline-block;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #F2F4F3;
}

body::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar-track {
  background: #00FFB2;
}

body::-webkit-scrollbar-thumb {
  background-color: #1A1A1A;
  border-radius: 1px;
}

.galleryContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.galleryGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the grid within the container */
    max-width: 80vw;
    gap: 10px; /* This ensures spacing scales with the grid */
}


