@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Roboto", sans-serif;
    background-color: #0c0c0c;
    color: whitesmoke;
}

a{
    text-decoration: none;
    color: whitesmoke;
    font-weight: 600;
    font-size: 18px;
}

/* HEADER */
header{
    border-bottom: solid 1px #EE6983;
    padding: 10px 0;
    position: relative;
}

.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 30px;
    height: 60px;
}

.logo .logo-badge{
    background-color: #EE6983;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 20px;
    color: #850e35;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links{
    display: flex;
    gap: 20px;
}

.nav-links a{
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.nav-links a:hover{
    border-bottom-color: #850E35;
}

/* MOBILE MENU */
#menu-toggle{
    display: none;
}

.menu-icon{
    font-size: 24px;
    color: #EE6983;
    cursor: pointer;
    display: none;
}

.menu-open{
    display: inline-block;
}

.menu-close{
    display: none;
}

#menu-toggle:checked + .menu-icon .menu-open{
    display: none;
}

#menu-toggle:checked + .menu-icon .menu-close{
    display: inline-block;
}

.mobile-menu{
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgb(24, 23, 23);
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    z-index: 999;
}

.mobile-menu a{
    padding: 20px;
    border-bottom: 1px solid #333;
}

.mobile-menu a:hover{
    color: #850E35;
}

#menu-toggle:checked ~ .mobile-menu{
    max-height: 500px;
    padding: 15px;
}

/* HERO */
.hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1024px;
    margin: 20px auto;
    padding: 20px;
    padding-top: 30px;
    gap: 40px;
}

.hero-left,
.hero-right{
    flex: 1;
}

.hero-pill{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #850e365d;
    padding: 8px 12px;
    border-radius: 20px;
}

.hero-pill span{
    color: #EE6983;
}

.hero-title{
    margin-top: 10px;
    font-size: 28px;
}

.hero-title span{
    color: #EE6983;
}

.hero-left h4{
    margin-top: 10px;
    color: #d3d3d3;
    font-size: 20px;
}

.hero-action{
    margin-top: 18px;
}

.hero-action button{
    background: transparent;
    border: 2px solid #850E35;
    border-radius: 20px;
    padding: 8px 16px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-action button a{
    font-size: 16px;
    color: #EE6983;
    font-weight: 500;
}

.hero-action button:hover{
    background-color: #850E35;
}

.hero-meta{
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-meta strong{
    display: block;
    color: #EE6983;
    font-size: 22px;
}

.hero-meta span{
    color: #d3d3d3;
    font-size: 14px;
}

/* HERO IMAGE */
.hero-right{
    display: flex;
    justify-content: center;
}

.hero-image-placeholder{
    width: 300px;
    height: 300px;
    background-color: #EE6983;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* SCROLLING SKILLS */
.horizontal-scroll{
    background-color: #850e365d;
    padding: 15px 0;
    border-bottom: 4px solid #EE6983;
    border-top: 4px solid #EE6983;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 40px 0;
}

.scroll-content{
    display: inline-block;
    min-width: 200%;
    animation: scroll-left 15s linear infinite;
}

.scroll-content span{
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #EE6983;
    margin: 0 30px;
}

@keyframes scroll-left{
    0%{transform: translateX(0);}
    100%{transform: translateX(-40%);}
}

/* SERVICES SECTION */
.services{
    max-width: 1024px;
    width: 100%;
    margin: 30px auto;
    padding: 20px;
}

.service-header{
    text-align: center;
    margin-bottom: 35px;
}

.service-header h5{
    color: #EE6983;
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-header h3{
    font-size: 32px;
    margin-bottom: 12px;
    color: whitesmoke;
}

.service-header p{
    max-width: 650px;
    margin: 0 auto;
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 15px;
}

.service-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card{
    background: linear-gradient(145deg, #141414, #1d1d1d);
    border: 1px solid rgba(238, 105, 131, 0.15);
    border-radius: 22px;
    padding: 30px 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.service-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(238, 105, 131, 0.08), transparent);
    transition: 0.6s;
}

.service-card:hover::before{
    left: 100%;
}

.service-card:hover{
    transform: translateY(-8px);
    border-color: #EE6983;
    box-shadow: 0 18px 35px rgba(133, 14, 53, 0.28);
}

.service-card .icon{
    width: 70px;
    height: 70px;
    background: rgba(238, 105, 131, 0.12);
    border: 1px solid rgba(238, 105, 131, 0.22);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.service-card:hover .icon{
    transform: scale(1.06);
    background: rgba(238, 105, 131, 0.18);
}

.service-card h4{
    font-size: 22px;
    margin-bottom: 14px;
    color: whitesmoke;
}

.service-card p{
    font-size: 15px;
    line-height: 1.8;
    color: #d3d3d3;
}

/* ABOUT SECTION */
.about{
    max-width: 1024px;
    margin: 80px auto;
    padding: 20px;
}

.about-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-left{
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image{
    width: 320px;
    height: 320px;
    background-color: #EE6983;
    padding: 10px;
    border-radius: 30px;
    overflow: hidden;
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-right{
    flex: 1;
}

.about-right h5{
    color: #EE6983;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-right h3{
    font-size: 34px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.about-right p{
    color: #d3d3d3;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-info{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.about-info div{
    background-color: #850e3625;
    border: 1px solid rgba(238, 105, 131, 0.15);
    padding: 14px 18px;
    border-radius: 14px;
    color: whitesmoke;
}

.about-info strong{
    color: #EE6983;
}

/* TECHNOLOGIES SECTION */
.technologies{
    max-width: 1024px;
    margin: 80px auto;
    padding: 20px;
}

.tech-header{
    text-align: center;
    margin-bottom: 40px;
}

.tech-header h5{
    color: #EE6983;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tech-header h3{
    font-size: 34px;
    margin-bottom: 12px;
}

.tech-header p{
    color: #cfcfcf;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.tech-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card{
    background: linear-gradient(145deg, #141414, #1d1d1d);
    border: 1px solid rgba(238, 105, 131, 0.15);
    border-radius: 22px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.tech-card:hover{
    transform: translateY(-8px);
    border-color: #EE6983;
    box-shadow: 0 18px 35px rgba(133, 14, 53, 0.28);
}

.tech-card i{
    font-size: 42px;
    color: #EE6983;
    margin-bottom: 16px;
}

.tech-card h4{
    font-size: 20px;
    color: whitesmoke;
}

/* PORTFOLIO SECTION */
.portfolio{
    max-width: 1024px;
    margin: 80px auto;
    padding: 20px;
}

.portfolio-header{
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-header h5{
    color: #EE6983;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-header h3{
    font-size: 34px;
    margin-bottom: 12px;
}

.portfolio-header p{
    color: #cfcfcf;
    font-size: 15px;
}

.portfolio-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card{
    background: linear-gradient(145deg, #141414, #1d1d1d);
    border: 1px solid rgba(238, 105, 131, 0.15);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.portfolio-card:hover{
    transform: translateY(-8px);
    border-color: #EE6983;
    box-shadow: 0 18px 35px rgba(133, 14, 53, 0.28);
}

.portfolio-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.portfolio-content{
    padding: 22px;
}

.portfolio-content h4{
    margin-bottom: 12px;
    font-size: 22px;
}

.portfolio-content p{
    color: #d3d3d3;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.portfolio-content a{
    color: #EE6983;
    font-size: 15px;
    font-weight: 600;
}

/* CONTACT SECTION */
.contact{
    max-width: 1024px;
    margin: 80px auto;
    padding: 20px;
}

.contact-header{
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h5{
    color: #EE6983;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-header h3{
    font-size: 34px;
    margin-bottom: 12px;
}

.contact-header p{
    color: #cfcfcf;
    font-size: 15px;
}

.contact-container{
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.contact-info{
    flex: 1;
    background: linear-gradient(145deg, #141414, #1d1d1d);
    border: 1px solid rgba(238, 105, 131, 0.15);
    border-radius: 22px;
    padding: 30px;
}

.contact-info h4{
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p{
    color: #d3d3d3;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item span{
    width: 45px;
    height: 45px;
    background-color: #850e3625;
    border: 1px solid rgba(238, 105, 131, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #EE6983;
    font-size: 18px;
}

.contact-form{
    flex: 1;
    background: linear-gradient(145deg, #141414, #1d1d1d);
    border: 1px solid rgba(238, 105, 131, 0.15);
    border-radius: 22px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    background-color: #0c0c0c;
    border: 1px solid rgba(238, 105, 131, 0.15);
    border-radius: 14px;
    padding: 14px 16px;
    color: whitesmoke;
    font-size: 15px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #EE6983;
}

.contact-form button{
    background-color: transparent;
    border: 2px solid #850E35;
    border-radius: 20px;
    padding: 12px 20px;
    color: #EE6983;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover{
    background-color: #850E35;
    color: whitesmoke;
}

/* FOOTER */
.footer{
    background-color: #141414;
    border-top: 3px solid #EE6983;
    padding: 25px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer p{
    color: #cfcfcf;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer .social-icons{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer .social-icons a{
    color: #EE6983;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover{
    color: #850E35;
    transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 768px){
    .nav-links{
        display: none;
    }

    .menu-icon{
        display: block;
    }

    .hero{
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-right{
        order: -1;
        margin-top: 20px;
        margin-left: 0;
    }

    .hero-left{
        order: 1;
    }

    .hero-action button{
        margin-bottom: 10px;
        width: 100%;
        padding: 10px;
    }

    .hero-image-placeholder{
        width: 250px;
        height: 250px;
    }

    .hero-meta{
        flex-direction: column;
        align-items: center;
    }

    /* ABOUT */
    .about-container{
        flex-direction: column;
        text-align: center;
    }

    .about-image{
        width: 260px;
        height: 260px;
    }

    .about-info{
        grid-template-columns: 1fr;
    }

    /* SERVICES */
    .service-container{
        grid-template-columns: 1fr;
    }

    /* TECHNOLOGIES */
    .tech-container{
        grid-template-columns: repeat(2, 1fr);
    }

    /* PORTFOLIO */
    .portfolio-container{
        grid-template-columns: 1fr;
    }

    /* CONTACT */
    .contact-container{
        flex-direction: column;
    }
}

@media (max-width: 480px){
    .header-container{
        padding: 0 20px;
    }

    .hero-title{
        font-size: 24px;
    }

    .service-header h3,
    .about-right h3,
    .tech-header h3,
    .portfolio-header h3,
    .contact-header h3{
        font-size: 28px;
    }

    .tech-container{
        grid-template-columns: 1fr;
    }
    }
