body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* HEADER */
header {
  background: #111;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}
header h1 {
  color: #d4af37;
  font-family: "Playfair Display", serif;
  font-size: 26px;
}
nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover { color: #d4af37; }
header button {
  background: #d4af37;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

/* HERO */
.hero {
  width: 100%;
  height: 480px;

  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("https://upload.wikimedia.org/wikipedia/commons/3/3a/Pittsburgh_skyline_at_night.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #d4af37;
  font-size: 48px;
  margin: 0;
}
.hero h3 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
}
.hero p {
  font-size: 18px;
  margin-top: 10px;
}
.hero button {
  margin-top: 25px;
  background: #d4af37;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

/* MAIN */
main {
  display: flex;
  justify-content: space-between;
  padding: 60px;
}

/* SERVICES */
.services { width: 60%; }
.services h4 {
  color: #d4af37;
  font-size: 26px;
  text-align: center;
  margin-bottom: 20px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}
.service-card h5 { font-size: 18px; margin: 10px 0 5px; }
.service-card p { color: #d4af37; }

/* BOOKING */
.booking {
  width: 35%;
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 25px;
}
.booking h4 {
  color: #d4af37;
  text-align: center;
  font-size: 22px;
}
.booking input, .booking select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
}
.booking button {
  width: 100%;
  padding: 12px;
  background: #d4af37;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #111;
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
footer h5 {
  color: #d4af37;
  font-size: 18px;
}
footer p {
  color: #ccc;
  font-size: 14px;
}
