/* =========================
   PREMIUM GOLF THEME
========================= */


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
}
/* HEADER */
.header {
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  z-index: 10;
}

.logo {
  width: 160px;
}

/* HERO */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body {
  background-color: #000 !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.overlay {
  position: relative;
  text-align: center;
  color: white;
  padding: 40px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(1px);
  border-radius: 16px;
}

.overlay h2 {
  font-size: 2.4rem;
}

/* BUTTON */
.tee-time-button {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 28px;
  background: #c9a84c;
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
}

/* INFO STRIP */
.info {
  background: #0f3020;
  color: white;
  padding: 20px 0;
}

.info .container {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

/* RATES */
.rates {
  padding: 80px 20px;
  text-align: center;
}

.rates-container {
  display: grid;
  gap: 25px;
}

@media (min-width: 900px) {
  .rates-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.table-header {
  background: #1a4731;
  color: white;
}

/* FOOTER */
footer {
  background: #0f3020;
  color: white;
  text-align: center;
  padding: 40px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}