*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f4f4;
    color:#333;
}

/* HEADER */

header{
    background:#111;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    transition:0.3s;
}

nav a:hover{
    color:#c59d5f;
}

/* HERO */

.hero{
    height:90vh;

    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
    padding:20px;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.book-btn{
    display:inline-block;
    padding:15px 30px;
    background:#c59d5f;
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-size:18px;
    transition:0.3s;
}

.book-btn:hover{
    background:#a57d42;
    transform:scale(1.05);
}

/* SERVICES */

.services{
    padding:80px 8%;
    background:white;
}

.services h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    color:#111;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#f9f9f9;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    transition:0.3s;
    padding-bottom:25px;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    margin-top:20px;
    margin-bottom:10px;
    color:#111;
}

.card p{
    padding:0 20px;
    margin-bottom:15px;
}

.card span{
    font-size:22px;
    font-weight:bold;
    color:#c59d5f;
}

/* ABOUT */

.about{
    padding:80px 8%;
    text-align:center;
}

.about h2{
    font-size:40px;
    margin-bottom:20px;
    color:#111;
}

.about p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
}

/* CONTACT */

.contact{
    padding:80px 8%;
    background:white;
    text-align:center;
}

.contact h2{
    font-size:40px;
    margin-bottom:20px;
    color:#111;
}

.contact p{
    margin-bottom:15px;
    font-size:18px;
}

/* FOOTER */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
}

/* MOBILE */

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }
}