/*landing page*/
.landing{
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 230px;
    padding-bottom: 120px;

    background: radial-gradient(55% 55% at 33% 50%, #a4b5e3ca 0%, #f5f5f5 100%);
}

.landing-content{
    position: relative;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    padding-left:15%;
    padding-right: 15%;
}

.landing-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.intro-description{
    text-align: left;
    max-width: 500px;
    margin-top: 10px;
    line-height: 1.1;
}

.name-link{
    color:black;
    text-decoration-thickness:2px;
    transition: 0.5s;
    margin-left: 2px;
    padding: 0 5px;
    border-radius: 5px;
}
.name-link:hover{
    cursor:pointer;
    background-color: #94a6e8b9;
    letter-spacing: 2px;
}

.view-works{
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 50px;
    left: 47.5%;
    transition: 0.7s ease;
    color: black;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    gap: 10px;
}

.view-works:hover{
    cursor:pointer;
    opacity: 1;
}

.view-works-icon{
    width: 180px;
    height: auto;
    display: block;
}

.landing-star{
    width: 258px;
    height: 571px;
    position: absolute;
    right: 30px;
    top: -30px;
    opacity: 15%;
}

.landing-star2{
    width: 100px;
    height: 200px;
    position: absolute;

    left: 20px;
    top: 900px;
    opacity: 8%;
}

.landing-star3{
    width: 100px;
    height: 200px;
    position: absolute;

    right: 30px;
    top: 1500px;
    opacity: 8%;
}


/*all projects*/
.featured-works{
    padding: 0px 5%;
    display: flex;
    
}

.all-projects{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    justify-content: center;
    
    padding: 0px 15%;
    padding-bottom: 50px;
}

.project-box{
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid hsla(0, 0%, 20%, 0.3);
    padding-bottom: 10px;
    height: 100%;
    scale: 1;
    transition: 0.5s;
    background-color: #f1f1f1;
}

.project-box:hover{
    transform: scale(1.02);
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.custom-cursor img {
    width: 22px;
    height: 22px;
    user-select: none;
    pointer-events: none;
}


.wireframe-container{
    align-items: center;
    justify-content: center;
    object-fit: cover;
    display: block;
    padding: 10% 15%;
}

.wireframe-img{
    width: 100%;
    height: auto;
}

.project-text{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.title{
    display: flex;
    gap: 15px;
    align-items: center;
}

.tabs{
    display: flex;
    gap: 20px;
    padding: 5px 30px;
}

.tab{
    border-radius: 20px;
    border: 1px solid hsla(0, 0%, 15%, 0.3);
    background-color: #dedede;
    
    color: #333;
    padding: 3px 10px;
    font-size: 14px;
}

.bottom{
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    gap: 5px;
}

.icon{
    aspect-ratio: 1/1;
    width: 30px;
}

