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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', tahoma;
    background-color: #fef;
    color: #001f;
    line-height: 1.4;
}


.hero {
    min-height: 100vh;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #fef, #ecd);
    animation: fadeIn 1s ease;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero__subtitle {
    font-size: 1.6rem;
    color: #001a;
    margin-bottom: 2rem;
}

.hero__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.hero__link {
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    border: 4px solid #66f;
    color: #66f;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero__link:hover {
    background-color: #66f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}


section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.me__title {
    color: #001f;
}

.me__text {
    color: #345f;
    max-width: 700px;
    font-size: 1.05rem;
}


.skills {
    background-color: #fef9;
    border-radius: 16px;
    box-shadow: 0 10px 10px #0006;
    margin-bottom: 2rem;
}

.skills__title{
    color: #001f;
}

.skills__list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
    list-style: none;
    margin-top: 1rem;
}

.skills__item {
    background-color: #fff;
    color: #114;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skills__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 10px #124;
}


.exp__list {
    list-style: none;
    margin: 1rem 0;
}

.exp__item {
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.exp_text {
    margin-top: 1rem;
    font-style:inherit
}

.projects{
    background-color: #fef9;
    border-radius: 16px;
    box-shadow: 0px 0px 10px 10px #0006;
    margin-bottom: 2rem;
}

.projects__title {
    text-align: center;
    border-bottom: 1px solid #114;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.project-card{
    padding:2rem ;
}

.project-card__image{
    width: 100%;
    border-radius: 14px;
}

.project-card__title {
    text-align: center;
    margin-top: 2rem;
    font-size: 2rem;
}

.project-card__description {
    margin-top: 1rem;
    font-style: italic;
    font-size: 18px;
}

.project-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.project-card__link {
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    border: 4px solid #66f;
    color: #66f;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-card__link:hover {
    background-color: #66f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(140deg, #66f, #85f);
    color: #fff;
    border-radius: 20px;
}

.contact__text  {
    margin-bottom: 1.6rem;
    color: #eef;
}


.contact__button {
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    color: #44e;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.3s ease;
}


.contact__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 10px #124;
}

.footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #678;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 480px) {
    section {
        padding: 3rem 1.2rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }
}


