/* ============================================================
   WINNIPEG HORROR CON — Shared Stylesheet
   ============================================================ */

/* ----- Custom Properties ----- */
:root {
  --bg:           #090909;
  --bg-card:      #131313;
  --bg-card-hover:#1c1c1c;
  --red:          #c0392b;
  --red-dark:     #922b21;
  --red-glow:     rgba(192, 57, 43, 0.18);
  --text:         #f0eded;
  --text-muted:   #888;
  --border:       #242424;
  --nav-h:        68px;
  --radius:       5px;
  --ease:         0.22s ease;
  --font-display: 'Cinzel', serif;
  --font-body:    'Inter', sans-serif;
  --max-w:        1160px;
  --logo-bg:      #4a4a4a;
  --white:        #fff;
  --bg-footer:    #060606;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----- Skip Link ----- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--red);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: 0.04em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); }

/* ----- Layout ----- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }

/* ----- Utility ----- */
.text-center { text-align: center; }
.text-red    { color: var(--red); }
.text-muted  { color: var(--text-muted); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: 0.05em;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 1rem auto 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--red-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ----- Notice Banner ----- */
.notice-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  font-weight: 500;
}
.notice-banner a {
  text-decoration: underline;
  color: var(--white);
  font-weight: 700;
}

/* ----- Navigation ----- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(9, 9, 9, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links .btn-ticket {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--ease);
}
.nav-links .btn-ticket:hover { background: var(--red-dark); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.55rem 0.75rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

/* ----- Hero (Homepage) ----- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,9,0.5)  0%,
    rgba(9,9,9,0.65) 50%,
    rgba(9,9,9,1)    100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem 3rem;
  max-width: 860px;
  width: 100%;
}
.hero-logo {
  height: 300px;
  width: auto;
  max-width: min(340px, 90%);
  margin: 0 auto 1.75rem;
  display: block;
  border-radius: var(--radius);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  margin-bottom: 0.3rem;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.hero-meta-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-meta-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.hero-vr {
  width: 1px;
  height: 38px;
  background: var(--border);
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ----- Event Summary Bar ----- */
.event-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.event-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.event-bar-item {}
.event-bar-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.event-bar-value {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

/* ----- About Section ----- */
.about-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-intro p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ----- Guest Cards ----- */
.guests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.guest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.guest-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 36px var(--red-glow);
}
.guest-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.guest-card-body { padding: 1.25rem; }
.guest-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.guest-role {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}
.guest-bio {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.guest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}
.tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  background: rgba(192, 57, 43, 0.12);
  color: var(--red);
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ----- Exhibitor Cards ----- */
.exhibitors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 1.25rem;
}
.exhibitor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.exhibitor-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 22px var(--red-glow);
}
.exhibitor-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.exhibitor-card-body { padding: 1rem 1.1rem; }
.exhibitor-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.exhibitor-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- Sponsors Grid ----- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  align-items: center;
}
.sponsor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: border-color var(--ease), background var(--ease);
}
.sponsor-card:hover {
  border-color: var(--red);
  background: var(--bg-card-hover);
}
.sponsor-card img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  filter: none;
  background: var(--logo-bg);
  border-radius: calc(var(--radius) - 1px);
  transition: opacity var(--ease);
}
.sponsor-card:hover img {
  opacity: 1;
}
.sponsors-wide-pair {
  grid-column: 1 / -1;
  display: flex;
  gap: 1rem;
}
.sponsor-card--wide {
  aspect-ratio: 3/1;
  flex: 1;
}

/* ----- Vendors CTA Block ----- */
.vendors-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.vendors-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.vendors-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3.25rem;
  text-align: center;
}
.page-hero .section-label { margin-bottom: 0.5rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.06em;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 1rem auto 0;
}

/* ----- Info Grid (FAQ page) ----- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.info-card-value {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
.info-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ----- FAQ Items ----- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.faq-a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-a a { color: var(--red); text-decoration: underline; }

/* ----- Become a Sponsor CTA ----- */
.sponsor-cta {
  text-align: center;
  background: var(--red);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  max-width: 680px;
  margin: 3rem auto 0;
}
.sponsor-cta .sponsor-cta-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.sponsor-cta h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.sponsor-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
  margin-bottom: 1.75rem;
  line-height: 1.8;
}
.sponsor-cta .btn {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}
.sponsor-cta .btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* ----- Footer ----- */
footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--text); }
.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color var(--ease), color var(--ease);
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(9,9,9,0.98);
    padding: 1.5rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open .btn-ticket {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
  }
  .hero-vr { display: none; }
  .hero-meta { gap: 1.25rem; }
  .hero-logo { height: 200px; max-width: 80%; }
  section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .guests-grid { grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); }
  .vendors-block, .sponsor-cta { padding: 2rem 1.5rem; }
}
@media (max-width: 560px) {
  .sponsors-wide-pair { flex-direction: column; }
  .sponsor-card--wide { aspect-ratio: 2/1; }
  .sponsor-cta .btn { white-space: normal; max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .event-bar-inner { gap: 1.5rem; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Mailto Toast ----- */
.mailto-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
  max-width: calc(100vw - 2rem);
  white-space: nowrap;
  animation: mailto-toast-in 0.2s ease;
}
@keyframes mailto-toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(0.5rem); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.mailto-toast strong {
  color: var(--red);
}
.mailto-toast-copy {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--ease);
}
.mailto-toast-copy:hover {
  background: var(--red-dark);
}
.mailto-toast-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.1rem;
  transition: var(--ease);
}
.mailto-toast-close:hover {
  color: var(--text);
}
