body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

.hero {
  height: 80vh;
  background-image: url('images/copper-hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.tee-time-button {
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 18px;
  background-color: #c47a2c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}

/* Force white text in all states */
.tee-time-button:link,
.tee-time-button:visited,
.tee-time-button:hover,
.tee-time-button:active {
  color: white;
  text-decoration: none;
}

.tee-time-button:hover {
  background-color: #a96522;
}
.overlay {
  position: absolute;
  bottom: 60px;          /* distance from bottom of image */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

button {
  padding: 12px 20px;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}

.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
  background: #f4f4f4;
  text-align: center;
}

.rates {
  padding: 40px;
  background-color: #f4f4f4;
}

.rates h2 {
  text-align: center;
  margin-bottom: 20px;
}

.rates-container {
  max-width: 900px;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

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

th, td {
  padding: 10px;
  text-align: left;
}

footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px;
}

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