/* fake_region/styles.css — mobile-first */

/* === SATIRE HEADER BANNER === */
.satire-banner {
  background: repeating-linear-gradient(
    45deg,
    #000,
    #000 10px,
    #FFD700 10px,
    #FFD700 20px
  );
  color: #000;
  font-weight: 900;
  font-size: 0.85rem;
  text-align: center;
  padding: 6px 12px;
  letter-spacing: 0.05em;
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 420px;
  }
}

.hero-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
}

.hero-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

/* === STORE CARDS === */
.fake-store-card {
  border: 2px dashed #28a745;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f8fff8;
}

.fake-store-card .store-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #155724;
}

/* === BRAND CARDS === */
.fake-brand-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  height: 100%;
}

/* === PRODUCT CARDS === */
.fake-product-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}

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

.product-thc-badge {
  background: #198754;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 99px;
}

/* === EVENTS === */
.fake-event-card {
  border-left: 4px solid #0d6efd;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f0f4ff;
  border-radius: 0 8px 8px 0;
}

.event-date {
  font-weight: 700;
  color: #0d6efd;
}

/* === CTA / ADVOCACY SECTION === */
.advocacy-section {
  background: #212529;
  color: #fff;
  padding: 2rem 1rem;
  border-top: 4px solid #198754;
}

.advocacy-section h2 {
  color: #28a745;
  font-weight: 700;
}

.advocacy-group-card {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.senator-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* === LINK RINGS === */
.link-ring-section {
  padding: 2rem 1rem;
  background: #f8f9fa;
}

.link-ring-section.free-states {
  background: #e8f5e9;
  border-top: 3px solid #28a745;
}

.link-ring-divider {
  border-top: 2px dashed #ccc;
  margin: 1.5rem 0;
}

/* === FOOTER === */
.fake-footer {
  background: #343a40;
  color: #adb5bd;
  padding: 2rem 1rem;
  font-size: 0.875rem;
}

.fake-footer .satire-note {
  color: #FFD700;
  font-weight: 700;
}

/* === AGE GATE (same as regional_v2) === */
#ageVerifyOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9998;
}

#ageVerifyDiv {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  z-index: 9999;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* === MAP === */
#cardsMap {
  width: 100%;
  min-height: 300px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

@media (min-width: 768px) {
  #cardsMap {
    min-height: 500px;
  }
}

/* === UTILITIES === */
.tinyLogo {
  max-height: 40px;
  width: auto;
}

.styled-link {
  color: #198754;
  text-decoration: none;
}

.styled-link:hover {
  text-decoration: underline;
}


