* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: verdana, sans-serif;
  background: linear-gradient(to top,white,red);
}

.header {
  background-color: #ffdddd;
  color: #d23636;
  text-align: center;
  padding: 30px;
}

.header h1 {
  font-size: 36px;
}

.navbar {
  display: flex;
  justify-content: center;
  background-color: #333;
}

.navbar a {
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #555;
}

section {
  padding: 40px;
  text-align: center;
}

.about, .rooms, .buffet {
  background-color: #f7f7f7;
  margin: 20px 0;
}

.gallery {
  background-color: #fff;
}

.gallery-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-images img {
  width: 200px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.reservation form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}

.reservation label {
  margin-top: 10px;
  text-align: left;
}

.reservation input, .reservation button {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.reservation button {
  background-color: #d23636;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
}

.reservation button:hover {
  background-color: #b12525;
}

.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.footer a {
  color: #ffdddd;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
