body {
  margin: 0;
  font-family: 'Didot', 'Playfair Display', serif;
  background-color: #fffaf4;
  color: #4a3b2d;
}

header.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('images/home-bg.jpg') center/cover no-repeat;
  text-align: center;
  color: white;
}

.logo {
  width: 130px;
  position: absolute;
  top: 25px;
  left: 25px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1 {
  font-size: 2.5em;
  color: #fceec0;
}

.button {
  display: inline-block;
  background-color: #bda46e;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #a88f5c;
}

.highlight video {
  width: 100%;
  border: none;
  display: block;
}

.gallery {
  text-align: center;
  padding: 60px 20px;
}

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

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

.appointment {
  text-align: center;
  background-color: #f9f3e7;
  padding: 60px 20px;
}

form input, form textarea {
  width: 80%;
  max-width: 400px;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #cdbb9c;
  border-radius: 5px;
  font-family: inherit;
}

form button {
  background-color: #bda46e;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 25px;
  background-color: #f1e6d0;
  color: #5b4633;
}