/*
Theme Name: GoFentress
Theme URI: https://gofentress.com
Author: GoFentress
Author URI: https://gofentress.com
Description: Community hub theme for Fentress County, TN. Outdoorsy, nature-forward design.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: gofentress
Tags: nature, outdoors, community, directory
*/

/* ============================================================
   FONTS & ROOT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700;900&family=Satisfy&display=swap');

:root {
  --green:        #3a5f45;
  --green-dark:   #243d2c;
  --green-light:  #4e7a5e;
  --tan:          #c8a96e;
  --tan-light:    #e8d5b0;
  --cream:        #f7f3ed;
  --brown:        #4a3320;
  --brown-light:  #7a5c3a;
  --text:         #2c2c2c;
  --text-light:   #666;
  --white:        #ffffff;
  --border:       #ddd5c8;
  --shadow-sm:    0 2px 10px rgba(40,30,15,.1);
  --shadow-md:    0 4px 20px rgba(40,30,15,.15);
  --shadow-lg:    0 8px 40px rgba(40,30,15,.2);
  --radius:       8px;
  --radius-lg:    16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;
  --font-script:  'Satisfy', cursive;
  --max-width:    1280px;
  --transition:   all 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--brown);
  line-height: 1.2;
  font-weight: 700;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

.section-label {
  font-family: var(--font-script);
  color: var(--tan);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.bg-cream { background: var(--cream); }
.bg-green { background: var(--green-dark); }
.text-white { color: var(--white) !important; }
.text-white h1,.text-white h2,.text-white h3 { color: var(--white); }
.text-white .section-subtitle { color: rgba(255,255,255,.75); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--brown); border-color: #fff; }
.btn-white:hover { background: var(--tan); border-color: var(--tan); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

#site-header.transparent {
  background: transparent;
}

#site-header.scrolled, #site-header.solid {
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.01em;
}
.site-logo .logo-sub {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tan);
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.current { color: var(--tan); }

.nav-cta { margin-left: 16px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24,40,28,.82) 0%,
    rgba(36,61,44,.65) 50%,
    rgba(24,40,28,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 40px 80px;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-script);
  color: var(--tan);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp .8s .2s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .4s ease forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--tan);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .8s .6s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 24px; opacity: .7; }

/* ============================================================
   FEATURED STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-dark);
  padding: 24px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,.1);
}
.stat-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tan);
  display: block;
}
.stat-label {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ============================================================
   FEATURED LOCATIONS
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.location-card.featured {
  grid-row: span 2;
  aspect-ratio: unset;
}

.location-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.location-card:hover .location-card-img { transform: scale(1.06); }

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,35,25,.9) 0%, rgba(20,35,25,.2) 50%, transparent 100%);
  transition: var(--transition);
}
.location-card:hover .location-card-overlay {
  background: linear-gradient(to top, rgba(20,35,25,.95) 0%, rgba(20,35,25,.4) 60%, rgba(20,35,25,.1) 100%);
}

.location-card-body {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 28px;
  color: #fff;
}

.location-type {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tan);
  display: block;
  margin-bottom: 6px;
}

.location-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}
.location-card.featured .location-card-title { font-size: 2rem; }

.location-card-excerpt {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
  margin-bottom: 16px;
  display: none;
}
.location-card:hover .location-card-excerpt { display: block; }

.location-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.location-card-meta span {
  font-family: var(--font-body);
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   EXPLORE CATEGORIES
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.cat-card:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cat-card:hover .cat-icon { background: rgba(255,255,255,.2); }
.cat-card:hover .cat-name { color: #fff; }
.cat-card:hover .cat-count { color: rgba(255,255,255,.7); }

.cat-icon {
  width: 64px; height: 64px;
  background: rgba(61,95,69,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.cat-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
  transition: var(--transition);
}
.cat-count {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--text-light);
  transition: var(--transition);
}

/* ============================================================
   EVENTS PREVIEW
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 20px; }

.event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.event-row:hover { border-color: var(--green); box-shadow: var(--shadow-md); }

.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 8px;
  min-width: 64px;
}
.event-date-badge .ev-month { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.event-date-badge .ev-day   { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }

.event-info {}
.event-cat { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tan); margin-bottom: 4px; }
.event-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--brown); margin-bottom: 6px; }
.event-title a { color: inherit; }
.event-title a:hover { color: var(--green); }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.event-meta span { font-family: var(--font-body); font-size: .85rem; color: var(--text-light); }

/* ============================================================
   BUSINESS DIRECTORY PREVIEW
   ============================================================ */
.biz-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.biz-preview-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.biz-preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--tan); }

.biz-card-img { height: 180px; background: var(--cream) center/cover no-repeat; }
.biz-card-body { padding: 20px; }
.biz-card-cat { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tan); margin-bottom: 6px; }
.biz-card-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--brown); margin-bottom: 8px; }
.biz-card-name a { color: inherit; }
.biz-card-name a:hover { color: var(--green); }
.biz-stars { color: #f5a623; font-size: .95rem; margin-bottom: 8px; }
.biz-card-info { font-family: var(--font-body); font-size: .85rem; color: var(--text-light); }

/* ============================================================
   ABOUT / INTRO BAND
   ============================================================ */
.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  text-align: center;
  border: 4px solid #fff;
}
.about-img-badge .badge-num { font-size: 1.8rem; font-weight: 700; color: var(--tan); line-height: 1; }
.about-img-badge .badge-text { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; line-height: 1.3; }

.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.about-feature-text strong { display: block; font-family: var(--font-display); color: var(--brown); margin-bottom: 2px; }
.about-feature-text p { font-size: .9rem; color: var(--text-light); margin: 0; }

/* ============================================================
   NATURE DIVIDER
   ============================================================ */
.nature-divider {
  position: relative;
  height: 400px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.nature-divider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,40,28,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.nature-divider-content .quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #fff;
  max-width: 700px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.nature-divider-content .quote-attr {
  font-family: var(--font-script);
  color: var(--tan);
  font-size: 1.2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--green-dark); color: rgba(255,255,255,.8); }

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo-main { font-family: var(--font-display); font-size: 1.8rem; color: #fff; display: block; margin-bottom: 4px; }
.footer-brand .logo-sub { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--tan); display: block; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--tan); color: #fff; }

.footer-widget h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 18px;
}
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul a { color: rgba(255,255,255,.65); font-size: .9rem; transition: var(--transition); }
.footer-widget ul a:hover { color: var(--tan); padding-left: 4px; }

.footer-contact p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.8; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--tan); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #0f2218 0%, #1a3326 45%, #243d2c 100%);
  padding: 140px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(200,169,110,.15) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 0%, rgba(45,106,79,.2) 0%, transparent 50%),
    url('https://gofentress.com/wp-content/uploads/2026/04/topo-pattern-scaled.jpg') center/cover;
  opacity: .18;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,.6) 30%, rgba(200,169,110,.8) 50%, rgba(200,169,110,.6) 70%, transparent);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  position: relative;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  letter-spacing: .01em;
}
.page-hero .breadcrumb { color: rgba(255,255,255,.45); font-size: .85rem; margin-top: 12px; position: relative; }
.page-hero .breadcrumb a { color: var(--tan); }

/* ============================================================
   CONTENT
   ============================================================ */
.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.entry-content h2 { font-size: 1.7rem; margin: 2rem 0 .75rem; color: var(--brown); }
.entry-content h3 { font-size: 1.3rem; margin: 1.5rem 0 .5rem; color: var(--brown); }
.entry-content p { margin-bottom: 1.2rem; }
.entry-content ul,
.entry-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.entry-content li { margin-bottom: .4rem; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.content-sidebar-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; padding: 60px 0; max-width: var(--max-width); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.sidebar { position: sticky; top: 100px; }
.widget { background: var(--cream); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; border: 1px solid var(--border); }
.widget-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--brown); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--tan); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .location-card.featured { grid-row: span 1; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-band { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--green-dark); padding: 20px; gap: 4px; }
  .main-nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; }
  .locations-grid { grid-template-columns: 1fr; }
  .biz-preview-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .event-row { grid-template-columns: 60px 1fr; }
  .event-row .btn { display: none; }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
.hero-topo {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url('https://gofentress.com/wp-content/uploads/2026/04/1589-scaled.jpg');
    background-size: 600px auto;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}