
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial}
body{background:#f6f6f6;color:#111}

header{
background:#000;
padding:20px 50px;
display:flex;
justify-content:space-between;
align-items:center;
color:white;
position:sticky;
top:0;
z-index:99;
}

.logo-wrap{
display:flex;
align-items:center;
gap:15px;
}

.logo{
width:65px;
height:65px;
border-radius:50%;
object-fit:cover;
}

.logo-wrap h2{color:gold}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

.hero-slider{
padding:100px 60px;
background:linear-gradient(to right,#fff1d2,#ffffff);
}

.hero-content{
max-width:700px;
animation:fade 1s ease;
}

.tag{
background:black;
color:gold;
padding:10px 20px;
border-radius:30px;
}

.hero-content h1{
font-size:70px;
margin:25px 0;
}

.hero-content p{
font-size:22px;
color:#555;
}

.hero-content button{
margin-top:25px;
padding:16px 35px;
background:black;
color:white;
border:none;
border-radius:35px;
font-size:16px;
}

.categories{
padding:50px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
}

.cat-card{
background:white;
padding:35px;
border-radius:25px;
text-align:center;
font-size:24px;
font-weight:bold;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

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

.products{
padding:50px;
}

.products h2,
.booking-section h2{
font-size:42px;
margin-bottom:30px;
}

.product-grid,
.booking-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.product-card,
.booking-card{
background:white;
border-radius:30px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
padding-bottom:25px;
}

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

.product-card img{
width:100%;
height:260px;
object-fit:cover;
}

.product-card h3,
.booking-card h3{
font-size:30px;
padding:20px 20px 10px;
}

.product-card p,
.booking-card p{
padding:0 20px;
color:#666;
font-size:18px;
}

.product-card button,
.booking-card button{
margin:20px;
padding:14px 28px;
background:black;
color:white;
border:none;
border-radius:30px;
}

.booking-section{
padding:50px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:40px;
margin-top:50px;
}

@keyframes fade{
from{opacity:0;transform:translateY(20px)}
to{opacity:1;transform:translateY(0)}
}
