@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding: 20px;
    overflow-x: hidden;

    background: linear-gradient(-45deg, #e60e88, #c084b4, #9c1c5c, #9e3b4f);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
}


@keyframes gradientBG {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

body::before,
body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    opacity: 0.25;
    z-index: 0;
}

body::before {
    width: 280px;
    height: 280px;
    background: #ff8ec7;
    top: 0;
    left: 0;
}

body::after {
    width: 220px;
    height: 220px;
    background: #9b8cff;
    bottom: -60px;
    right: -60px;
}


header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}


nav a {
    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #d67fa8;
}


.hero {
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 40%;
    object-fit: cover;
    border: 6px solid rgb(231, 152, 152);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
    transition: transform 0.4s;
}

.profile-img:hover 
    transform: scale(1.08) rotate(3deg);
}


.hobbies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.hobbies span {
    background: #ffe6f2;
    padding: 12px 18px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

    nav a {
        margin: 8px;
    }
}