/* ==========================
   GOOGLE FONTS & VARIABLES
========================== */

:root{
    --pink:#ffd6e7;
    --blue:#cfefff;
    --mint:#d8ffe6;
    --cream:#fff9ef;
    --purple:#efe2ff;
    --text:#525252;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:linear-gradient(
    135deg,
    var(--cream),
    var(--blue),
    var(--pink));

    overflow-x:hidden;
    color:var(--text);

}

/* ==========================
        NAVBAR
========================== */

.glass-nav{

    background:rgba(255,255,255,.45);

    backdrop-filter:blur(15px);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.navbar-brand{

    font-family:'Fredoka',cursive;

    font-size:28px;

}

.nav-link{

    color:#666;

    margin-left:18px;

    transition:.4s;

}

.nav-link:hover{

    color:#ff6fa8;

}

/* ==========================
        HERO
========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

}

.hero h1{

    font-size:65px;

    font-family:'Fredoka';

    color:#6db9ff;

}

.name{

    color:#ff73b4;

}

.pastel-text{

    color:#74bca7;

}

.hero p{

    line-height:1.8;

    max-width:550px;

}

.hero-img{

    width:420px;

    animation:float 4s ease-in-out infinite;

}

/* ==========================
      BUTTON
========================== */

.cute-btn{

    border:none;

    padding:15px 35px;

    border-radius:40px;

    background:linear-gradient(
    45deg,
    #ffcde3,
    #bde8ff);

    color:#444;

    font-weight:600;

    transition:.4s;

    box-shadow:0 15px 35px rgba(255,180,220,.4);

}

.cute-btn:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 40px rgba(0,0,0,.1);

}

/* ==========================
      SECTION
========================== */

.section-space{

    padding:110px 0;

}

.section-title{

    text-align:center;

    font-family:'Fredoka';

    font-size:45px;

    margin-bottom:60px;

}

/* ==========================
      GLASS CARD
========================== */

.glass-card{

    background:rgba(255,255,255,.5);

    backdrop-filter:blur(18px);

    border-radius:25px;

    padding:45px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

/* ==========================
      SKILLS
========================== */

.skill-card{

    background:white;

    padding:25px;

    border-radius:25px;

    text-align:center;

    font-weight:bold;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.skill-card:hover{

    transform:translateY(-10px);

    background:#ffe9f4;

}

/* ==========================
      PROJECTS
========================== */

.project-card{

    background:white;

    border-radius:30px;

    padding:35px;

    transition:.4s;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.project-card:hover{

    transform:scale(1.04);

    background:#fef5ff;

}

/* ==========================
        FOOTER
========================== */

footer{

    padding:35px;

    text-align:center;

    background:#ffffff90;

    backdrop-filter:blur(15px);

}

/* ==========================
      FLOATING BLOBS
========================== */

.blob{

    position:fixed;

    border-radius:50%;

    filter:blur(35px);

    opacity:.45;

    z-index:-1;

    animation:blobMove 15s infinite alternate;

}

.blob1{

    width:260px;

    height:260px;

    background:#ffd9eb;

    top:100px;

    left:-70px;

}

.blob2{

    width:300px;

    height:300px;

    background:#d8f6ff;

    right:-90px;

    top:240px;

}

.blob3{

    width:250px;

    height:250px;

    background:#dcffe4;

    bottom:-70px;

    left:40%;

}

/* ==========================
        ANIMATIONS
========================== */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-25px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes blobMove{

    from{

        transform:translateY(0)
        rotate(0deg);

    }

    to{

        transform:translateY(70px)
        rotate(180deg);

    }

}

/* ==========================
      RESPONSIVE
========================== */

@media(max-width:992px){

.hero{

text-align:center;

padding-top:120px;

}

.hero h1{

font-size:48px;

}

.hero-img{

width:300px;

margin-top:40px;

}

.section-title{

font-size:35px;

}

}

@media(max-width:576px){

.hero h1{

font-size:38px;

}

.cute-btn{

padding:12px 25px;

}

}




/* Cursor Glow */

.cursorGlow{

position:absolute;

width:30px;

height:30px;

border-radius:50%;

background:#ffd2eb;

pointer-events:none;

transform:translate(-50%,-50%);

filter:blur(12px);

z-index:9999;

}


/* Floating Stars */

.star{

position:fixed;

top:-30px;

font-size:18px;

animation:starFall linear forwards;

pointer-events:none;

z-index:999;

}

@keyframes starFall{

to{

transform:translateY(110vh) rotate(360deg);

}

}


/* Hearts */

.heart{

position:absolute;

font-size:25px;

animation:heartUp 2s linear forwards;

pointer-events:none;

z-index:999;

}

@keyframes heartUp{

0%{

opacity:1;

transform:translateY(0);

}

100%{

opacity:0;

transform:translateY(-120px) scale(1.8);

}

}


/* Emoji Rain */

.emoji{

position:fixed;

top:-30px;

animation:emojiFall linear forwards;

pointer-events:none;

}

@keyframes emojiFall{

to{

transform:translateY(110vh) rotate(720deg);

}

}