* {
  margin: 0;
  padding: 0;
}

.hero_section {
  position: relative;

  width: 100%;
  height: 650px;
  /* margin-top: 70px;   */
  overflow: hidden;
}

.image-container {
  position: relative;
  width: 100%;
  height: 650px;
}

.image-container img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.hero_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #474747;
  text-align: center;
  padding: 20px;
  max-width: 450px;
}

.hero_text h1 {
  font-size: 4rem;
  font-weight: 550;
  color: #312f2f;
  margin-bottom: 1rem;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.hero_text p {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.button {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.Book_table {
  background-color: #b3002d;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.Book_table:hover {
  background-color: #8a0022;
  transition: 0.3s;
}

.explore_menu {
  background-color: white;
  color: #333;
  padding: 12px 24px;
  border: 2px solid #aaa;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.explore_menu:hover {
  background-color: #f3e7e7;
  transition: 0.5s;
}