
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@600&display=swap');

body{
margin:0;
font-family:Poppins, sans-serif;
background:#fff9f5;
color:#4a3f35;
overflow-x:hidden;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:10;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#4a3f35;
font-weight:500;
}

.hero{
position:relative;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(120deg,#ffdce5,#fff1cc,#ffe9d6);
background-size:400% 400%;
animation:gradient 12s ease infinite;
}

@keyframes gradient{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}

.hero h1{
font-family:'Playfair Display';
font-size:60px;
margin-bottom:10px;
}

.hero p{
font-size:20px;
margin-bottom:25px;
}

.btn{
background:#c9a227;
color:white;
padding:14px 32px;
border-radius:40px;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.section{
padding:80px 8%;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.price{
font-size:34px;
color:#c9a227;
margin:10px 0;
}

footer{
padding:40px;
text-align:center;
background:#f8efe3;
margin-top:60px;
}

/* Falling petals */
.petal{
position:fixed;
top:-50px;
width:20px;
height:20px;
background:pink;
border-radius:50%;
opacity:0.7;
animation:fall linear infinite;
}

@keyframes fall{
to{
transform:translateY(110vh) rotate(360deg);
}
}

/* Rings animation */
.rings{
font-size:50px;
animation:spin 6s linear infinite;
display:inline-block;
}

@keyframes spin{
from{transform:rotate(0)}
to{transform:rotate(360deg)}
}

form{
max-width:500px;
margin:auto;
text-align:left;
}

input,textarea{
width:100%;
padding:12px;
margin:8px 0;
border-radius:8px;
border:1px solid #ddd;
}

