body{
    margin:0;
    font-family:sans-serif;
    line-height:1.8;
    color:#333;
}

.hero{
    background:#2f5d50;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.hero h1{
    font-size:3rem;
    margin:0;
}

.hero p{
    font-size:1.2rem;
}

section{
    max-width:1000px;
    margin:auto;
    padding:60px 20px;
}

h2{
    text-align:center;
    margin-bottom:30px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

.experience ul{
    max-width:400px;
    margin:auto;
}

.btn{
    display:inline-block;
    margin:10px;
    padding:12px 24px;
    background:#2f5d50;
    color:white;
    text-decoration:none;
    border-radius:8px;
}

.reservation{
    text-align:center;
}

footer{
    background:#f5f5f5;
    text-align:center;
    padding:20px;
}