/* ====================================== */
/* Reset & Normalize                      */
/* ====================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFFFFF;
  color: #22312c;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #225E2A;
  text-decoration: none;
}
a:focus { outline: 2px solid #F8E191; outline-offset: 2px; }
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: #1d3720;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; letter-spacing: -0.01em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.06rem; }
p, .subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #3D4D3B;
  font-size: 1.06rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
  color: #16431b;
}
hr { border: 0; border-top: 1px solid #e3e3e0; margin: 40px 0; }
address { font-style: normal; color: #665f52; margin-bottom: 12px; }

dt { font-weight: bold; margin-top: 16px; }
dd { margin-bottom: 10px; }

/* ===================================== */
/* Typography scale for elegance         */
/* ===================================== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
}

/* ====================================== */
/* Brand & Colors                        */
/* ====================================== */
:root {
  --color-primary: #225E2A;
  --color-primary-dark: #18421B;
  --color-secondary: #fff;
  --color-accent: #F8E191;
  --color-bg: #fcfaf5;
  --color-muted: #F4F4EF;
  --color-border: #e3e3e0;
  --color-text: #22312c;
  --color-grey: #8b8e86;
  --shadow-card: 0 4px 24px 0 rgba(34, 94, 42, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

body { background: var(--color-bg); }

/* ======================================= */
/* Container, Layout & Spacing Patterns    */
/* ======================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.quick-links {
  margin-top: 16px;
  font-size: 1.06em;
  color: var(--color-primary);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  font-size: 1.06rem;
  color: #374531;
}
.section .text-section {
  margin-top: 10px;
}

/* ===================================== */
/* Flexbox Layout Patterns               */
/* ===================================== */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--color-secondary); border-radius: var(--radius-md); box-shadow: var(--shadow-card); transition: box-shadow .16s; }
.card:hover { box-shadow: 0 8px 32px 0 rgba(34,94,42,0.16); }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; background: #fff; border-radius: var(--radius-md); box-shadow: 0 4px 28px 0 rgba(34,94,42,0.11); margin-bottom: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; padding-bottom: 10px; }

/* Enforced minimum margins between cards */
.section:not(:last-child) { margin-bottom: 60px; }
.card:not(:last-child) { margin-right: 20px; }
.testimonial-card:not(:last-child) { margin-bottom: 20px; }

/* ===================================== */
/* Header, Nav, Logo                    */
/* ===================================== */
header {
  background: var(--color-secondary);
  box-shadow: 0 0 24px 0 rgba(34, 94, 42, 0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 38px;
  height: 62px;
}
.logo img { height: 46px; transition: opacity .22s; }
.logo:hover img { opacity: 0.85; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.desktop-nav a {
  color: var(--color-text);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.06em;
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
  transition: color .16s;
  border: none;
}
.desktop-nav a:after {
  content: '';
  display: block;
  height: 2px;
  background: var(--color-accent);
  width: 0%;
  transition: width .18s cubic-bezier(.4,.7,.6,1);
  position: absolute;
  left: 0;
  bottom: -3px;
  border-radius: 2px;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--color-primary);
}
.desktop-nav a:hover:after,
.desktop-nav a:focus:after {
  width: 100%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 13px 34px;
  border-radius: var(--radius-lg);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.12em;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(34,94,42,0.10);
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background .16s, box-shadow .16s, color .16s;
  margin-left: 30px;
  margin-right: 22px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 22px 0 rgba(34,94,42,0.16);
}

/* ===================================== */
/* MOBILE MENU                          */
/* ===================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
  margin-left: 8px;
  z-index: 30;
  transition: color .16s;
}
@media (max-width: 1024px) {
  .cta-btn { margin-left: 14px; }
}
@media (max-width: 900px) {
  .cta-btn { margin-left: 2px; margin-right:2px; }
}
@media (max-width: 768px) {
  .desktop-nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: block; }
  header .container { gap: 8px; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,94,42,0.93);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 99;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.73,.01,.23,1), opacity .25s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 20px 24px 0 0;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 102;
  transition: color .16s;
}
.mobile-menu-close:hover { color: var(--color-accent); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 36px;
  width: 95vw;
  max-width: 350px;
  background: #fff;
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
  padding: 38px 32px 32px 30px;
  min-height: 100vh;
  box-shadow: -6px 0 44px 0 rgba(34,94,42,0.15);
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: left;
  transition: color .13s;
  padding: 8px 0;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--color-accent); }

/* ===================================== */
/* Main Content                         */
/* ===================================== */
main { min-height: 520px; }
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
@media (max-width: 900px) {
  .section, section { padding-left: 8px; padding-right: 8px; }
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 768px) {
  .section, section { padding-top: 26px; padding-bottom: 26px; }
  .container { padding-left: 6px; padding-right: 6px; }
  .content-wrapper { gap: 14px; }
}

.subheadline {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: #527C53;
  font-size: 1.25em;
  margin-bottom: 24px;
  font-weight: 400;
}

/* =========== FEATURES GRID (WHY US, ETC) =========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.feature-grid li {
  flex:1 1 180px;
  background: var(--color-muted);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px 0 rgba(34,94,42,0.05);
  padding: 28px 24px 20px 24px;
  min-width: 220px;
  font-size: 1em;
  position: relative;
  transition: box-shadow .17s, background .17s;
}
.feature-grid li img {
  height: 40px;
  margin-bottom: 10px;
}
.feature-grid li strong {
  font-size: 1.13em;
  color: var(--color-primary);
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 6px 32px 0 rgba(34,94,42,0.09);
  background: #f9f9f4;
}
@media (max-width: 768px) {
  .feature-grid { flex-direction: column; gap: 16px; }
  .feature-grid li { min-width: 0; padding: 18px 14px; }
}

/* CLUB-LISTINGS tweaks on club list page */
.club-listings li {
  background: #fcfaf5;
  border: 1px solid #e8ebdf;
  min-width: 0;
  box-shadow: 0 2px 12px 0 rgba(34,94,42,0.04);
  transition: border-color .14s, box-shadow .14s;
}
.club-listings li:hover { border-color: var(--color-primary); }
.club-listings a { color: var(--color-primary); text-decoration: underline; font-size: 1.03em; transition: color .15s; }
.club-listings a:hover { color: #b39834; }

/* ===================================== */
/* Testimonials                         */
/* ===================================== */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  color: #1d3720;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 28px 0 rgba(34,94,42,0.11);
  flex: 1 1 290px;
  max-width: 380px;
  min-width: 220px;
  font-style: italic;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.06em;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .16s, background .19s;
}
.testimonial-card p {
  color: #22312c;
  font-size: 1.03em;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.98em;
  color: #858783;
  font-style: normal;
  margin-top: 2px;
}
.testimonial-card:hover, .testimonial-card:focus-within { background: var(--color-muted); box-shadow: 0 8px 36px 0 rgba(34,94,42,0.18); }
@media (max-width: 768px) {
  .testimonial-slider { flex-direction: column; gap: 14px; }
  .testimonial-card { min-width: 0; max-width: 100%; }
}

/* ===================================== */
/* Event List                            */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0 16px 0;
  font-size: 1.09em;
}
.event-list li {
  background: #f8f8f3;
  border-radius: var(--radius-sm);
  border-left: 6px solid var(--color-accent);
  padding: 19px 23px 19px 28px;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.04);
}
.event-list li strong { color: var(--color-primary); font-weight: 700; }

/* ===================================== */
/* Footer & Brand Info                  */
/* ===================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 48px 0 16px 0;
  font-family: 'Libre Baskerville', Georgia, serif;
  box-shadow: 0 -4px 12px 0 rgba(34,94,42,0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  color: var(--color-accent);
  margin-bottom: 4px;
  justify-content: center;
}
.footer-nav a { color: var(--color-accent); margin: 0 2px; transition: color .15s; }
.footer-nav a:hover, .footer-nav a:focus { color: #fff5cc; }
.brand-info {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05em;
}
.brand-info img { height: 32px; margin-right: 4px; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.02em;
}
.footer-contact img { height: 22px; opacity: .78; margin: 0 7px 0 4px; }
@media (max-width: 768px) {
  .footer-nav { flex-direction: column; gap: 4px; }
  .brand-info { flex-direction: column; gap: 2px; text-align: center; }
  .footer-contact { flex-direction: column; gap: 7px; }
}

/* ===================================== */
/* Cookie Consent Banner & Modal         */
/* ===================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fffbe5;
  color: #1d3720;
  padding: 28px 16px 24px 16px;
  border-top: 1px solid #ede7c1;
  box-shadow: 0 -2px 24px 0 rgba(34,94,42,0.10);
  display: flex;
  align-items: flex-start;
  gap: 32px;
  justify-content: center;
  z-index: 120;
  transition: transform .35s cubic-bezier(.74,.03,.23,.97), opacity .25s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 320px;
  font-size: 1.07em;
  font-family: 'Libre Baskerville', Georgia, serif;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 0;
}
.cookie-btn {
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 600;
  font-size: 1.01em;
  border: none;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  margin-right: 8px;
  box-shadow: 0 1px 8px 0 rgba(34,94,42,0.09);
  transition: background .14s, color .14s;
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-btn.cookie-settings {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn:hover, .cookie-btn:focus { background: var(--color-accent); color: var(--color-primary); }
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 5px 16px 8px;
  }
  .cookie-banner__actions { gap: 10px; justify-content: flex-start; }
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34, 94, 42, 0.20);
  z-index: 199;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__panel {
  background: #fff;
  color: #1d3720;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 44px 0 rgba(34,94,42,0.20);
  padding: 36px 30px 28px 30px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Libre Baskerville', Georgia, serif;
}
.cookie-modal__h2 { font-size: 1.19em; font-weight: 700; color: var(--color-primary); margin-bottom: 6px; }
.cookie-modal__cat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal__cat label {
  font-size: 1em;
  cursor: pointer;
}
.cookie-switch {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #eae5cb;
  border-radius: 11px;
  position: relative;
  outline: none;
  transition: background .15s;
}
.cookie-switch:checked { background: var(--color-accent); }
.cookie-switch:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(34,94,42,0.12);
  transition: left .16s;
}
.cookie-switch:checked:before { left: 20px; }
.cookie-modal__cat--disabled label,
.cookie-modal__cat--disabled { color: #aaa; }
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  color: #666;
  font-size: 1.27em;
  z-index: 2;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal__close:hover { color: var(--color-primary); }

/* ===================================== */
/* Forms & Input                        */
/* ===================================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  margin-bottom: 16px;
  transition: border-color .13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
  outline: 2px solid var(--color-accent);
}
button {
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  border: none;
  background: none;
  transition: background .13s, color .13s;
}

/* ===================================== */
/* Responsive Layouts & Flex             */
/* ===================================== */
@media (max-width: 1024px) {
  .container { max-width: 100%; }
  .feature-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .section, section { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===================================== */
/* Utilities                            */
/* ===================================== */
.nowrap { white-space: nowrap; }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } 
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* ===================================== */
/* Subtle Animations & Micro-interactions */
/* ===================================== */
.cta-btn,
.card,
.feature-grid li,
.testimonial-card,
.cookie-banner,
.cookie-modal__panel {
  transition: box-shadow .2s, background .19s, color .13s, border-color .15s;
}
.card:hover, .feature-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(34,94,42,0.15);
}
.mobile-menu, .cookie-banner, .cookie-modal { will-change: transform, opacity; }

/* ============ Print =============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container, .section { box-shadow: none !important; }
}

/* ===================================== */
/* Custom Elegant Classic Styles         */
/* ===================================== */
/* Serif font for display, muted off-white backgrounds, restrained green/gold accents, generous spacing, classic card borders, subtle shadows and corners, minimalist icons on white or soft backgrounds. */

/* ======================= */
/* Font-Face (Fallbacks)   */
/* ======================= */
@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
