/* ============================================================
   MONEROMEET.COM — Global Monero Meetup Directory
   Community Meetup Aesthetic · Outfit + Inter
   ============================================================ */

:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --navy-mid: #162032;
  --orange: #FF6600;
  --orange-dim: #cc5200;
  --orange-glow: rgba(255, 102, 0, 0.12);
  --blue: #3B82F6;
  --blue-dim: rgba(59, 130, 246, 0.15);
  --blue-bright: #60A5FA;
  --gray-card: #F1F5F9;
  --gray-card-dark: #E2E8F0;
  --charcoal: #334155;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --white: #E2E8F0;
  --white-bright: #F8FAFC;
  --red: #EF4444;
  --green: #22C55E;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1140px;
  --nav-height: 60px;
  --radius: 8px;
  --radius-sm: 4px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--white);
  background: var(--navy);
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-bright); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
::selection { background: var(--orange); color: var(--navy); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white-bright);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 15px;
  color: var(--gray-light);
  max-width: 600px;
  margin-bottom: 40px;
}

.divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.nav.scrolled { border-bottom-color: rgba(255,255,255,0.06); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white-bright);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-logo .meet { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--orange); }

.lang-toggle {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: all var(--transition);
}

.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.98);
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav.active { display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--gray-light); }
.mobile-nav a:hover { color: var(--orange); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(59,130,246,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255,102,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  color: var(--white-bright);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-title .highlight { color: var(--orange); }

.hero-sub {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary:hover { background: var(--white-bright); color: var(--navy); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-secondary:hover { background: var(--blue-dim); border-color: var(--blue-bright); color: var(--white-bright); }

/* ============================================================
   FEATURED EVENTS
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.event-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.event-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,102,0,0.08);
}

.event-card-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.event-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white-bright);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.event-card-location {
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-card-desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.event-card-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.event-card-link:hover { gap: 10px; color: var(--white-bright); }

/* ============================================================
   DIRECTORY BY REGION
   ============================================================ */
.region-section { margin-bottom: 48px; }

.region-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white-bright);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.dir-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition);
}

.dir-card:hover { border-color: rgba(255,255,255,0.12); }

.dir-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white-bright);
  margin-bottom: 4px;
}

.dir-card-city {
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 8px;
}

.dir-card-freq {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

.dir-card-desc {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ============================================================
   SUBMIT EVENT CTA
   ============================================================ */
.submit-cta {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.submit-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.submit-cta-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white-bright);
  margin-bottom: 12px;
}

.submit-cta-desc {
  font-size: 15px;
  color: var(--gray-light);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ============================================================
   COMMUNITY RESOURCES
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.resource-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--transition);
}

.resource-card:hover { border-color: var(--blue); }

.resource-card-icon { font-size: 28px; margin-bottom: 12px; }

.resource-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white-bright);
  margin-bottom: 6px;
}

.resource-card-desc {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* Hardware wallet CTA */
.hw-cta {
  margin-top: 32px;
  background: var(--navy-light);
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hw-cta-text { font-size: 14px; color: var(--white); }
.hw-cta-text strong { color: var(--orange); }
.hw-cta-links { display: flex; gap: 12px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white-bright);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--orange); }
.faq-question .icon { font-size: 18px; color: var(--gray); transition: transform 0.3s ease, color 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding-bottom: 20px; font-size: 14px; color: var(--gray-light); line-height: 1.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white-bright); margin-bottom: 12px; }
.footer-brand-name .meet { color: var(--orange); }
.footer-brand-desc { font-size: 13px; color: var(--gray); line-height: 1.7; max-width: 280px; }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.footer-col a { display: block; font-size: 13px; color: var(--gray-light); margin-bottom: 10px; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: var(--gray); }
.footer-bottom a:hover { color: var(--orange); }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Affiliate bar */
.affiliate-bar {
  background: rgba(15,23,42,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 24px;
  text-align: center;
  font-size: 11px;
  color: var(--gray);
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero { padding: 110px 0 48px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.page-hero-title { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--white-bright); margin-bottom: 8px; }
.page-hero-sub { font-size: 15px; color: var(--gray-light); }

.page-content { max-width: 720px; margin: 0 auto; padding: 60px 24px; }
.page-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white-bright); margin: 40px 0 12px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 15px; color: var(--gray-light); line-height: 1.8; margin-bottom: 16px; }
.page-content ul { margin-bottom: 16px; }
.page-content ul li { font-size: 15px; color: var(--gray-light); line-height: 1.8; padding-left: 20px; position: relative; }
.page-content ul li::before { content: '▸'; position: absolute; left: 0; color: var(--orange); }
.page-content a { text-decoration: underline; }

/* Contact form */
.contact-form { max-width: 560px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-light); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; background: var(--navy-light); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); color: var(--white); font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); }
.form-error { font-size: 12px; color: var(--red); margin-top: 6px; display: none; }
.form-group.error .form-error { display: block; }
.form-group.error input, .form-group.error textarea { border-color: var(--red); }

/* Status pages */
.status-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.status-code { font-family: var(--font-display); font-size: 96px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 16px; }
.status-message { font-family: var(--font-display); font-size: 22px; color: var(--white-bright); margin-bottom: 12px; }
.status-desc { font-size: 15px; color: var(--gray); margin-bottom: 32px; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.blog-card { background: var(--navy-light); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 28px 24px; transition: border-color var(--transition); }
.blog-card:hover { border-color: var(--orange); }
.blog-card-tag { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 12px; }
.blog-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white-bright); margin-bottom: 8px; }
.blog-card-excerpt { font-size: 13px; color: var(--gray-light); line-height: 1.7; margin-bottom: 16px; }
.blog-card-meta { font-size: 12px; color: var(--gray); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .events-grid { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .submit-cta { padding: 32px 24px; }
  .hw-cta { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 28px; }
}
