/* website.css */


body {

    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color:  #1a1a2e;

    

}


html {
    scroll-behavior: smooth;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in, transform 0.8s ease-in;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.show {
    opacity: 1;
    transform: translateY(0);
}



.top {
    position: fixed;
    width: 50%;
    height: 40px;
    top: 0;
    background: fixed;
    border-radius: 1000px;
    left: 0;
    margin-left: 25%;
    margin-top: 5px;
    background: linear-gradient(90deg, #0f0c29, #09090c, #090918);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    display: flex;
    gap: 20px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.top:hover {
    transform: scale(1.05);
}

.top ul {
    list-style: none;
    gap: 20px;
    display: flex;
    padding: 0;
    margin: 0;
}

.top li {
    display: inline;
    gap: 20px;

}

.top a {

    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    color:  #e0e0e0;
    font-size: 13px;



}



#About {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    background: linear-gradient(to right,#0f0f0f, #1a1a2e);
    height: fit-content;
    color: white;
    width: 100%;
    padding: 20px;
    align-items: center;
    padding: 2rem 0;
    gap: 20px;
    transition: transform 0.3s ease-in-out;

}


#About:hover {
    transform: scale(1.05);
}


.one {
    background-image: url(https://static1.srcdn.com/wordpress/wp-content/uploads/2024/07/sung-jinwoo-solo-leveling-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-left: 0;
    height: 300px;
    width: 40%;
}

.two {
    width: 55%;
    padding: 10px;
}

.two p {
    color: #FFD700;
}


#Skills {
    width: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    padding: 2rem 0;
    padding: 50px;
    color: white;
    background: linear-gradient(to right, #16213e , #0f3460);
    


}

#Skills h2 {
    color: #FFD700;
}

.skills-container h3 {
    color: #FFD700;
}



.skills-container {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;

    
}

.services-item {

    background: #1b1032;
    flex: 1;
    min-height: 200px;
    min-width: 400px;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(255,255, 255, 0.1);
    transition: transform 0.2s ease-in-out;
    
}

.services-item:hover {
    transform: translateY(-5px);
    
}


#proof-of-work { 

    
    background: linear-gradient(to right, #16213e , #0f3460);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 0;




}

#proof-of-work h2 {
    color: #FFD700;
    font-weight: bolder;
    font-size: 25px;
}

.POW-container {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;


}

.POW-Item {

    background: #1b1032;
    width: calc(33.3% - 40px);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    transition: box shadow 0.3s ease-in-out;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}


/* POW Item Animations */

.POW-Item:hover {
    transform: translateY(-5px);
    animation: pulseShadow 1.5s infinite alternate;
    

}@keyframes pulseShadow {
    0% {
        box-shadow: 0 0 5px rgba(138, 43, 226, 0.6);
    }
    50% {
        box-shadow: 0 0 15px rgba(138, 43, 226, 1);
    }
    100% {
        box-shadow: 0 0 5px rgba(138, 43, 226, 0.6);
    }
}




.pow-image img {

    
    height: auto;
    max-height: 150px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;


}

.POW-Item h3 {
    font-size: 18px;
    color: #FFD700;
    margin-top: 10px;

}

.POW-Item h4 {
    font-size: 14px;
    color: #bbb;
    font-weight: 400;

}

.POW-Item p {
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}



#Contact {

    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, #16213e , #0f3460);
    

    
}

.social-item {

    display: flex;
    flex-direction: column;
    border-radius: none;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
  
}

.social-item ul {

    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    list-style: none;
}

#Contact a {
    text-decoration: none;
    color: #cac5e3;


}


#Contact li {

    list-style: none;
    display: inline;
    
    
}



button {

    width: 120px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border-radius: 12px;
    font-size: 16px;
    border: none;
    color: white;
    height: 45px;
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px, 4px , 10px, rgba(0, 0, 0, 0.2);


}

/*Button Animation*/


button:hover {
    animation: pulse 0.5s infinite alternate;
}

@keyframes pulse {
    0% {transform: scale(1);}
    100% {transform: scale(1.05);}
}

button:active {
    transform: scale(0.95);
}



footer {

    text-align: center;
    padding: 15px;
    background: #111;
    color: #ddd;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.1);
}



/* Media Queries for responsiveness */


@media (max-width: 600px) {
    .top {
        width: 80%;
        margin-left: 5%;
        height: auto;
        padding: 10px 0;
    }

    .top ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top li {
        display: block;
    }

    .top a {
        font-size: 12px;
        padding: 8px;
    }

    .one {
        width: 90%;
        height: 250px;
    }

    .two {
        width: 90%;
        
    }

    .skills-container {
        flex-direction: column;
        align-items: center;
    }

    .services-item {
        width: 90%;
        min-width: auto;
    }

    #About {
        flex-direction: column;
        text-align: center;
    }

    .skills-container {
        flex-direction: column;
        align-items: center;
    }

    .services-item {
        width: 90%;
        min-width: auto;
    }

    .POW-container {
        flex-direction: column;
        align-items: center;
    }

    .POW-Item {
        width: 90%;
        max-width: none;
    }

    .social-item ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    button {
        width: 100%;
        max-width: 150px;
        font-size: 14px;
    }

}