/* Hero Section */

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-lg);
    padding-bottom: 0;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: var(--radius-full); 
    padding: 5px;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        height: 100%;
        width: 100%;
        display: block;
        object-fit: cover;
    }

    &:hover {
        border-color: #ced6fb;
    }
}

.hero-image .quote{
    width: 100%;
    height: 30%;
    text-align: center;
}

.hero-image .quote h2{
    display: inline;
    font-style: italic;
    color: var(--font-color);
    text-align: center;
}

#cursor {
    color: var(--font-color);
    font-size: 2rem;
    display: inline;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-title {
    margin-bottom: var(--space-md);
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.hero-subtitle h2 {
    font-size: var(--font-size-2xl);
    color: var(--font-color);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.action-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;

    a, button {
        white-space: nowrap;
    }
}



/* SKILLS STYLES */

.skills_article{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0;
    /* background-color: var(--secondary-bg); */
    padding: 10px;
}

.skills_article .icon_div{
    width: 45%;
    height: 100px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: var(--dark-bg);
    box-shadow: var(--box-shadow);
    color: var(--white-color);
    transition: .4s ease;
}

.skills_article .icon_div span{
    font-weight: 700;
    font-size: var(--font-size-lg);
    text-transform: uppercase;
}

/* .skills_article .icon_div i{
    font-size: 1.2rem;
    color: var(--font-color);
} */

.skills_article .icon_div:hover{
    transform: scale(1.1);
}




/* CONTACT STYLES */

form{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

form input{
    width: 100%;
    font-size: 1rem;
    padding: 10px;
    outline: none;
    height: 70px;
    border: 3px solid var(--border-color);
    background-color: transparent;
    color: var(--font-color);
}

form input[name="to_name"]{
    text-transform: capitalize;
}

form textarea{
    font-size: 1rem;
    padding: 10px 15px;
    outline: none;
    border: 3px solid var(--border-color);
    max-height: 200px;
    min-height: 200px;
    max-width: 100%;
    min-width: 100%;
    background-color: transparent;
    font-family: inherit;
    color: var(--font-color);
}

form .status{
    width: 80%;
    background-color: var(--font-color);
    position: absolute;
    top: 50px;
    left: 50%;
    box-shadow: var(--box-shadow-hover);
    transform: translateX(-50%);
    border-radius: 10px;
    padding: 10px;
    /* color: red; */
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    font-style: italic;
    transition: opacity .5s ease;
    display: none;
}

form button.btn{
    width: 100%;
    margin: 0;
    border-radius: unset;
    text-transform: capitalize;
    color: var(--font-color);
    font-weight: 900;
    line-height: 20px;
}



@media (max-width: 900px) {
    .profile-image {
        height: 400px;
        width: 350px;
    }
}
@media (max-width: 500px) {
    .profile-image {
        height: 300px;
        width: 280px;
    }
}