/* NWBCC Shared Styles - Mobile First */
:root {
  --warm-cream: #FDF6E3;
  --cork-light: #D4B896;
  --buffalo-blue: #1D5EA7;
  --dark-blue: #0D3A6B;
  --logo-green: #01A468;
  --light-green: #7FDBBA;
  --sunset-orange: #E8683F;
  --friendly-yellow: #F9C846;
  --text-dark: #2D2A26;
  --text-soft: #5C564E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; }

body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
  background: var(--warm-cream); 
  color: var(--text-dark); 
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--buffalo-blue); }

/* ============ HEADER - Mobile First ============ */
header {
  background: linear-gradient(135deg, var(--buffalo-blue) 0%, var(--dark-blue) 100%);
  color: white;
  padding: 1rem;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-area img {
  height: 50px;
  background: white;
  border-radius: 6px;
  padding: 3px;
}

.logo-area h1 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--light-green);
}

.quick-info {
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.quick-info a {
  color: var(--light-green);
  text-decoration: none;
  font-weight: 600;
}

/* Desktop header */
@media (min-width: 768px) {
  header { padding: 1rem 2rem; }
  .header-content { flex-direction: row; justify-content: space-between; align-items: center; }
  .logo-area img { height: 70px; }
  .logo-area h1 { font-size: 1.5rem; }
  .tagline { font-size: 1.4rem; }
  .quick-info { flex-direction: column; text-align: right; font-size: 0.95rem; }
}

/* ============ NAVIGATION - Mobile First ============ */
nav {
  background: white;
  border-bottom: 3px solid var(--buffalo-blue);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  display: block;
  padding: 0.875rem 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

nav a:hover, nav a.active {
  background: var(--warm-cream);
  color: var(--buffalo-blue);
}

/* Hide dropdown on mobile - show all links */
.nav-dropdown-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-dropdown-content a {
  font-size: 0.85rem;
}

/* Desktop navigation with dropdown */
@media (min-width: 768px) {
  nav a { padding: 1rem 1.25rem; font-size: 1rem; border-bottom: 3px solid transparent; margin-bottom: -3px; }
  nav a:hover, nav a.active { border-bottom-color: var(--sunset-orange); }
  
  .nav-dropdown { position: relative; }
  .nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
  .nav-dropdown-content { 
    display: none; 
    position: absolute; 
    top: calc(100% + 3px); 
    left: 0; 
    flex-direction: column;
    background: white; 
    min-width: 220px; 
    box-shadow: 0 4px 16px rgba(0,0,0,0.15); 
    border-radius: 0 0 8px 8px; 
    border-top: 3px solid var(--sunset-orange);
  }
  .nav-dropdown:hover .nav-dropdown-content { display: flex; }
  .nav-dropdown-content a { padding: 0.875rem 1.25rem; border-bottom: 1px solid #eee; }
  .nav-dropdown-content a:last-child { border-bottom: none; }
}

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.4) 20%,
    rgba(0,0,0,0.75) 60%,
    rgba(0,0,0,0.9) 100%);
  color: white;
}

.page-hero-overlay h1 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
}

@media (min-width: 768px) {
  .page-hero { height: 300px; }
  .page-hero-overlay { padding: 2rem; }
  .page-hero-overlay h1 { font-size: 3rem; }
}

/* ============ MAIN CONTENT ============ */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
  main { padding: 2rem; }
}

/* Content Grid - stacks on mobile */
.content-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
  }
}

/* Main content area */
.main-content h2 {
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  color: var(--buffalo-blue);
  margin: 1.5rem 0 0.75rem;
}

.main-content h2:first-child { margin-top: 0; }

.main-content p { margin-bottom: 1rem; font-size: 1rem; }

.main-content ul {
  margin: 1rem 0 1rem 1.25rem;
}

.main-content li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Sidebar */
.sidebar {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--sunset-orange);
  margin-bottom: 1rem;
}

.sidebar-item {
  padding: 0.875rem 0;
  border-bottom: 1px solid #eee;
}

.sidebar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.sidebar-value {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.sidebar-value a {
  color: var(--buffalo-blue);
  text-decoration: none;
  /* Large tap target */
  display: inline-block;
  padding: 0.25rem 0;
}

/* Location boxes */
.location-box {
  background: var(--cork-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.location-box h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.location-box p {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

/* Highlight box */
.highlight-box {
  background: var(--logo-green);
  color: white;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.25rem;
}

.highlight-box h4 {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* Confidential notice */
.confidential-notice {
  background: var(--buffalo-blue);
  color: white;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.25rem;
  text-align: center;
}

.confidential-notice h4 {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* Feature images */
.feature-image {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.feature-image img {
  width: 100%;
  height: auto;
}

.feature-image figcaption {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--text-soft);
  text-align: center;
  padding: 0.75rem;
}

/* Intro text */
.intro-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-soft);
  border-left: 4px solid var(--logo-green);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

/* Location cards grid */
.location-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 600px) {
  .location-cards { grid-template-columns: repeat(2, 1fr); }
}

.location-card {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-top: 4px solid var(--buffalo-blue);
}

.location-card h3 {
  color: var(--buffalo-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.location-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
}

/* ============ ABOUT PAGE SPECIFICS ============ */
.mission-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  border-left: 5px solid var(--logo-green);
}

.mission-box h2 {
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  color: var(--buffalo-blue);
  margin-bottom: 0.75rem;
}

.mission-box p { font-size: 1.05rem; }

h2.section-title {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--buffalo-blue);
  text-align: center;
  margin: 2rem 0 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 500px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
  color: var(--sunset-orange);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* Board section */
.board-section {
  background: var(--cork-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.board-section h2 {
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  text-align: center;
}

.officers-table {
  width: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.officers-table th, .officers-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.officers-table th {
  background: var(--buffalo-blue);
  color: white;
  font-weight: 600;
}

.officers-table tr:last-child td { border-bottom: none; }

.members-list {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
}

.members-list h3 {
  margin-bottom: 1rem;
  color: var(--buffalo-blue);
  font-size: 1.1rem;
}

.members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 500px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
}

.members-grid span {
  padding: 0.5rem 0.75rem;
  background: var(--warm-cream);
  border-radius: 4px;
  font-size: 0.95rem;
}

/* ============ FOOTER ============ */
footer {
  background: var(--text-dark);
  color: white;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  footer { padding: 2rem; }
  .footer-content { grid-template-columns: repeat(3, 1fr); }
}

.footer-section h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--light-green);
}

.footer-section p, .footer-section a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-section a:hover { color: var(--light-green); }

.footer-simple {
  text-align: center;
  font-size: 0.95rem;
}

.footer-simple a {
  color: var(--light-green);
  display: inline;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* GM Associates footer link - keep color on visited */
footer .footer-bottom a,
footer .footer-bottom a:visited,
footer .footer-bottom a:hover,
footer .footer-bottom a:active {
  color: #7FDBBA;
  text-decoration: none;
}

/* ============ PHOTO GALLERY ============ */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .photo-gallery { grid-template-columns: repeat(4, 1fr); }
}

.photo-gallery figure {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 0;
}

.photo-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

@media (min-width: 600px) {
  .photo-gallery img { height: 180px; }
}

.photo-gallery figcaption {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--text-soft);
  text-align: center;
  padding: 0.5rem;
  background: white;
}

/* ============ HOME PAGE SPECIFICS ============ */
/* Hero Banner */
.hero-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1.5rem;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.3) 20%,
    rgba(0,0,0,0.7) 60%,
    rgba(0,0,0,0.85) 100%);
  color: white;
}

.hero-overlay h2 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.hero-overlay p {
  font-size: 1.05rem;
  max-width: 600px;
  opacity: 0.95;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

@media (min-width: 768px) {
  .hero-banner { height: 400px; }
  .hero-overlay { padding: 3rem 2rem 2rem; }
  .hero-overlay h2 { font-size: 3rem; }
  .hero-overlay p { font-size: 1.2rem; }
}

/* Polaroid Row */
.polaroid-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  padding: 0 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .polaroid-row {
    gap: 1.5rem;
    margin-top: -60px;
    padding: 0 2rem;
  }
}

.polaroid,
a.polaroid {
  background: white;
  padding: 0.5rem 0.5rem 2rem 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid:nth-child(2) { transform: rotate(2deg); }
.polaroid:nth-child(3) { transform: rotate(-2deg); }
.polaroid:nth-child(4) { transform: rotate(3deg); }

.polaroid:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 20;
}

.polaroid img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .polaroid img {
    width: 160px;
    height: 120px;
  }
}

.polaroid-caption {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 0.5rem;
  color: var(--text-soft);
}

/* Announcement Banner */
.announcement {
  background: var(--friendly-yellow);
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 3px dashed var(--cork-brown);
  margin-top: 2rem;
  text-decoration: none;
  display: block;
}

@media (min-width: 768px) {
  .announcement { padding: 0.75rem 2rem; }
}

.announcement span {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  margin-right: 0.5rem;
}

/* Home Main Content Area */
main.home-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
  main.home-main { padding: 2rem; }
}

/* What's Happening Section */
.whats-happening {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .whats-happening {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.this-week {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 5px solid var(--sunset-orange);
}

.this-week h2 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--sunset-orange);
  margin-bottom: 1rem;
}

.event-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.event-item:last-child { border-bottom: none; }

.event-day {
  font-weight: 700;
  color: var(--buffalo-blue);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.event-name {
  font-size: 1.1rem;
  margin: 0.25rem 0;
}

.event-time {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.event-item.special-event {
  background: linear-gradient(135deg, #FFF9E6, #FFF3CC);
  margin: 0.5rem -1rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--friendly-yellow);
  border-radius: 0 4px 4px 0;
}

/* Locations Quick View */
.locations-quick {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.locations-quick h2 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--buffalo-blue);
  margin-bottom: 1rem;
}

.location-item {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.location-item:last-child { border-bottom: none; }

.location-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.location-address {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.location-phone {
  color: var(--buffalo-blue);
  font-weight: 600;
}

/* Featured Docs Section */
.featured-docs {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .featured-docs { margin-bottom: 3rem; }
}

.featured-docs h2 {
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1.25rem;
  color: var(--buffalo-blue);
}

@media (min-width: 768px) {
  .featured-docs h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.featured-docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .featured-docs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.featured-doc-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.featured-doc-card h3 {
  font-size: 1.1rem;
  color: var(--sunset-orange);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .featured-doc-card h3 { font-size: 1.2rem; }
}

.featured-doc-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.featured-doc-card p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.featured-doc-card a {
  color: inherit;
  text-decoration: none;
}

.doc-fallback {
  display: none;
  padding: 2.5rem 1rem;
  background: var(--warm-cream);
  border-radius: 4px;
  border: 2px dashed var(--buffalo-blue);
}

@media (min-width: 768px) {
  .doc-fallback { padding: 3rem 1rem; }
}

.doc-fallback p:first-child {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .doc-fallback p:first-child { font-size: 1.1rem; }
}

.doc-fallback p:last-child {
  font-size: 0.85rem;
  color: var(--text-soft);
}

@media (min-width: 768px) {
  .doc-fallback p:last-child { font-size: 0.9rem; }
}

/* Programs Grid */
.programs {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .programs { margin-bottom: 3rem; }
}

.programs h2 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.25rem;
  color: var(--buffalo-blue);
}

@media (min-width: 768px) {
  .programs h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

.programs-grid {
  background: var(--cork-light);
  border-radius: 8px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
}

@media (min-width: 500px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .programs-grid {
    padding: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

.program-card,
a.program-card {
  background: white;
  padding: 1.25rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}

.program-card.featured::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--sunset-orange);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.program-card:hover {
  transform: translateY(-3px);
}

.program-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--buffalo-blue);
}

.program-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.program-card .who {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--sunset-orange);
  margin-top: 0.5rem;
}

/* Partners Section on Home */
.partners-section {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .partners-section { margin-bottom: 3rem; }
}

.partners-section h2 {
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-soft);
}

@media (min-width: 768px) {
  .partners-section h2 { font-size: 2rem; }
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .partners-grid { gap: 1rem; }
}

.partner-card {
  background: white;
  padding: 0.875rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .partner-card {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

.partner-card span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .partner-card span { font-size: 0.85rem; }
}

/* CTA Get Help Section */
.get-help {
  background: linear-gradient(135deg, var(--buffalo-blue) 0%, var(--dark-blue) 100%);
  color: white;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .get-help {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
}

.get-help h2 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .get-help h2 { font-size: 2.5rem; }
}

.get-help p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .get-help p { font-size: 1.1rem; }
}

.help-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .help-options { gap: 1rem; }
}

.help-btn {
  background: var(--logo-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
  display: inline-block;
}

.help-btn:hover {
  transform: scale(1.05);
}

.help-btn.secondary {
  background: transparent;
  border: 2px solid white;
}

/* Footer badge links */
.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-badge {
  background: rgba(255,255,255,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* ============ LOCATIONS PAGE PARTNER LINKS ============ */
.partner-item h4 a {
  color: var(--buffalo-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.partner-item h4 a:hover {
  color: var(--sunset-orange);
  text-decoration: underline;
}
