﻿body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #f8f8f8;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header {
  background: #1e3c72;
  color: #fff;
  padding: 1em 0;
}
header h1 {
  margin: 0;
  text-align: center;
}
header nav {
  text-align: center;
  margin-top: 0.5em;
}
header nav a {
  color: #fff;
  margin: 0 1em;
  text-decoration: none;
}
.hero {
  background: url('https://picsum.photos/1920/600?blur') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 6em 1em;
}
.hero h2 {
  font-size: 2.5em;
}
.btn {
  background: #ff9800;
  color: #fff;
  padding: 0.75em 1.5em;
  text-decoration: none;
  display: inline-block;
  margin-top: 1em;
  border-radius: 4px;
}
.features, .rooms, .contact {
  background: #fff;
  padding: 3em 1em;
  margin-top: 1em;
}
.features h3, .rooms h2, .contact h2 {
  text-align: center;
  margin-bottom: 1em;
}
.features ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.features ul li {
  background: #eee;
  padding: 1em;
  border-radius: 5px;
  min-width: 150px;
  text-align: center;
}
.room-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.room-card {
  background: #f0f0f0;
  border-radius: 5px;
  width: 300px;
  text-align: center;
  padding: 1em;
}
.room-card img {
  width: 100%;
  border-radius: 5px;
}
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.contact input, .contact textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
footer {
  background: #222;
  color: #bbb;
  text-align: center;
  padding: 1em 0;
  margin-top: 1em;
}
