body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)) fixed, url("/img/background.jpeg") repeat center center fixed;
  background-size: cover;
}

header {
  text-align: center;
  padding: 20px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Charm', sans-serif;
}

.section-container {
  margin-bottom: 30px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 6rem;
}

.contact-form button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #ddd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .room {
    width: 100%;
  }

  .room-list {
    flex-direction: column;
  }
}

.top-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/soton.jpeg');
  background-color: rgb(44, 62, 80);
  background-size: cover;
  color: white;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top-header h1 {
  font-size: 6rem;
  margin: 0;
  font-weight: 400;
  /* margin-top: 8rem;
  margin-bottom: 10rem; */
  margin: 10rem 0;
  font-family: 'Pinyon Script', serif;
  text-shadow: 2px 2px 4px #000000;
}

.top-header h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 500;
  font-family: 'Charm', sans-serif;
  text-shadow: 2px 2px 4px #000000;
}

.room-card .card-img-top {
  background-color: rgba(237, 245, 255, 0.908);
  aspect-ratio: 4/3;
  object-fit: contain;
}

.room-card {
  overflow: hidden;
}

.room-card .card-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #e7e2e2;
}

.section-container h2 {
  text-align: center;
  margin-bottom: 1rem;
}