@font-face {
  font-family: 'Phantom Sans';
  src:
    url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Regular.woff')
      format('woff'),
    url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Regular.woff2')
      format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Phantom Sans';
  src:
    url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Italic.woff')
      format('woff'),
    url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Italic.woff2')
      format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Phantom Sans';
  src:
    url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Bold.woff')
      format('woff'),
    url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Bold.woff2')
      format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --bp-lighter: #344b6a;
  --bp-dark: #0e305b;
  --bp-darker: #081c35;
  --bp-light: #dbe4ee;
  --bp-danger: #fe8e86;
  --bp-warning: #ffc857;
  --bp-success: #a8f0ae;
  --font-content: "Phantom Sans", "Poppins", sans-serif;
  --font-heading: "Poppins", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bp-dark);
  color: white;
  font-family: var(--font-content);
  overscroll-behavior: none;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  padding: 8px 24px;
  transition: background-color 0.15s, color 0.15s, transform 0.12s, box-shadow 0.12s;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;
  border-radius: 0;
  letter-spacing: 0.01em;
}

.btn:focus, .btn:hover {
  transform: scale(1.03);
}

.btn-primary {
  border: 2px solid white;
  background: white;
  color: #1a1a2e;
}

.btn-primary:hover {
  background: var(--bp-light);
  border-color: var(--bp-light);
}

.btn-outline {
  border: 2px solid white;
  background: transparent;
  color: white;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

nav {
  background: var(--bp-darker);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--bp-dark);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.25);
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
  background: var(--bp-lighter);
  color: white;
}

.nav-links .active {
  border: 2px solid white;
  background: var(--bp-dark);
}

.nav-cta {
  border: 2px solid white !important;
  background: transparent !important;
  color: white !important;
  padding: 5px 16px !important;
  font-size: 14px !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.1) !important;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
}

.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}

.hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 6px;
}

.hero-subtitle {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  color: var(--bp-warning);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 400;
}

.hero p strong {
  color: white;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-actions .btn {
  font-size: 16px;
  padding: 10px 28px;
}

.date-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.15);
  background: var(--bp-darker);
}

.date-cell {
  padding: 14px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.date-cell:last-child {
  border-right: none;
}

.date-cell-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}

.date-cell-value {
  font-size: 15px;
  font-weight: 800;
  color: white;
}

.date-cell-value.warn {
  color: var(--bp-warning);
}

@media (max-width: 560px) {
  .date-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex: 1 1 50%;
  }
}

.section {
  padding: 72px 24px;
}

.section.darker {
  background: var(--bp-darker);
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bp-warning);
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 12px;
}

.section-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 48px;
  border: 2px solid rgba(255,255,255,0.12);
}

.ov-card {
  background: var(--bp-darker);
  padding: 28px 24px;
  transition: background 0.15s;
  border: 1px solid rgba(255,255,255,0.06);
}

.ov-card:hover {
  background: var(--bp-lighter);
}

.ov-icon {
  font-size: 16px;
  font-weight: 800;
  color: var(--bp-warning);
  margin-bottom: 14px;
  display: block;
}

.ov-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  font-weight: 400;
}

.agenda {
  margin-top: 48px;
}

.ag-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ag-item:last-child {
  border-bottom: none;
}

.ag-time {
  font-size: 12px;
  font-weight: 800;
  color: var(--bp-warning);
  min-width: 76px;
  padding-top: 2px;
  font-family: "SF Mono", "Roboto Mono", monospace;
  letter-spacing: 0.04em;
}

.ag-line {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.ag-line::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  position: absolute;
  top: 4px;
  left: -4px;
  transition: background 0.15s, border-color 0.15s;
}

.ag-item:hover .ag-line::before {
  background: var(--bp-warning);
  border-color: var(--bp-warning);
}

.ag-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}

.ag-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  font-weight: 400;
}

.rsvp-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

@media (max-width: 720px) {
  .rsvp-layout { grid-template-columns: 1fr; }
}

.rsvp-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.rsvp-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.65;
  font-weight: 400;
}

.perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.perk-mark {
  width: 6px;
  height: 6px;
  background: var(--bp-warning);
  flex-shrink: 0;
}

.rsvp-box {
  background: var(--bp-darker);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 32px;
  text-align: center;
}

.rsvp-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
}

.rsvp-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  line-height: 1.6;
  font-weight: 400;
}

.rsvp-note {
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
}

/* ===== SPONSORS SECTION ===== */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.sponsor-card {
  background: var(--bp-darker);
  border: 2px solid rgba(255,255,255,0.12);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all 0.15s;
}

.sponsor-card:hover {
  background: var(--bp-lighter);
  border-color: var(--bp-warning);
  transform: translateY(-4px);
}

.sponsor-logo-img {
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
}

.sponsor-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: opacity 0.2s;
}

.sponsor-logo-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/click-arrow.png');
  background-size: 80px 80px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.sponsor-card:hover .sponsor-logo-img img {
  opacity: 0.25;
}

.sponsor-card:hover .sponsor-logo-img::after {
  opacity: 1;
}

.sponsor-name {
  font-size: 16px;
  font-weight: 800;
  color: white;
}

.sponsor-name a {
  color: white;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.15s;
}

.sponsor-name a:hover {
  color: var(--bp-warning);
}

/* ===== ORGANIZERS SECTION (VERTICAL COLUMN) ===== */
#organizers {
  padding: 96px 24px;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

#organizers .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 48px;
  border: 2px solid rgba(255,255,255,0.12);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.org-card {
  background: var(--bp-darker);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: background 0.15s;
  min-height: 380px;
  justify-content: center;
}

.org-card:hover {
  background: var(--bp-lighter);
}

.org-pfp {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bp-warning), var(--bp-danger));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--bp-darker);
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.15);
}

.org-pfp img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
}

.org-name {
  font-size: 18px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
}

.org-post {
  font-size: 13px;
  font-weight: 700;
  color: var(--bp-warning);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.org-contact {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
  border-radius: 0;
  white-space: nowrap;
  width: 100%;
  max-width: 140px;
}

.org-contact:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: scale(1.05);
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bp-darker);
  transition: border-color 0.15s;
}

.faq-item.open {
  border-color: rgba(255,255,255,0.4);
}

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

.faq-q:hover {
  background: var(--bp-lighter);
}

.faq-arrow {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.25s, color 0.15s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--bp-warning);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 20px 20px;
}

.faq-a p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

.faq-a a {
  color: var(--bp-warning);
  text-decoration: underline;
}

.slack-banner {
  background: var(--bp-darker);
  border-top: 2px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
}

.slack-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 960px;
  padding: 20px 40px;
  background: white;
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid white;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
  letter-spacing: 0.01em;
}

.slack-btn:hover {
  background: var(--bp-light);
  border-color: var(--bp-light);
  transform: scale(1.01);
}

.slack-btn .slack-icon {
  font-size: 22px;
}

.footer-about {
  background: var(--bp-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.about-card {
  background: var(--bp-darker);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px 20px;
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: flex-end;
}

.footer-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://github.com/user-attachments/assets/5276ff7f-e939-4d84-8cf2-b5e089e3e11d');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.9);
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14, 48, 91, 0.95), rgba(14, 48, 91, 0.58) 45%, rgba(14, 48, 91, 0.35));
}

.footer-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px 28px;
  text-align: center;
}

.ft-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.ft-logo span {
  color: var(--bp-warning);
}

.ft-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}

.ft-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.ft-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(14, 48, 91, 0.55);
  padding: 8px 12px;
}

.ft-links a:hover {
  color: white;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}

.wobble-1 {
  animation: wobble 3s ease-in-out infinite;
}

.wobble-2 {
  animation: wobble 3.5s ease-in-out infinite;
  animation-delay: -1s;
}

@keyframes wobble {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* ===== PROJECTS CAROUSEL ===== */
.projects-carousel {
  margin-top: 56px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  background: var(--bp-darker);
}

.project-card {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-card.active {
  display: grid;
  opacity: 1;
}

@media (max-width: 768px) {
  .project-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-card.active {
    padding: 24px;
  }
}

.project-image {
  width: 100%;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card.active .project-image img {
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.project-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  background: var(--bp-darker);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 4px;
}

.carousel-btn:hover {
  background: var(--bp-lighter);
  border-color: var(--bp-warning);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.15);
}

.dot.active {
  background: var(--bp-warning);
  width: 24px;
  border-radius: 4px;
  border-color: var(--bp-warning);
}

.dot:hover {
  background: rgba(255,255,255,0.4);
}

.carousel-hint {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  font-style: italic;
}

/* ===== VENUE MAP SECTION ===== */
.venue-section {
  padding: 72px 24px;
  background: var(--bp-darker);
}

.venue-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  border-radius: 4px;
}

@media (max-width: 920px) {
  .venue-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.map-wrapper {
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.map-wrapper iframe {
  display: block;
  border: none;
  width: 100%;
  height: 450px;
}

.venue-info {
  padding: 32px;
  background: var(--bp-darker);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.venue-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bp-warning);
  display: block;
}

.info-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .venue-info {
    padding: 24px;
  }
  
  .map-wrapper iframe {
    height: 300px;
  }
}

/* ===== START HERE SECTION ===== */
.start-here-section {
  background: var(--bp-dark);
  padding: 72px 24px;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.step-card {
  background: var(--bp-darker);
  border: 2px solid rgba(255,255,255,0.12);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s;
  border-radius: 2px;
}

.step-card:hover {
  background: var(--bp-lighter);
  border-color: var(--bp-warning);
  transform: translateY(-4px);
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--bp-warning);
  line-height: 1;
  font-family: var(--font-heading);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  flex-grow: 1;
}

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.highlight-box {
  background: var(--bp-darker);
  border: 2px solid rgba(255,255,255,0.1);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
  border-radius: 2px;
}

.highlight-box:hover {
  background: var(--bp-lighter);
  border-color: var(--bp-warning);
}

.highlight-box strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--bp-warning);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.highlight-box p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* ===== MORE BUILDS CAROUSEL ===== */
.section-content {
  max-width: 960px;
  margin: 0 auto;
}

.section-content-wide {
  max-width: 1200px;
}

.section-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  margin-top: 0;
}

#builds-highlights {
  background: var(--bp-dark);
}

#builds-highlights h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 12px;
  margin-top: 32px;
}

.carousel-shell {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0;
  flex: 1;
  scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: var(--bp-warning);
  border-radius: 4px;
}

.carousel-track::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.8);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
  background: var(--bp-darker);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 4px;
  font-weight: 800;
}

.carousel-btn:hover {
  background: var(--bp-lighter);
  border-color: var(--bp-warning);
  transform: scale(1.1);
}

.project-link {
  scroll-snap-align: start;
  min-width: 320px;
  flex-shrink: 0;
  text-decoration: none;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  background: var(--bp-darker);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border-color: var(--bp-warning);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s;
}

.project-card:hover img {
  filter: brightness(0.5);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: white;
}

.project-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin: 0;
}

.alt-bg {
  background: var(--bp-darker);
}

/* ===== HACK CLUB PROGRAMS SECTION ===== */
.programs-section {
  background: var(--bp-dark);
  padding: 72px 24px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.program-card {
  background: linear-gradient(135deg, var(--bp-darker) 0%, rgba(52, 75, 106, 0.5) 100%);
  border: 2px solid rgba(255,255,255,0.12);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, transparent, rgba(255, 200, 87, 0.05));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.program-card:hover {
  background: linear-gradient(135deg, var(--bp-lighter) 0%, rgba(52, 75, 106, 0.8) 100%);
  border-color: var(--bp-warning);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 200, 87, 0.15);
}

.program-card:hover::before {
  opacity: 1;
}

.program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--bp-warning) 0%, rgba(255, 200, 87, 0.8) 100%);
  color: var(--bp-dark);
  font-weight: 800;
  font-size: 11px;
  font-family: var(--font-heading);
  border-radius: 4px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 4px;
  flex-shrink: 0;
}

.program-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 0;
  position: relative;
  z-index: 1;
}

.program-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bp-warning);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}

.program-link:hover {
  gap: 12px;
  color: white;
}

.program-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 8px;
}

.program-meta::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--bp-warning);
  border-radius: 50%;
}

.program-meta > span {
  display: inline-block;
}

.program-meta > span:after {
  content: '•';
  margin-left: 12px;
  color: rgba(255,255,255,0.2);
}

.program-meta > span:last-child:after {
  content: '';
}
