
body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#fffaf8;
    color:#333;
}
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:#f8e7e7;
}
.logo{
    font-size:28px;
    font-weight:bold;
    color:#b76e79;
}
nav a{
    margin:0 15px;
    text-decoration:none;
    color:#333;
    font-weight:bold;
}
.hero{
    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?q=80&w=1400&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    height:85vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}
.hero h1{
    font-size:56px;
}
.btn{
    background:#b76e79;
    color:white;
    padding:12px 24px;
    text-decoration:none;
    border:none;
    border-radius:5px;
    display:inline-block;
    margin-top:15px;
}
.services-preview{
    padding:60px 40px;
}
.services-preview h2{
    text-align:center;
    margin-bottom:40px;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(0,0,0,.1);
}
.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}
.card-content{
    padding:20px;
}
.page-banner{
    height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-align:center;
    background-size:cover;
    background-position:center;
}
.about-banner{
    background-image:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?q=80&w=1400&auto=format&fit=crop');
}
.services-banner{
    background-image:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url('https://images.unsplash.com/photo-1512496015851-a90fb38ba796?q=80&w=1400&auto=format&fit=crop');
}
.booking-banner{
    background-image:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?q=80&w=1400&auto=format&fit=crop');
}
.contact-banner{
    background-image:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?q=80&w=1400&auto=format&fit=crop');
}
.content{
    padding:50px;
    max-width:1100px;
    margin:auto;
}
.services-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.service-box{
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.1);
}
.booking-form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
}
.booking-form input,
.booking-form textarea{
    margin:10px 0;
    padding:14px;
}
footer{
    text-align:center;
    background:#111;
    color:white;
    padding:20px;
    margin-top:40px;
}
