
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#f4f4f4;
  color:#222;
  line-height:1.6;
}

.hero{
  background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
  url('https://images.unsplash.com/photo-1492496913980-501348b61469?q=80&w=1200&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  min-height:90vh;
  color:white;
  padding:20px;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.hero-content{
  max-width:650px;
  margin-top:120px;
}

.hero-content h2{
  font-size:3.2rem;
  margin-bottom:20px;
}

.hero-content p{
  font-size:1.2rem;
  margin-bottom:25px;
}

.btn{
  background:#2e8b57;
  color:white;
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  margin-right:10px;
}

.secondary{
  background:#444;
}

.large{
  font-size:1.1rem;
}

section{
  padding:70px 20px;
  text-align:center;
}

.cards{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:30px;
}

.card{
  background:white;
  padding:25px;
  border-radius:12px;
  width:280px;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.price{
  font-size:2rem;
  font-weight:bold;
  color:#2e8b57;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:30px;
}

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

.review-card{
  background:white;
  max-width:700px;
  margin:20px auto;
  padding:20px;
  border-radius:12px;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.booking form{
  max-width:600px;
  margin:30px auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.booking input,
.booking textarea,
.booking select,
.booking button{
  padding:14px;
  border-radius:8px;
  border:1px solid #ccc;
}

.booking button{
  background:#2e8b57;
  color:white;
  border:none;
  cursor:pointer;
  font-weight:bold;
}

.contact-box{
  margin-top:30px;
}

.payment-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-top:25px;
}

.payment-buttons a{
  background:#2e8b57;
  color:white;
  text-decoration:none;
  padding:14px 24px;
  border-radius:8px;
}

.map-section iframe{
  width:100%;
  max-width:1000px;
  height:450px;
  border:none;
  border-radius:12px;
  margin-top:25px;
}

.hidden{
  display:none;
}

footer{
  background:#222;
  color:white;
  padding:25px;
  text-align:center;
}

@media(max-width:768px){
  .hero-content h2{
    font-size:2.2rem;
  }
}
