/* ============================================================
   gayhamptonroads.com — style.css
   "Neon at the oceanfront"
   True neutral dark · neon magenta + cyan · Bricolage Grotesque
   ============================================================ */

:root {
  /* neutral dark — no color cast */
  --bg:             #0C0C0E;
  --surface:        #141417;
  --surface-2:      #1B1B20;
  --border:         rgba(255, 255, 255, 0.08);
  --border-hover:   rgba(255, 255, 255, 0.18);

  --text-primary:   #F4F4F6;
  --text-secondary: #9A9AA6;
  --text-muted:     #5C5C68;

  /* neon signage */
  --neon-pink:      #FF3DBE;
  --neon-cyan:      #2EE6D6;
  --grad:           linear-gradient(90deg, #FF3DBE 0%, #B44FE8 50%, #2EE6D6 100%);

  --accent:         var(--neon-pink);
  --accent-hover:   #E520A4;
  --accent-light:   rgba(255, 61, 190, 0.1);
  --accent-border:  rgba(255, 61, 190, 0.3);

  --glow-pink:      0 0 12px rgba(255, 61, 190, 0.55), 0 0 32px rgba(255, 61, 190, 0.25);
  --glow-cyan:      0 0 12px rgba(46, 230, 214, 0.5);

  /* tags */
  --tag-bg:         rgba(255, 61, 190, 0.12);
  --tag-text:       #FF8AD6;

  /* crisis */
  --crisis-bg:      rgba(255, 61, 190, 0.07);
  --crisis-border:  rgba(255, 61, 190, 0.22);
  --crisis-accent:  #FF6EC7;

  --font-mono:    'Space Mono', monospace;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w:        760px;
}

/* --- reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
    90deg,
    #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787
  ) 1;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* the signature — wordmark as a neon sign */
.site-logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  transition: text-shadow 0.3s;
}
.site-logo:hover {
  text-shadow:
    0 0 16px rgba(255, 61, 190, 0.8),
    0 0 48px rgba(255, 61, 190, 0.4);
}

/* subtle neon flicker on load — one-time, respects reduced motion */
@keyframes neon-flicker {
  0%, 100%       { opacity: 1; }
  3%             { opacity: 0.6; }
  6%             { opacity: 1; }
  9%             { opacity: 0.75; }
  11%            { opacity: 1; }
}
.site-logo { animation: neon-flicker 2.4s ease-in-out 1; }
@media (prefers-reduced-motion: reduce) {
  .site-logo { animation: none; }
}

.site-nav {
  display: flex;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent 100%);
}
.site-nav::-webkit-scrollbar { display: none; }

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover  { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--neon-pink); background: var(--accent-light); }
.nav-link.coming { color: var(--text-muted); font-style: italic; }

/* keyboard focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   MAIN
   ============================================================ */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid var(--border-hover);
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.btn:hover { background: rgba(255,255,255,0.09); }
.btn-primary {
  background: var(--accent);
  color: #0C0C0E;
  border-color: var(--accent);
  font-weight: 600;
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

/* ============================================================
   HOME
   ============================================================ */
.home-hero { margin-bottom: 3rem; }

.home-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.home-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  max-width: 540px;
}
.home-actions { display: flex; gap: 10px; margin-top: 2rem; flex-wrap: wrap; }

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.25rem;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
/* neon edge on hover — like a sign turning on */
.section-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.25s;
}
.section-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.section-card:hover::after { opacity: 1; }

.section-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}
.section-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.section-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header { margin-bottom: 2.5rem; }
.page-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--text-primary);
}
/* neon underline — short bar of light under every page title */
.page-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 12px;
  border-radius: 2px;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(255, 61, 190, 0.45);
}
.page-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   VENUE CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-hover); }

.card-city {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-bottom: 5px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--tag-bg);
  color: var(--tag-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.meta-item  { display: flex; flex-direction: column; gap: 2px; }
.meta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.meta-value { font-size: 13px; font-weight: 500; color: var(--text-primary); }

.card-links { display: flex; gap: 14px; margin-top: 12px; }
.card-link  { font-size: 13px; font-weight: 500; color: var(--accent); text-decoration: none; }
.card-link:hover { text-decoration: underline; }

/* ============================================================
   RESOURCES
   ============================================================ */
.res-section { margin-bottom: 2.5rem; }
.res-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.res-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.2s;
}
.res-card:hover { border-color: var(--border-hover); }
.res-card .card-title { font-size: 16px; }
.res-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}
.res-link:hover { text-decoration: underline; }

/* ============================================================
   CRISIS
   ============================================================ */
.crisis-section { margin-top: 1rem; }
.crisis-card {
  background: var(--crisis-bg);
  border: 1px solid var(--crisis-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.crisis-number {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--crisis-accent);
  text-shadow: 0 0 14px rgba(255, 110, 199, 0.45);
  margin-bottom: 8px;
}
.crisis-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.crisis-desc strong { color: var(--text-primary); }
.crisis-sub {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-top: 10px;
  border-top: 1px solid var(--crisis-border);
}
.crisis-sub strong { color: var(--text-primary); }

/* ============================================================
   COMING SOON
   ============================================================ */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem;
}
.coming-soon-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 1.25rem;
}
.coming-soon-headline {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.coming-soon-body {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 380px;
  line-height: 1.75;
}

/* ============================================================
   BLOG
   ============================================================ */
.post-card {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.post-sep { opacity: 0.4; }
.post-cat { color: var(--neon-cyan); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 10px; }
.post-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.post-title a { color: inherit; text-decoration: none; }
.post-title a:hover { color: var(--accent); }
.post-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 640px;
}
.post-body a { color: var(--accent); text-decoration: none; }
.post-body a:hover { text-decoration: underline; }
.post-sig {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 1.5rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   SITEMAP
   ============================================================ */
.sitemap-xml-note { font-size: 13px; color: var(--text-muted); margin-bottom: 2rem; }
.sitemap-xml-link {
  color: var(--neon-cyan);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
}
.sitemap-xml-link:hover { text-decoration: underline; }

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.5rem 2rem;
}
.sitemap-section h2 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.sitemap-list { list-style: none; padding: 0; margin: 0; }
.sitemap-list li { margin-bottom: 0.6rem; }
.sitemap-list a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}
.sitemap-list a:hover { color: var(--accent); }
.sitemap-soon { font-size: 14px; color: var(--text-muted); }
.sitemap-soon em { font-style: italic; font-size: 12px; }

/* ============================================================
   PROSE (about / legal)
   ============================================================ */
.prose { max-width: 640px; }
.prose p  { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 1rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 0.5rem;
}
.prose ul, .prose ol { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.25rem; }
.prose a  { color: var(--accent); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose .meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin-bottom: 2rem; display: block; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 640px;
  min-height: 120px;
}
.form-wrap iframe { width: 100% !important; border: none !important; display: block; }
.form-placeholder { padding: 2.5rem; font-size: 14px; color: var(--text-muted); }
.form-note {
  margin-top: 1rem;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 640px;
}
.form-note a { color: var(--accent); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }
.form-rights { margin-top: 0.5rem; opacity: 0.8; }

/* contact form card — header + embedded jotform */
.contact-form-card {
  padding: 1.75rem 1.75rem 0.5rem;
}
.form-card-header { margin-bottom: 1.5rem; }
.form-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-copy {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* jotform iframe shell — dark card, no white flash while loading */
.jotform-frame-shell {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 -1.75rem;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.jotform-frame-shell iframe {
  width: 100%;
  min-height: 640px;
  border: none;
  display: block;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  z-index: 500;
  padding: 1rem 1.5rem;
}
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { font-size: 14px; color: var(--text-secondary); flex: 1; min-width: 200px; }
.cookie-link { color: var(--accent); text-decoration: none; }
.cookie-link:hover { text-decoration: underline; }
.cookie-actions { display: flex; flex-shrink: 0; }
.cookie-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.cookie-btn--accept { background: var(--accent); color: #0C0C0E; }
.cookie-btn--accept:hover { background: var(--accent-hover); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #08080A;
  padding: 0 1.5rem 1.25rem;
}
.footer-hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787
  );
  opacity: 0.5;
  margin: 0 -1.5rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.25rem;
}
.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 2px 12px;
  transition: color 0.15s;
}
.footer-link:first-child { padding-left: 0; }
.footer-link:hover { color: var(--text-secondary); }
.footer-icons { display: flex; gap: 8px; flex-shrink: 0; }
.footer-icon-link {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.15s, border-color 0.15s, box-shadow 0.2s;
}
.footer-icon-link:hover {
  color: var(--neon-pink);
  border-color: var(--accent-border);
  box-shadow: 0 0 10px rgba(255, 61, 190, 0.25);
}
.footer-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.footer-bottom { padding: 0.9rem 0 0; }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .home-headline { font-size: 2.1rem; }
  .page-title    { font-size: 1.7rem; }
  .site-logo     { font-size: 14px; }
  .nav-link      { padding: 7px 9px; font-size: 12px; }
  .res-card      { flex-direction: column; gap: 8px; }
  .card-meta     { gap: 1rem; }
  .coming-soon   { padding: 4rem 1.5rem; }
  .coming-soon-headline { font-size: 1.8rem; }
  .footer-top    { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .cookie-inner  { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
