*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Georgia, serif;
    background:#faf9f7;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#111;
    color:white;
    text-align:center;
    padding:30px 0;
}

header h1{
    font-size:42px;
    letter-spacing:3px;
}

header p{
    color:#d4af37;
    margin-top:10px;
}

nav{
    margin-top:25px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 18px;
    font-size:17px;
}

nav a:hover{
    color:#d4af37;
}

.hero{
    height:650px;
    background:url("villa.jpg") center center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    background:rgba(0,0,0,.55);
    color:white;
    padding:50px;
    text-align:center;
    max-width:700px;
}

.overlay h2{
    font-size:50px;
    margin-bottom:20px;
}

.overlay p{
    font-size:20px;
    margin-bottom:35px;
}

.button{
    display:inline-block;
    background:#d4af37;
    color:#111;
    text-decoration:none;
    padding:15px 35px;
    font-weight:bold;
    border-radius:4px;
}

.button:hover{
    background:#c29b1d;
}

section{
    padding:80px 0;
}

section h2{
    text-align:center;
    margin-bottom:45px;
    font-size:36px;
}

.features{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;
}

.card{
    background:white;
    width:320px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-radius:6px;
}

.card h3{
    margin-bottom:15px;
    color:#b8860b;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:30px;
}