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

body {
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: black;
  color: white;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 90vh;
  background: url('images/hero.jpg') no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero button {
  padding: 12px 25px;
  background: gold;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

/* ROOMS */
.rooms {
  padding: 50px;
  text-align: center;
}

.room-container {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.room {
  flex: 1;
  box-shadow: 0 0 10px #ccc;
  padding: 15px;
}

.room img {
  width: 100%;
}

/* ABOUT */
.about {
  padding: 50px;
  background: #f4f4f4;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 50px;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: auto;
}

.contact input, textarea {
  margin: 10px 0;
  padding: 10px;
}

.contact button {
  padding: 10px;
  background: black;
  color: white;
  border: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: white;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
}