/* Modern, clean styling for the golf website */
:root {
  --primary-color: #2c5530; /* Golf green */
  --secondary-color: #f4f4f4;
  --accent-color: #d4af37; /* Gold accent */
  --text-color: #333;
  --header-font: "Arial", sans-serif;
  --body-font: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--secondary-color);
}

header {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

header h1 {
  font-family: var(--header-font);
  margin-bottom: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-color);
}

.section {
  padding: 4rem 2rem;
}

.section:nth-child(even) {
  background-color: white;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--header-font);
}

.golf-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
}

footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1rem 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .golf-highlights {
    grid-template-columns: 1fr;
  }
}
