/* RESET / BASE DARK THEME */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #111;
  color: #eee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ============================================================
   PURPLE STICKY COUNTDOWN BAR (RC‑GOLD)
   ============================================================ */

.sticky-countdown {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: navy; /* deep royal purple */
  color: #f5eaff;      /* soft lavender */
  padding: 0.6rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.sticky-countdown-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sticky-label {
  font-weight: 600;
  margin-right: 0.5rem;
  color: #e9d4ff; /* pale lilac */
}

.sticky-timer {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
}

/* PROGRESS BAR (PURPLE) */
.sticky-progress-container {
  width: 100%;
  height: 6px;
  background: #7d4bb8; /* medium purple */
  border-radius: 3px;
  margin-top: 0.4rem;
  overflow: hidden;
}

.sticky-progress {
  height: 100%;
  background: purple; /* bright accent purple */
  width: 100%;
  transition: width 1s linear;
}


/* SLIDE-IN ALERT PANEL */
.slide-panel {
  position: fixed;
  right: 0;
  bottom: 1rem;
  width: 320px;
  max-width: 90%;
  background: #222;
  color: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 900;
}

.slide-panel.open {
  transform: translateX(0);
}

.slide-panel-inner {
  padding: 1rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* MODAL POPUP */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: #222;
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
}

.btn-primary {
  background: #0074ff;
  color: #fff;
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
}

/* HEADER */
.mayor-header {
  background: #000;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nyc-logo svg {
  width: 70px;
  height: 28px;
}

.office-label {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.main-nav a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  margin-left: 1.5rem;
}

.main-nav a.active {
  color: #ffb81c;
}

.nav-controls {
  display: flex;
  gap: 0.75rem;
}

.lang-btn,
.menu-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  font-size: 0.85rem;
  cursor: pointer;
}

/* HERO */
.hero-dark {
  background: #222;
  padding: 1rem 1rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0 0 0.5rem 0;
  color: #fff;
}

.hero-subtitle {
  color: #ccc;
}

/* MAIN GRID */
.content-grid {
  max-width: 1120px;
  margin: 1rem auto;
  padding: 0 1rem 3rem 1rem;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* COUNTDOWN BOX */
.countdown-box {
  background: #1f1414;
  border: 1px solid #cc0000;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.countdown-label {
  font-size: 0.9rem;
  color: #ff9999;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.countdown-timer {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffcccc;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.progress-container {
  width: 100%;
  height: 10px;
  background: #4d1b1b;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #ff3333;
  width: 100%;
  transition: width 1s linear;
}

/* EXTRA COPY BLOCK */
.fundraising-extra p {
  margin: 0.6rem 0;
  font-size: 0.95rem;
  color: #eee;
}

/* MAYOR PHOTO */
.mayor-photo img {
  width: 100%;
  border-radius: 4px;
  margin: 1.5rem 0;
  object-fit: cover;
}

/* CARDS */
.card {
  background: #1b1b1b;
  padding: 1.75rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-top: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #aaa;
}

.card h2 {
  margin: 0.3rem 0 0.8rem 0;
  font-size: 1.4rem;
  color: #fff;
}

.card p {
  margin: 0 0 0.8rem 0;
  color: #ddd;
}

.card-link {
  font-weight: 600;
  color: #4da3ff;
  text-decoration: none;
}

/* NEWS / RIGHT COLUMN */
.section-title {
  font-size: 1.3rem;
  margin: 0 0 0.4rem 0;
  color: #fff;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 1rem;
}

.news-highlight {
  background: #222;
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
}

.news-highlight a {
  font-weight: 600;
  color: #4da3ff;
  text-decoration: none;
}

.news-highlight p {
  margin: 0.4rem 0 0 0;
  color: #ddd;
}

.see-all-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #4da3ff;
  text-decoration: none;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid #333;
}

.news-item-title {
  font-weight: 600;
  color: #eee;
}

.news-item-date {
  font-size: 0.85rem;
  color: #999;
}

/* ============================================================
   RC‑GOLD MONEY‑GREEN FX PACK — FULL CONSOLIDATED CSS
   ============================================================ */

.action-button-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 1.9rem 0;
}

.action-button {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 1.1rem 0;               /* matches countdown box height feel */
  border-radius: 6px;              /* same radius as countdown box */
  background: #0f7a32;             /* deep money green */
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}


/* ============================================================
   1. PULSE
   ============================================================ */
@keyframes pulseGlow {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulseGlow 2s infinite ease-in-out;
}

/* ============================================================
   2. GLOW (GREEN)
   ============================================================ */
.glow {
  box-shadow: 0 0 12px rgba(0, 255, 100, 0.6);
}

.glow:hover {
  box-shadow: 0 0 22px rgba(0, 255, 100, 1);
}

/* ============================================================
   3. NEON FLICKER (ATM GREEN)
   ============================================================ */
@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}

.flicker {
  animation: neonFlicker 3s infinite;
}

/* ============================================================
   4. SHIMMER (GREEN HOLOGRAPHIC)
   ============================================================ */
@keyframes shimmerSweep {
  0%   { background-position: -200%; }
  100% { background-position: 200%; }
}

.shimmer {
  background: linear-gradient(
    120deg,
    #0f7a32 0%,
    #3cff8a 20%,
    #0f7a32 40%,
    #0f7a32 100%
  );
  background-size: 200% auto;
  animation: shimmerSweep 3s linear infinite;
}

/* ============================================================
   5. BORDER SCAN (GREEN)
   ============================================================ */
@keyframes borderScan {
  0%   { box-shadow: 0 0 0 0 rgba(0,255,100,0.0); }
  50%  { box-shadow: 0 0 0 3px rgba(0,255,100,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,100,0.0); }
}

.scan {
  animation: borderScan 2.5s infinite ease-in-out;
}

/* ============================================================
   6. SOFT STROBE (GREEN)
   ============================================================ */
@keyframes softStrobe {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.25); }
  100% { filter: brightness(1); }
}

.strobe {
  animation: softStrobe 1.8s infinite ease-in-out;
}

/* ============================================================
   8. 3D PRESS‑DOWN (GREEN SHADOW)
   ============================================================ */
.press3d {
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 0 #064d1e;
}

.press3d:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #064d1e;
}

/* ============================================================
   9. HOVER RIPPLE (GREEN-TINTED)
   ============================================================ */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(200,255,200,0.35) 10%, transparent 70%);
  opacity: 0;
  transform: scale(0.2);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.ripple:hover::after {
  opacity: 1;
  transform: scale(1.6);
}

/* ============================================================
   10. LEVITATION FLOAT‑4
   ============================================================ */
@keyframes float4 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.float4 {
  animation: float4 3s ease-in-out infinite;
}


/* FOOTER */
.site-footer {
  background: #000;
  color: #eee;
  padding: 2rem 1rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.footer-column h4 {
  margin: 0 0 0.6rem 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.4rem;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1120px;
  margin: 1.5rem auto 0 auto;
  border-top: 1px solid #333;
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 0.85rem;
}
