html, body{
height:100%;
}

body{
margin:0;
font-family:'Poppins',sans-serif;
background:#FFF6F8;
text-align:center;
color:#333;
overflow-x:hidden;

display:flex;
flex-direction:column;
}

/* NAVBAR */

nav{
background:#F58CA8;
padding:15px;
position:sticky;
top:0;
z-index:100;
}

nav a{
color:white;
margin:15px;
text-decoration:none;
font-weight:500;
font-size:16px;
transition:0.2s;
}

nav a:hover{
opacity:0.8;
}

/* HERO */

.hero{
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
padding:20px;
}

.hero h1{
font-size:48px;
color:#E84B6A;
margin-bottom:10px;
}

.hero p{
font-size:18px;
max-width:600px;
}

/* PAGE CONTENT */

.page-content{
flex:1;
padding:60px 20px;
max-width:1100px;
margin:auto;
}

/* BUTTON */

.order-btn{
background:#E84B6A;
color:white;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
margin-top:25px;
display:inline-block;
font-weight:500;
transition:0.3s;
}

.order-btn:hover{
transform:scale(1.08);
}

/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:20px;
}

.gallery img{
width:100%;
border-radius:12px;
transition:0.4s;
}

.gallery img:hover{
transform:translateY(-10px) scale(1.02);
}

/* MENU */

.menu-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:20px;
}

.menu-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

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

/* ORDER LIST */

.order-list{
list-style:none;
padding:0;
margin:20px auto;
max-width:400px;
font-size:18px;
}

.order-list li{
padding:6px 0;
}

/* INSTAGRAM */

.instagram-posts{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:20px;
max-width:1000px;
margin:auto;
padding:20px;
}

/* SCROLL ANIMATION */

.fade{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.fade.show{
opacity:1;
transform:translateY(0);
}

/* STRAWBERRY BACKGROUND */

.strawberry-bg{
position:fixed;
width:100%;
height:100%;
background-image:url("strawberry.png");
background-size:80px;
opacity:0.08;
animation:floatbg 40s linear infinite;
z-index:-1;
}

@keyframes floatbg{
0%{
background-position:0 0;
}
100%{
background-position:0 -2000px;
}
}

/* FOOTER */

footer{
padding:30px;
background:#5A3A2E;
color:white;
margin-top:auto;
}

/* MOBILE */

@media (max-width:700px){

.hero h1{
font-size:36px;
}

nav a{
margin:8px;
font-size:14px;
}

.menu-grid{
grid-template-columns:1fr;
}

.gallery{
grid-template-columns:1fr;
}

.page-content{
padding:40px 15px;
}

}
