body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

.buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  background: #caa85c;
  color: white;
  text-decoration: none;
  margin: 5px;
  border-radius: 5px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid white;
}

.section {
  display: flex;
  padding: 60px 10%;
  align-items: center;
  gap: 40px;
}

.section.reverse {
  flex-direction: row-reverse;
}

.image {
  width: 50%;
  border-radius: 10px;
}

.text {
  width: 50%;
}

.gallery {
  padding: 60px 10%;
  text-align: center;
}

.grid {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.grid img {
  width: 33%;
  border-radius: 10px;
}

.booking {
  padding: 60px 10%;
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

input, textarea, select {
  margin: 10px 0;
  padding: 12px;
}

button {
  background: #caa85c;
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
}