
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #09120d;
  color: #f4f7f2;
  line-height: 1.7;
}

a {
  color: #b7f26d;
  text-decoration: none;
}

.hero {
  padding: 1rem;
  background: linear-gradient(rgba(0,0,0,.5), rgba(9,18,13,.95)),
  url('https://images.unsplash.com/photo-1518602164578-cd0074062767?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
}

.nav {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  background: rgba(0,0,0,.4);
  border-radius: 50px;
}

.brand {
  font-weight: bold;
  display: flex;
  gap: .5rem;
  align-items: center;
}

.logo {
  background: #b7f26d;
  color: black;
  border-radius: 50%;
  padding: .4rem .6rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
}

.hero-content {
  max-width: 900px;
  margin: 6rem auto;
}

.hero-content h1 {
  font-size: 4rem;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: .8rem 1.2rem;
  background: #b7f26d;
  color: black;
  border-radius: 999px;
  font-weight: bold;
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 4rem 1rem;
}

.section-title h2 {
  font-size: 2.5rem;
}

.ribbon {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 2rem auto;
}

.ribbon a {
  background: rgba(255,255,255,.08);
  padding: .4rem .8rem;
  border-radius: 999px;
  color: #f4f7f2;
  border: 1px solid rgba(255,255,255,.08);
}

.ribbon a:hover {
  color: #09120d;
  background: #b7f26d;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1rem;
}

.event-card,
.story-card,
.link-box,
.calendar-column,
.directory-note,
.county-card,
.rss-item {
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding: 1.3rem;
  border: 1px solid rgba(255,255,255,.08);
}

.spotlight {
  background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.8)),
  url('https://images.unsplash.com/photo-1621592486730-f7f7542c47af?auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
}

.date-pill {
  background: rgba(183,242,109,.15);
  display: inline-block;
  padding: .3rem .7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.calendar-column {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rss-section {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.rss-feed {
  display: grid;
  gap: 1rem;
}

.rss-item h3 {
  margin-bottom: .4rem;
}

.rss-item small {
  color: #f2d16d;
  font-weight: bold;
}

.rss-item p {
  color: #c8d5c2;
}

.story-card {
  margin-bottom: 2rem;
}

.story-card span {
  color: #f2d16d;
  font-weight: bold;
}

.directory-note {
  margin-bottom: 1.5rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.source-links a {
  background: rgba(183,242,109,.12);
  border-radius: 999px;
  padding: .45rem .8rem;
}

.course-directory {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1rem;
}

.county-card summary {
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.county-card summary span {
  color: #f2d16d;
  font-size: .9rem;
  white-space: nowrap;
}

.county-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.link-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1rem;
}

.link-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

@media(max-width:700px){
  .nav {
    border-radius: 20px;
    align-items: flex-start;
  }

  .nav-links {
    display:none;
    flex-direction: column;
    margin-top: 3rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
    background: transparent;
    color: white;
    border: 0;
    font-size: 1.4rem;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }
}


.county-card {
  scroll-margin-top: 2rem;
}


.info-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.club-column a {
  position: relative;
}

.club-column a::before {
  content: "🥏";
  margin-right: .5rem;
}


.map-layout {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 1rem;
  align-items: stretch;
}

#kentucky-map {
  min-height: 520px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  background: rgba(255,255,255,.05);
}

.map-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 1.3rem;
}

.map-legend {
  display: grid;
  gap: .75rem;
  margin: 1.2rem 0;
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.legend-dot {
  display: inline-block;
  border-radius: 50%;
  background: #5ba8ff;
  border: 2px solid #b7f26d;
}

.legend-dot.big {
  width: 28px;
  height: 28px;
  background: #f2d16d;
}

.legend-dot.medium {
  width: 22px;
  height: 22px;
}

.legend-dot.small {
  width: 16px;
  height: 16px;
}

.map-note {
  color: #c8d5c2;
  font-size: .95rem;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #09120d;
  color: #f4f7f2;
}

.leaflet-popup-content a {
  color: #b7f26d;
  font-weight: bold;
}

@media(max-width:800px){
  .map-layout {
    grid-template-columns: 1fr;
  }

  #kentucky-map {
    min-height: 420px;
  }
}


.weekend-section {
  border-top: 1px solid rgba(255,255,255,.08);
}

.weekend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1rem;
}

.weekend-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 1.35rem;
}

.featured-weekend {
  grid-column: span 2;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.82)),
    url('https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
}

.weekend-tag {
  display: inline-block;
  margin-bottom: 1rem;
  background: rgba(183,242,109,.14);
  color: #b7f26d;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: bold;
}

.weekend-meta {
  color: #f2d16d;
  margin-bottom: 1rem;
  font-weight: bold;
}

.weekend-note {
  margin-top: 1.5rem;
  background: rgba(91,168,255,.08);
  border: 1px solid rgba(91,168,255,.16);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  color: #d8e7ff;
}

@media(max-width:800px){
  .featured-weekend {
    grid-column: span 1;
  }
}


.social-links {
  margin-top: .4rem;
}

.social-links a {
  font-weight: bold;
}
