/* --- Hillsborough Golf Club Theme Colors & Fonts --- */
:root {
  --primary-green: #1b4332;       /* Deep Fairway Green */
  --secondary-green: #2d6a4f;     /* Leaf Green */
  --gold-accent: #c49a45;         /* Club Gold/Tan */
  --dark-text: #222222;           /* Primary Body Text */
  --light-bg: #f4f6f4;            /* Off-white Section Background */
  --border-color: #dcdcdc;        /* Divider Color */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* Reset & Global Settings */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: #ffffff;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* --- Header / Navigation --- */
.site-header {
  background-color: var(--primary-green);
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-logo span {
  color: var(--gold-accent);
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-accent);
}

/* --- Main Layout Container --- */
.article-container {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 20px;
}

/* --- Article Header --- */
.article-header {
  margin-bottom: 30px;
}

.category-badge {
  display: inline-block;
  background-color: var(--gold-accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--primary-green);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 25px;
}

/* --- Images & Figures --- */
figure {
  margin: 30px 0;
}

figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

figcaption {
  font-size: 0.9rem;
  color: #666666;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* --- Article Typography --- */
.lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  line-height: 1.7;
  margin-bottom: 24px;
  border-left: 4px solid var(--gold-accent);
  padding-left: 15px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--primary-green);
  margin: 40px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-accent);
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--secondary-green);
  margin: 28px 0 12px 0;
}

/* --- Styled Lists --- */
.styled-list {
  list-style: none;
  margin: 20px 0;
  padding-left: 5px;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.styled-list li::before {
  content: "⛳";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.9rem;
}

/* --- Table Styling --- */
.table-responsive {
  overflow-x: auto;
  margin: 35px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.comparison-table th, 
.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-green);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--light-bg);
}

/* --- FAQ Section --- */
.faq-section {
  margin-top: 50px;
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--primary-green);
}

.faq-section h2 {
  border-bottom: none;
  margin-top: 0;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-green);
  margin-bottom: 8px;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--primary-green);
  color: #ffffff;
  text-align: center;
  padding: 25px 20px;
  margin-top: 60px;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gold-accent);
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  .header-container {
    flex-direction: column;
    gap: 10px;
  }
  .nav-links a {
    margin: 0 10px;
  }
}
