body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f4f6f8;
  color: #333;
}

/* HEADER */

.header {
  background: #7a0000;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.header h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 10px;
}

/* HOTELS */

.hotels {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.hotel {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.hotel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hotel h2 {
  font-family: "Playfair Display", serif;
  margin: 20px 0 10px;
}

.hotel p {
  padding: 0 20px;
}

.hotel a {
  display: inline-block;
  margin: 20px;
  padding: 12px 28px;
  background: #1e3a5f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}
.hotel a:hover{
  background: #7a0000;
}


/* FOOTER */

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px;
}
