
/* Basic */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    --secondary-color: #F1D6AB;
    --primary-color: #E3B04B;
    --light-color: #F8F8F8;
    --dark-color: #2B2B28;
    --dark-text: #191918;
}

body{
    font-family: 'Jersey 15', sans-serif;
    font-size: 20px;
    color: #191918;
    line-height: 1.5;
    background: #fff;
}

a{
    text-decoration: none;
    color: var(--light-color);
}

ul{
    list-style: none;
}

img{
    max-width: 100%;
}



/* navigation bar */
.bar {
    padding: 20px 20px;
}

.bar .container_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar .icon{
    max-width: 5%;
}


.bar .menu ul {
    display: flex;  
}




.bar .menu ul li a {
    transition: 0.2s;
    font-weight: 600;
    padding: 20px 40px;
    color: var(--light-color);
    border-left: 1.5px solid var(--secondary-color);
}

.bar ul li a:hover {
    color: var(--primary-color);
}




/* Hero */
.hero{
    padding: 100px;
}

.hero .hero-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.hero .picture {
    max-width: 100%;
}

.hero .context{
    color: var(--light-color);
    font-size: 4rem;
    font-weight: 600;
    margin: 40px 20px;
    text-align: left;
}
.hero .context p{
    font-size: 30px;
}

.hero .context p:last-child{
    opacity: 0.7;
}

.hero .context h4:nth-child(2) {
    color: var(--primary-color);
}


/* about */

.about{
    padding: 40px;
}

.about .bio-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    font-size: 1.5rem;
    text-align: center;
}

.about .section-1 img{
    max-width:60%;
    margin-bottom: 30px;
}

.about .section-1 h2{
    margin-bottom: 10px;
}

.about .section-1 p{
    margin-bottom: 3px;

}

.about .section-2 p{
    margin-bottom: 3px;

}

.about .section-2 .about-context h2{
    margin-bottom: 10px;
}

.about .about-context{
    text-align: left;
    margin-bottom: 50px;
}

.about .algien{
    margin: 40px;
}

.about .about-card{
    font-size: 1.4rem;
    background: var(--light-color);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--dark-text);
    font-size: 1.4rem;


}

.about .about-card ul{
    padding-top: 20px;
}

.about .about-card li{
    padding: 5px 0;
}



/* coding skillz */

.coding{
    padding: 70px 0px;
}

.coding .skill-context{
    color: var(--light-color);
    margin-bottom: 40px;
    text-align: left;
    font-size: 2rem;
}

.coding .skill-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.coding .skill-card{
    font-size: 1.5rem;
    padding: 40px;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--dark-text);
}

.coding .skill-card:hover{
    transition-duration: 0.2s;
    opacity: 0.8 ;
}

.coding .skill-card img:hover{
    transform: scale(1.1);
    filter: invert(1);    
} 

.coding .skill-card a{
    text-decoration: underline;
}   

.coding .skill-card h3{
    padding-bottom: 15px;
}


.coding .skill-card img{
    padding-bottom: 20px;
    max-width: 20%;
    transition: all 0.3s ease;
}



/* art skills */
.art{
    padding: 70px 0px;
}

.art .skill-context{
    color: var(--light-color);
    margin-bottom: 40px;
    text-align: left;
    font-size: 2rem;
}

.art .skill-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.art .skill-card{
    font-size: 1.5rem;
    padding: 40px;
    border-radius: 10px;
    background: var(--primary-color);
    color: var( --dark-text);
}

.art .skill-card:hover{
    transition-duration: 0.2s;
    opacity: 0.8 ;
}

.art .skill-card img{
    transition: all 0.3s ease;
} 

.art .skill-card img:hover{
    transform: scale(1.06);
} 

.art .skill-card h3{
    padding-bottom: 15px;
}

.art .gif-fish{
    flex-direction: column;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.art .gif-fish p{
    padding-top: 20px;
    text-align: center;
    color: var(--light-color);
    opacity: 0.3;

}
.art .gif-fish img{
    max-width: 20%;
    border-radius: 10%;
}

/* .art .gif-fish img:hover{
    position: relative;
    animation-name: heh;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    } */

.animate {
    animation: heh 1s infinite;
}

@keyframes heh {
    0% {transform: rotate(10deg);}
    50% {transform: rotate(-10deg);}
    100% {transform: rotate(10deg);}}


/* end bar */


.end-bar .container-end{
    background: var(--dark-text);
    display: grid;
    grid-template-columns: 1000px 1fr;

}

.end-bar .text-box{
    background: #000;
    color: var(--light-color);
    border-style: solid;
    border-color: #ffffff;
    text-align: left;
    padding: 20px;
    padding-bottom: 25px;
    margin: 30px;
    font-size: 2rem;
    
}

.end-bar .text-box img{
    max-width: 15%;
}


.end-bar .choose-box{
    background: #000;
    color: var(--light-color);
    border-style: solid;
    border-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 30px;
    font-size: 2rem;
    cursor: pointer;
}

.end-bar .contact-box a:hover{
    color: var(--primary-color);
    transition-duration: 0.2s;
}


.end-bar .project-box a:hover{
    color: var(--primary-color);
    transition-duration: 0.2s;

}

.other{
    background: #B7B8B5;
    margin: 0px;
}

.other .container-easter{
    margin: 0px;
}

.other .background{
    line-height: 0;
}

.other .background img{
    margin: 0px;
    max-width: 100%;
}

.other .text-easter{
    padding: 300px 100px;
    text-align: center;
    font-size: 2rem;
}



/* Utlity */

.container {
    margin: 0 auto;
    padding: 0 15px;
}

.container-sm {
    margin: 0 auto;
    padding: 0 80px;
}

.bg-dark{
    background: var(--dark-color);
}

.bg-yell{
    background: var(--primary-color);
}

.bg-black{
    background: var(--dark-text);
}

.text-xxl{
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 40px 0 20px;
}

.card{
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    font-size: 1.5rem;
}

.card:hover{
    opacity: 0.8 ;
}

.card img{
    transition: all 0.3s ease;
} 

.card img:hover{
    transform: scale(1.02);
} 


/* Query */

@media (max-width: 670px) {
    
    .bar {
        padding: 5px;
    }

    .bar .icon {
        max-width: 15%;
    }
    
    
    .bar .menu ul li a {
        padding: 5px 15px;
    }
    
    
    
    /* Hero */
    .hero{
        padding: 20px;
    }
    
    .hero .hero-grid{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .hero .picture{
       margin-top: 20px;
        max-width: 70%;
    }
    
    .hero .context{
        color: var(--light-color);
        font-size: 2.5rem;
        margin: 40px 20px;
    }
    .hero .context p{
        font-size: 1.5rem;
    }
    
    
    /* about */
    
    .about{
        padding: 20px;
    }
    
    .about .bio-grid{
        display: flex;
        flex-direction: column;
        gap: 40px;
        font-size: 1.3rem;
        text-align: center;
    }
    
    .about .section-1 img{
        max-width:60%;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    
    .about .section-1 h3{
        font-size: 1.7rem;
    }
    
    .about .section-1 p {
        margin-bottom: 2px;
    }

    .about .section-2 p {
        margin-bottom: 2px;
    }

    .about .section-2 .about-context h2{
        margin-bottom: 15px;
         font-size: 1.8rem;

    }

    .about .about-context{
        text-align: left;
        margin-bottom: 35px;
    }
    
    

.about .algien{
    margin: 5px;
}

.about .section-2 .about-card{
    font-size: 1.1rem;
    background: var(--light-color);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--dark-text);
}


.about .about-card ul{
    padding-top: 20px;
}

.about .about-card li{
    padding: 5px 0;
}

    
    /* coding skillz */
    
    .coding{
        padding: 40px 5px;
    }
    
    .coding .skill-context{
        color: var(--light-color);
        margin-bottom: 40px;
        text-align: left;
        font-size: 2rem;
    }
    
    .coding .skill-grid{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .coding .skill-card{
        font-size: 1rem;
        padding: 15px;
        border-radius: 10px;
        background: var(--primary-color);
        color: var(--dark-text);
    }
    
    .coding .skill-card h3{
        padding-bottom: 15px;
    }
    
    
    .coding .skill-card img{
    padding-bottom: 20px;
        max-width: 20%;
    }
    
    
    
    /* art skills */
    .art{
        padding: 70px 0px;
    }
    
    .art .skill-context{
        color: var(--light-color);
        margin-bottom: 40px;
        text-align: left;
        font-size: 2rem;
    }
    
    .art .skill-grid{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .art .skill-card{
        font-size: 1rem;
        padding: 15px;
        border-radius: 10px;
        background: var(--primary-color);
        color: var( --dark-text);
    }
    

    .card{
        font-size: 1rem;
    }
    .card img{
        max-width: 100%;
    }

    .art .gif-fish img{
        max-width: 50%;
    }

    .art .gif-fish p{
        opacity: 0.2;
    }

    .art .skill-card h3{
        padding-bottom: 15px;
    }
    
    
    
    
    /* end bar */
    
    
    .end-bar .container-end{
        display:flex;
        flex-direction: column;
        gap: 0px;
        padding: 0px;
        }
    
    .end-bar .text-box{
        background: #000;
        color: var(--light-color);
        border-style: solid;
        border-color: #ffffff;
        text-align: left;
        padding: 15px;
        font-size: 1.3rem;
        margin-bottom: 10px;
        
    }
    
    .end-bar .text-box img{
        max-width: 30%;
    }
    
    
    .end-bar .choose-box{
        background: #000;
        color: var(--light-color);
        border-style: solid;
        border-color: #ffffff;
        text-align: center;
        padding: 10px;
        font-size: 1.3rem;
        margin-top: 20px;

    }
    
    
    .end-bar .choose-box .hide {
        display: none;
    }
    .end-bar .choose-box .hide.open {
        cursor: pointer;
        display: block;
    }
    
    .end-bar .choose-box .hide-2 {
        display: none;
    }
    .end-bar .choose-box .hide-2.open {
        cursor: pointer;
        display: block;
    }
    

    
    .other .container-easter{
        margin: 0px;
    }
    
    .other .background{
        line-height: 0;
    }
    
    .other .background img{
        margin: 0px;
        max-width: 100%;
    }
    
    .other .text-easter{
        padding: 230px 20px;
        text-align: center;
        font-size: 1.4rem;
    }
    
    
    
    /* Utlity */
    
    .container {
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .container-sm {
        margin: 0 auto;
        padding: 0 30px;
    }
    
    .bg-dark{
        background: var(--dark-color);
    }
    
    .bg-yell{
        background: var(--primary-color);
    }
    
    .text-xxl{
        font-size: 3rem;
        line-height: 1.2;
        font-weight: 600;
        margin: 40px 0 20px;
    }
    
}