*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Poppins', sans-serif;
    background: #2b2026;
    color: #f7dfe7;
}

/* NAVBAR */
nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(58,43,51,0.75);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo{
    font-size: 28px;
    font-weight: 700;
    color: #f4bfd0;
}
nav ul{
    display: flex;
    list-style: none;
    gap: 30px;
}
nav ul li a{
    text-decoration: none;
    color: #f7dfe7;
    font-weight: 500;
    transition: 0.3s ease;
}
nav ul li a:hover{
    color: #d68aa3;;
}

/* HERO */
.hero{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 10%;
}
.hero-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}
.hello-text{
    display: inline-block;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d68aa3;
    margin-bottom: 20px;
}
.hero-text h1{
    font-size: 70px;
    line-height: 1;
    margin-bottom: 20px;
    color: #f7e4eb;
}
.hero-text h1 span{
    font-size: 88px;
    text-shadow: 0 0 20px rgba(244,167,188,0.35);
}
.hero-text h3{
    font-size: 26px;
    color: #d68aa3;
    margin-bottom: 20px;
}
.hero-text p{
    font-size: 18px;
    line-height: 1.8;
    color: #c7a8b4;
    margin-bottom: 30px;
    max-width: 500px;
}
.hero-image{
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-image img{
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 35px;
    border: 6px solid #d68aa3;
    box-shadow:0 0 40px rgba(214,138,163,0.25);
}
.hero-btn{
    display: inline-block;
    padding: 14px 35px;
    border-radius: 18px;
    background: linear-gradient(to right, #fc4b94, #f7b7d3);
    color: #1a0d16;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}
.hero-btn:hover{
    transform: translateY(-4px);
}

/* BUTTON */
button{
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(
    135deg,
    #c11c98,
    #e26790,
    #f4bfd0
    );
    color: #2b2026;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}
button:hover{
    transform: scale(1.05);
}

/* SECTIONS */
section{
    padding: 100px 10%;
}
section h2{
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

/* ABOUT */
.about{
    min-height: 100vh;
    padding: 100px 10%;
    background: #1a1218;
    text-align: center;
}
.about-title{
    font-size: 4rem;
    color: #f5c2d3;
    margin-bottom: 15px;
}
.about-subtitle{
    font-size: 1.1rem;
    color: #d2bcc5;
    margin-bottom: 70px;
    line-height: 1.8;
}
.about-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}
.about-card{
    min-height: 330px;
    width: 330px;
    padding: 35px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    text-align: left;
    transition: 0.35s ease;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);
}
.about-card:hover{
    transform: translateY(-10px);
    border-color: #f4a7bc;
    box-shadow:
        0 0 30px rgba(244,167,188,0.18);
}
.about-card h3{
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #f8d6e1;
}
.about-card ul{
    list-style: none;
}
.about-card ul li{
    margin-bottom: 16px;
    color: #d8c7ce;
    line-height: 1.6;
    position: relative;
    padding-left: 22px;
}
.about-card ul li::before{
    content: "✦";
    position: absolute;
    left: 0;
    color: #f4a7bc;
}

/* SKILLS */
.skills{
    padding: 100px 10%;
    background: #140f14;
    text-align: center;
}
.skills-title{
    font-size: 4rem;
    color: #f5c2d3;
    margin-bottom: 10px;
}
.skills-subtitle{
    color: #d6c1ca;
    font-size: 1.1rem;
    margin-bottom: 50px;
}
.skill-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.skill-card{
    padding: 16px 30px;
    background: #2a1d25;
    border: 1px solid #4d3440;
    border-radius: 18px;
    font-weight: 600;
    color: #f8e8ee;
    transition: 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.skill-card:hover{
    transform: translateY(-6px);
    background: #f3bfd0;
    color: #1a1116;
}

/* PROJECTS */
.projects{
    padding: 100px 10%;
}
.project-title{
    text-align: center;
    font-size: 58px;
    margin-bottom: 15px;
}
.project-subtitle{
    text-align: center;
    color: #c7a8b4;
    margin-bottom: 70px;
    font-size: 18px;
}
.project-container{
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
}
.project-card{
    min-width: 300px;
    max-width: 360px;
    background: #241820;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
    flex-shrink: 0;
}
.project-container::-webkit-scrollbar{
    display: none;
}
.project-card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.project-container{
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.project-card:hover{
    transform: translateY(-10px);

    box-shadow:
        0 0 30px rgba(214,138,163,0.18);
}
.project-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.project-content{
    padding: 22px;
}
.project-content h3{
    font-size: 24px;
    margin-bottom: 12px;
    color: #f6dfe7;
}
.project-content p{
    color: #c7a8b4;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 15px;
}
.project-tech{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.project-tech span{
    padding: 7px 14px;
    border-radius: 30px;
    background:
        rgba(214,138,163,0.12);
    color: #f6b6c8;
    font-size: 13px;
}
.project-links{
    display: flex;
    gap: 15px;
}
.project-links a{
    text-decoration: none;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #ff7eb3,
            #ff758c
        );
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}
.project-links a:hover{
    transform: scale(1.05);
}
.project-scroll-buttons{
    display: flex;
    justify-content: flex-end;
    gap: 15px;

    margin-bottom: 30px;
}
.project-scroll-buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #2b1d25;
    color: #f6b6c8;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}
.project-scroll-buttons button:hover{
    background: #ff7eb3;
    color: white;
    transform: scale(1.08);
}
/* CONTACT */
.contact{
    min-height: 100vh;
    padding: 100px 10%;
    background: #140b11;
    color: white;
}
.contact-title{
    text-align: center;
    font-size: 4rem;
    margin-bottom: 60px;
    color: #f4a7bc;
}
.contact-container{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}
.contact-info{
    flex: 1;
    min-width: 250px;
}
.contact-info p{
    font-size: 20px;
    margin-bottom: 30px;
    color: #f8d9e2;
}
.contact-info h3{
    margin-top: 20px;
    color: #ffb3c7;
}
.contact-info span{
    color: #e2c8d0;
}
.contact-form{
    flex: 1;
    min-width: 320px;
}
.input-row{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    border: 2px solid #b87a90;
    background: rgba(255,255,255,0.05);

    color: white;
    outline: none;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}
.contact-form textarea{
    height: 180px;
    resize: none;
    margin-bottom: 20px;
}
.contact-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(245,178,200,0.25);
}
.contact-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
    border-radius: 40px;
    background: #f5b2c8;
    color: #3d1f29;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.social-icons a{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2a1d25;
    color: #f7bfd0;
    text-decoration: none;
    font-size: 1.4rem;
    transition: 0.3s ease;
    border: 1px solid #4d3440;
}
.social-icons a:hover{
    transform: translateY(-5px);
    background: #f4b7cb;
    color: #1a1116;
    box-shadow: 0 0 20px rgba(244,183,203,0.4);
}
.scroll-top{
    position: absolute;
    right: 60px;
    margin-top: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f4b7cb;
    color: #1a1116;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.scroll-top:hover{
    transform: translateY(-5px);
    background: white;
}
/* FOOTER */
footer{
    padding: 30px;
    text-align: center;
    color: #f6b6c8;
}
.socials{
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.3rem;
}

/* RESPONSIVE */

@media(max-width: 768px){

    /* NAVBAR */
    nav{
        flex-direction: column;
        gap: 15px;
        padding: 18px 6%;
    }

    nav ul{
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo{
        font-size: 34px;
        text-align: center;
    }

    /* HERO */
    .hero{
        padding: 160px 8% 80px;
        text-align: center;
    }

    .hero-content{
        flex-direction: column-reverse;
        gap: 45px;
    }

    .hero-text{
        width: 100%;
    }

    .hello-text{
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-text h1{
        font-size: 54px;
        line-height: 1.05;
        margin-bottom: 18px;
    }

    .hero-text h1 span{
        font-size: 72px;
        display: block;
    }

    .hero-text h3{
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-text p{
        font-size: 16px;
        line-height: 1.8;
        max-width: 100%;
        margin: auto auto 30px;
    }

    .hero-image img{
        width: 220px;
        height: 220px;
        border-radius: 28px;
    }

    /* SECTION HEADINGS */
    section h2{
        font-size: 34px;
        color: #f4bfd0;
    }

    /* SKILLS */
    .skills-title{
        font-size: 2.8rem;
    }

    .skills-subtitle{
        font-size: 1rem;
        line-height: 1.8;
    }

    .skill-container{
        gap: 14px;
    }

    .skill-card{
        padding: 14px 20px;
        font-size: 0.88rem;
    }

    /* PROJECTS */
    .project-container{
        grid-template-columns: 1fr;
    }

    /* ABOUT */
    .about{
        padding: 100px 8%;
    }

    .about-title{
        font-size: 2.9rem;
        line-height: 1.1;
    }

    .about-subtitle{
        font-size: 1rem;
        margin-bottom: 45px;
        line-height: 1.8;
    }

    .about-container{
        flex-direction: column;
        align-items: center;
    }

    .about-card{
        width: 100%;
        max-width: 380px;
        padding: 30px;
    }

    /* CONTACT */
    .contact{
        padding: 100px 8%;
    }

    .contact-title{
        font-size: 2.8rem;
    }

    .contact-container{
        flex-direction: column;
        gap: 50px;
    }

    .input-row{
        flex-direction: column;
    }

    .contact-form{
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea{
        font-size: 15px;
    }

    /* SOCIALS */
    .social-icons{
        justify-content: flex-start;
    }

    /* SCROLL BUTTON */
    .scroll-top{
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    /* FOOTER */
    footer{
        padding: 25px 15px;
        font-size: 14px;
    }
}