:root{
--cream:#FFF8F3;
--coral:#F26B5B;
--mustard:#FFD36A;
--sage:#8FC58A;
--dark:#444444;
--white:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:var(--cream);
color:var(--dark);
overflow-x:hidden;
}

/* NAVBAR */

nav{
position:sticky;
top:0;
z-index:999;
background:rgba(255,255,255,.9);
backdrop-filter:blur(10px);
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.nav-logo img{
height:70px;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav ul a{
text-decoration:none;
color:var(--dark);
font-weight:600;
transition:.3s;
}

nav ul a:hover{
color:var(--coral);
}

/* HERO */

.hero{
padding:120px 8%;
text-align:center;
position:relative;
overflow:hidden;
}

.hero-logo{
width:180px;
margin-bottom:20px;
}

.tag{
display:inline-block;
background:#fff1cf;
padding:12px 22px;
border-radius:999px;
font-weight:600;
margin-bottom:20px;
}

.hero h1{
font-size:82px;
font-weight:900;
line-height:1.05;
color:var(--coral);
margin-bottom:25px;
}

.hero p{
max-width:700px;
margin:auto;
font-size:20px;
line-height:1.9;
}

.btn{
display:inline-block;
margin-top:35px;
padding:18px 35px;
border-radius:999px;
background:var(--sage);
color:white;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
}

/* BLOBS */

.blob{
position:absolute;
border-radius:50%;
opacity:.25;
z-index:-1;
}

.blob1{
background:var(--mustard);
width:300px;
height:300px;
left:-80px;
top:-80px;
}

.blob2{
background:var(--sage);
width:220px;
height:220px;
right:8%;
top:100px;
}

.blob3{
background:var(--coral);
width:350px;
height:350px;
bottom:-180px;
left:50%;
transform:translateX(-50%);
}

/* SECTION TITLE */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:var(--coral);
font-size:14px;
font-weight:700;
letter-spacing:2px;
}

.section-title h2{
font-size:48px;
margin-top:15px;
}

.section-title p{
max-width:650px;
margin:20px auto 0;
line-height:1.8;
}

/* WARAS */

.waras{
padding:100px 8%;
}

.waras-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.waras-card{
background:white;
padding:35px;
border-radius:30px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;
}

.waras-card:hover{
transform:translateY(-8px);
}

.icon{
font-size:45px;
margin-bottom:15px;
}

.waras-card h3{
margin-bottom:10px;
}

/* DIFFERENCE */

.difference{
padding:100px 8%;
display:flex;
justify-content:space-between;
align-items:center;
gap:50px;
}

.difference span{
color:var(--coral);
font-weight:700;
letter-spacing:2px;
}

.difference h2{
font-size:50px;
margin:15px 0;
}

.difference p{
line-height:1.9;
}

.difference-icons{
display:flex;
gap:25px;
font-size:80px;
}

/* MENU */

.menu{
padding:120px 8%;
background:#fff3e5;
}

.menu-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.menu-card{
background:white;
border-radius:35px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
}

.menu-card:hover{
transform:translateY(-10px);
}

.menu-card img{
width:100%;
height:320px;
object-fit:cover;
}

.menu-content{
padding:25px;
}

.menu-content h3{
color:var(--coral);
margin-bottom:10px;
}

.menu-content p{
line-height:1.8;
}

.price{
margin-top:15px;
font-size:24px;
font-weight:700;
color:var(--sage);
}

/* MOOD */

.mood{
padding:100px 8%;
}

.mood-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.mood-card{
background:white;
padding:35px;
border-radius:30px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.emoji{
font-size:50px;
margin-bottom:15px;
}

/* GALLERY */

.gallery{
padding:120px 8%;
background:white;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
width:100%;
height:260px;
object-fit:cover;
border-radius:25px;
transition:.3s;
}

.gallery-grid img:hover{
transform:scale(1.03);
}

/* LOVE */

.love{
padding:100px 8%;
}

.love-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.love-card{
background:white;
padding:35px;
border-radius:25px;
font-weight:600;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

/* INSTAGRAM */

.instagram{
padding:120px 8%;
text-align:center;
background:#fff3e5;
}

.instagram h2{
font-size:55px;
color:var(--coral);
margin-bottom:20px;
}

.instagram p{
max-width:700px;
margin:auto;
line-height:1.8;
}

/* CTA */

.cta{
padding:140px 8%;
text-align:center;
}

.cta h2{
font-size:60px;
line-height:1.2;
color:var(--coral);
margin-bottom:20px;
}

.cta p{
font-size:20px;
line-height:1.8;
}

/* FOOTER */

footer{
background:white;
padding:60px;
text-align:center;
margin-top:40px;
}

footer img{
height:90px;
margin-bottom:20px;
}

footer h3{
margin-bottom:10px;
}

footer p{
line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero h1{
font-size:55px;
}

.section-title h2{
font-size:38px;
}

.difference{
flex-direction:column;
text-align:center;
}

.difference h2{
font-size:40px;
}

.difference-icons{
font-size:60px;
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.cta h2{
font-size:42px;
}

nav{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}

}

@media(max-width:600px){

.hero{
padding:100px 6%;
}

.hero-logo{
width:140px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:16px;
}

.gallery-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:32px;
}

.instagram h2{
font-size:40px;
}

.cta h2{
font-size:34px;
}

}