@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
scroll-behavior:smooth;
}

body{

background:
linear-gradient(120deg,#fff,#ffe8f0,#ffffff,#ffdce9,#fff);

background-size:300% 300%;

animation:marble 12s ease infinite;

color:#444;

}

@keyframes marble{

0%{background-position:left;}
50%{background-position:right;}
100%{background-position:left;}

}

nav{

display:flex;
justify-content:space-between;
align-items:center;

padding:30px 8%;

}

nav ul{

display:flex;
gap:30px;
list-style:none;

}

nav a{

text-decoration:none;
color:#444;

}

.hero{

display:flex;
justify-content:space-between;
align-items:center;

padding:80px 8%;

min-height:90vh;

}

.hero-text{

width:50%;

}

.hero-text h1{

font-size:60px;
margin-bottom:15px;

}

.hero-text span{

color:#d86b94;

}

#typing{

font-size:22px;
color:#b36b87;
margin-bottom:25px;

}

.hero-text p{

line-height:1.8;

}

.btn{

display:inline-block;

margin-top:35px;

padding:14px 35px;

background:#d86b94;
color:white;

text-decoration:none;

border-radius:30px;

transition:.3s;

}

.btn:hover{

background:#c45380;

}

.hero-image{

width:45%;
display:flex;
justify-content:center;

}

.hero-image img{

width:430px;
height:560px;

object-fit:cover;

border-radius:25px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

transition:.4s;

}

.hero-image img:hover{

transform:scale(1.03);

}

.card{

width:85%;
max-width:1000px;

margin:50px auto;

padding:40px;

background:rgba(255,255,255,.65);

backdrop-filter:blur(12px);

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

opacity:0;

transform:translateY(50px);

transition:1s;

}

.card.show{

opacity:1;
transform:translateY(0);

}

.card h2{

margin-bottom:15px;

color:#d86b94;

}

@media(max-width:900px){

.hero{

flex-direction:column-reverse;
text-align:center;

}

.hero-text{

width:100%;

}

.hero-image{

width:100%;
margin-bottom:40px;

}

.hero-image img{

width:300px;
height:380px;

}

nav{

flex-direction:column;
gap:20px;

}

}