@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Quicksand:wght@400;600;700&display=swap');

:root {
    --pastel-pink: #FFB6D9;
    --baby-blue: #AEE8FF;
    --soft-lavender: #D8C8FF;
    --cream-white: #FFF8F0;
    --peach-soft: #FFD9C0;
    --text-main: #5A5A5A;
    --text-muted: #8A8A8A;
    --shadow-soft: 0 10px 30px rgba(255, 182, 217, 0.3);
    --radius-fat: 30px;
    --radius-bubble: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--cream-white);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- CLOUD BLOBS --- */
.cloud-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    background: linear-gradient(135deg, var(--pastel-pink), var(--soft-lavender));
    filter: blur(40px);
    opacity: 0.6;
    border-radius: 50%;
    animation: floatBlob 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: var(--baby-blue);
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -150px;
    background: var(--pastel-pink);
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 60%;
    background: var(--soft-lavender);
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--text-main);
}

h1 {
    font-size: 3.5rem;
    color: var(--pastel-pink);
    text-shadow: 2px 2px 0px #fff, 4px 4px 0px rgba(0, 0, 0, 0.05);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--baby-blue);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 6px;
    background: var(--pastel-pink);
    border-radius: 10px;
    margin: 10px auto 0;
}

/* --- LAYOUT --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* --- NAVBAR --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 0 0 var(--radius-fat) var(--radius-fat);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    width: 90%;
    left: 5%;
    z-index: 100;
    margin-top: 10px;
}

.logo {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--pastel-pink);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    padding: 8px 15px;
    border-radius: var(--radius-bubble);
}

.nav-links a:hover {
    background: var(--baby-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* --- HERO --- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.6);
    padding: 50px;
    border-radius: var(--radius-fat);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.hero-text {
    flex: 1;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hero-text .role {
    font-size: 1.5rem;
    color: var(--baby-blue);
    font-weight: 800;
    margin-bottom: 30px;
    background: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: var(--radius-bubble);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.profile-frame {
    width: 280px;
    height: 280px;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(255, 182, 217, 0.4);
    position: relative;
    z-index: 2;
    animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--baby-blue);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--pastel-pink);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: var(--radius-bubble);
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(255, 182, 217, 0.5);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05) rotate(-2deg);
    background: var(--baby-blue);
    box-shadow: 0 12px 25px rgba(174, 232, 255, 0.5);
}

/* --- CARDS --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.kawaii-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-fat);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    border: 2px solid transparent;
}

.kawaii-card:hover {
    transform: translateY(-8px);
    border-color: var(--pastel-pink);
    box-shadow: 0 20px 40px rgba(255, 182, 217, 0.2);
}

.card-header {
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.card-header span {
    font-size: 0.9rem;
    color: var(--baby-blue);
    font-weight: 700;
    background: var(--cream-white);
    padding: 4px 12px;
    border-radius: 20px;
}

.desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- SKILLS --- */
#skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.kawaii-tag {
    background: #fff;
    padding: 10px 25px;
    border-radius: var(--radius-bubble);
    color: var(--text-main);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 2px solid var(--cream-white);
}

.kawaii-tag:hover {
    background: var(--pastel-pink);
    color: #fff;
    transform: scale(1.1) rotate(3deg);
    border-color: var(--pastel-pink);
}

/* --- CONTACT --- */
.contact-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: var(--radius-fat);
    box-shadow: var(--shadow-soft);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--cream-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--baby-blue);
    color: #fff;
    transform: rotate(15deg) scale(1.1);
}

/* --- MOBILE --- */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-btn span {
    width: 30px;
    height: 4px;
    background: var(--pastel-pink);
    border-radius: 4px;
}

@media (max-width: 768px) {
    nav {
        width: 100%;
        left: 0;
        margin-top: 0;
        border-radius: 0;
        padding: 15px 20px;
    }

    .hero-content {
        flex-direction: column-reverse;
        padding: 30px;
        text-align: center;
    }

    .profile-frame {
        width: 200px;
        height: 200px;
    }

    .menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }
}