body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #121212;
  color: #f1f1f1;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  background: url('https://source.unsplash.com/1600x600/?hotel,night') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

header h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
}

header p {
  font-size: 1.3em;
  margin-bottom: 1em;
}

.btn {
  background: #e63946;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

section {
  padding: 50px 0;
}

.features ul {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
}

.features li {
  padding: 5px 0;
}

.promo {
  background: #1f1f1f;
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.rooms .room-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.room-card {
  background: #1e1e1e;
  padding: 20px;
  flex: 1 1 30%;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  border-radius: 5px;
}

.booking form {
  display: grid;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.booking input,
.booking select,
.booking button {
  padding: 12px;
  font-size: 1em;
  background: #2a2a2a;
  color: #f1f1f1;
  border: 1px solid #444;
  border-radius: 5px;
}

.booking button {
  background-color: #457b9d;
  color: white;
  border: none;
  cursor: pointer;
}

.contact {
  background: #1a1a1a;
  text-align: center;
}

.contact iframe {
  border: none;
  margin-top: 10px;
}

footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
}
