*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial;
background:#FFF8F2;
color:#4A3F35;
}

.hero{
height:100vh;

background:
linear-gradient(
rgba(0,0,0,.35),
rgba(0,0,0,.35)
),

url("images/WhatsApp Image 2026-05-26 at 11.01.56.jpeg");

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;

text-align:center;
padding:20px;
}

.hero-content{
max-width:700px;
color:white;
}

.hero h1{
font-size:70px;
letter-spacing:5px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
line-height:1.8;
}

.buttons{
margin-top:30px;
}

.buttons a{

padding:14px 28px;

background:#F4C7D7;

color:black;

text-decoration:none;

border-radius:30px;

margin:10px;

display:inline-block;
}

section{
padding:80px 10%;
}

h2{
text-align:center;
margin-bottom:40px;
font-size:40px;
}

.grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;
}

.grid img{

width:100%;

border-radius:20px;

transition:.4s;
}

.grid img:hover{
transform:scale(1.05);
}

.about,
.gift{

text-align:center;
max-width:800px;
margin:auto;

line-height:2;
}

footer{

padding:30px;

text-align:center;

background:#F4C7D7;

margin-top:50px;
}