body {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #fff;
}

.container {
    padding: 0 20px;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #333;
}

.nav-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #f2f2f2;
    padding: 10px 0;
}

.nav-btn {
    margin: 0 10px;
    padding: 10px 15px;
    background-color: #f78f1e;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #e67700;
}

.hero {
    text-align: center;
    background-color: #eee;
    padding: 40px 10px 20px;
}

.welcome-text {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    padding: 20px 10px;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    position: relative;
}

.carousel-slide img {
    width: 100vw;
    height: 80vh;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 12px 20px;
    font-size: 1.2em;
    border-radius: 5px;
}

.carousel-dots {
    text-align: center;
    padding: 15px 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #717171;
}

@media only screen and (max-width: 768px) {
    .nav-btn {
        margin: 5px;
        display: block;
    }
    .carousel-slide img {
        height: 50vh;
    }
}
/* Local News Grid Layout */
.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

/* News Card Styling */
.news-card {
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 15px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card h3 {
    color: #f78f1e;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.news-card p {
    color: #333;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.news-card a {
    color: #f78f1e;
    font-weight: bold;
    text-decoration: none;
}

.news-card a:hover {
    text-decoration: underline;
}

.news-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.news-card iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}
.flipbook-container {
  max-width: 1000px;
  margin: 2rem auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 10px;
  overflow: hidden;
}
.town-section {
  padding: 3rem 2rem;
  border-bottom: 2px solid #ddd;
  background: #fff;
}

.town-section h2 {
  font-size: 2rem;
  color: #e47127;
  margin-bottom: 0.5rem;
}

.town-blurb {
  font-size: 1rem;
  color: #333;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.town-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: #fdf7f1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.event-card:hover {
  transform: scale(1.02);
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-card h4 {
  color: #222;
  font-size: 1.1rem;
  margin: 0.75rem 1rem 0.25rem;
}

.event-card p {
  font-size: 0.9rem;
  color: #444;
  margin: 0 1rem 1rem;
}

.event-link {
  display: block;
  font-weight: 600;
  color: #e47127;
  text-decoration: none;
  padding: 0 1rem 1rem;
}

.event-link:hover {
  text-decoration: underline;
}
.town-tabs button.active {
  background-color: #f58025;
  color: white;
  font-weight: bold;
}
.read-more-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #003366;
  text-decoration: underline;
}
/* ===== Fox Valley Review CTAs (safe, namespaced) ===== */
:root { --fvr-orange: #f26419; --fvr-text-dark: #111; }

.fvr-btn {
  display:inline-flex; align-items:center; justify-content:center;
  gap:.4rem; padding:.6rem .95rem; border-radius:999px;
  font-weight:700; text-decoration:none; line-height:1;
  border:2px solid transparent; transition:opacity .15s ease, transform .02s ease;
  white-space:nowrap;
}
.fvr-btn:active { transform: translateY(1px); }

.fvr-btn--primary {
  background: var(--fvr-orange); color: var(--fvr-text-dark);
  border-color: var(--fvr-orange);
}
.fvr-btn--primary:hover { opacity:.92; }

.fvr-btn--ghost {
  background: transparent; color: var(--fvr-text-dark);
  border-color: var(--fvr-text-dark);
}
.fvr-btn--ghost:hover { background: var(--fvr-text-dark); color:#fff; }

/* Small cluster wrapper, auto-wrap on mobile */
.fvr-cta-row { display:flex; flex-wrap:wrap; gap:.5rem; }

/* Footer links style (minimal) */
.fvr-footer-cta a { font-weight:700; color: var(--fvr-orange); text-decoration:none; }
.fvr-footer-cta a:hover { text-decoration:underline; }
/* Hero styling */
.advertise-hero {
  background: #f26419;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.advertise-hero h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }

/* Stats grid */
.stats-grid {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
}
.stat h4 {
  font-size: 2rem;
  color: #f26419;
  margin-bottom: 0.25rem;
}
.stat p { font-weight: 600; }

/* CTA button */
.cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #f26419;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 1rem;
}
.cta-btn:hover { background: #d85315; }

/* Contact form */
.contact-form form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 1.5rem auto;
}
.contact-form label {
  margin-top: 1rem;
  font-weight: 600;
}
.contact-form input, 
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact-form button {
  margin-top: 1.5rem;
  cursor: pointer;
}
/* Packages Grid */
.packages {
  margin: 3rem 0;
  text-align: center;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.package {
  background: #f9f9f9;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease-in-out;
}
.package:hover {
  transform: translateY(-5px);
}
.package h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.package .price {
  font-weight: bold;
  color: #f26419;
  margin-bottom: 1rem;
}
.package ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.package ul li {
  margin: 0.5rem 0;
  font-weight: 500;
}

/* Highlight Silver as featured */
.package.silver {
  border: 2px solid #f26419;
  background: #fff7f2;
}
.issue { margin: 2rem 0; }
.issue h3 { margin: 0 0 .5rem; color: var(--fv-orange, #F26419); }
.issue-fallback { font-size: .95rem; margin-top: .5rem; }
/* ===== Issue Archive Layout ===== */

.issue-archive {
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.issue-archive__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.issue-archive h2 {
  font-size: 1.9rem;
  text-align: center;
  margin: 0;
}

/* Controls: filters + search */

.issue-archive__controls {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 0.35rem 0.9rem;
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.filter-btn.is-active {
  border-color: #ff7a1a; /* FVR orange-ish */
  background: #fff5eb;
}

.filter-btn:hover {
  transform: translateY(-1px);
}

/* Search */

.search-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 420px;
  margin: 0 auto;
}

.search-label {
  font-size: 0.85rem;
  color: #555;
}

.search-input {
  border-radius: 999px;
  border: 1px solid #ccc;
  padding: 0.4rem 0.8rem;
  font-size: 0.95rem;
  width: 100%;
}

/* Grid & cards */

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

.issue-card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.issue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.issue-card__cover {
  width: 100%;
  display: block;
}

.issue-card__body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.issue-card__title {
  font-size: 1.05rem;
  margin: 0;
}

.issue-card__meta {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* Tags (pills) */

.issue-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.35rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #555;
}

/* Actions */

.issue-card__actions {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Accessibility helper for screen-reader-only text */

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute;
}

/* Make sure buttons are clearly focusable */

.filter-btn:focus-visible,
.search-input:focus-visible {
  outline: 2px solid #ff7a1a;
  outline-offset: 2px;
}

/* Responsive tweaks */

@media (min-width: 768px) {
  .issue-archive__header {
    flex-direction: column;
  }
}

