/* ==========================================================================
   ABOUT US & EVENTS SPECIFIC STYLES
   ========================================================================== */

/* Robot Dog Mascot (About Us) */
.hero-dog-mascot-wrap {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.25s ease;
  margin: 0 auto;
}

.dog-static-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  transition: opacity 0.2s ease;
  z-index: 2;
  pointer-events: none;
}

.dog-animated-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 3;
  pointer-events: none;
}

.hero-dog-mascot-wrap.is-active .dog-static-img { opacity: 0; }
.hero-dog-mascot-wrap.is-active .dog-animated-video { opacity: 1; }

/* Large Timeline (About Us) */
.timeline-lg {
  border-left: 3px solid var(--action-text);
  margin-left: 1rem;
  padding-left: 2.25rem;
}

.timeline-lg .timeline-step {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-lg .timeline-step:last-child {
  margin-bottom: 0.5rem;
}

.timeline-lg .timeline-step::before {
  content: '';
  position: absolute;
  left: calc(-2.25rem - 8.5px);
  top: 5px;
  width: 15px;
  height: 15px;
  background: var(--signal-yellow);
  border: 2.5px solid var(--action-text);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--surface-primary);
}

.timeline-lg .timeline-badge {
  font-size: 0.8rem !important;
  padding: 0.35rem 0.8rem !important;
  margin-bottom: 0.5rem !important;
}

.timeline-lg .timeline-phase-title {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: var(--action-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.timeline-lg .timeline-phase-desc {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--content-text);
  max-width: 880px;
}

.timeline-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
  padding: 0.5rem;
}

.timeline-infographic-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(-3px 5px 0px rgba(56, 56, 56, 0.15));
  user-select: none;
}

/* Sponsor Marquee Loop (About Us) */
.sponsor-marquee-container {
  background: var(--surface-background);
  border: 2px solid var(--action-text);
  border-radius: var(--radius-sharp);
  box-shadow: var(--shadow-offset-charcoal);
  overflow: hidden;
  padding: 1.75rem 0;
  position: relative;
  width: 100%;
}

.sponsor-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  will-change: transform;
}

.sponsor-logo-img {
  height: 52px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: transform var(--transition-fast), filter var(--transition-fast), opacity var(--transition-fast);
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.sponsor-logo-img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Events Header */
.hero-large-wrap { padding: 1rem 0 1.5rem; }
.hero-large-headline {
  font-family: var(--font-mono);
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--action-text);
  margin-bottom: 1.25rem;
}

.hero-large-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: var(--action-text);
  max-width: 960px;
}

.badge-neo-lg {
  font-size: 0.82rem !important;
  padding: 0.35rem 0.85rem !important;
  margin-bottom: 1.25rem !important;
}

/* Event List Card Components */
.event-row-card {
  background: var(--surface-background);
  border: 2px solid var(--action-text);
  border-radius: var(--radius-sharp);
  box-shadow: -4px 4px 0px 0px var(--action-text);
  margin-bottom: 1.5rem;
  display: flex;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  overflow: hidden;
}

.event-row-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: -6px 6px 0px 0px var(--action-text);
}

.event-date-col {
  width: 140px;
  min-width: 130px;
  border-right: 2px solid var(--action-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.75rem;
  text-align: center;
  background: var(--surface-background);
}

.event-date-month {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--action-text);
  line-height: 1.1;
}

.event-date-day {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--action-text);
  margin: 0.25rem 0;
}

.event-date-year {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1;
}

.event-details-col {
  flex: 1;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-title {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--action-text);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.event-description {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--content-text);
  margin-bottom: 0.85rem;
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--mid-gray);
}

.event-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  background: #ffb978;
  border: 1.5px solid var(--action-text);
  border-radius: var(--radius-sharp);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--action-text);
  text-transform: uppercase;
}

.event-badge-inperson { background: var(--sky-blue); }

.event-action-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.75rem;
}

.btn-register-neo {
  background: var(--sky-blue);
  color: var(--action-text);
  border: 2px solid var(--action-text);
  border-radius: var(--radius-sharp);
  padding: 0.65rem 1.4rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: -2px 2px 0px 0px var(--action-text);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.btn-register-neo:hover {
  background: #88cfff;
  transform: translate(-2px, -2px);
  box-shadow: -4px 4px 0px 0px var(--action-text);
}

.event-image-col {
  width: 190px;
  min-width: 170px;
  border-left: 2px solid var(--action-text);
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.event-placeholder-graphic {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #eae5df;
  color: var(--action-text);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
  user-select: none;
}

.event-placeholder-graphic svg {
  width: 38px;
  height: 38px;
  stroke: var(--action-text);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 0.35rem;
}

.event-row-card:hover .event-placeholder-graphic { background: #e2ddd6; }

/* Time Filters (Events) */
.time-filter-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.btn-time-filter {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.45rem 1.1rem;
  border: 2px solid var(--action-text);
  border-radius: var(--radius-sharp);
  background: var(--surface-background);
  color: var(--action-text);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: -2px 2px 0px 0px var(--action-text);
}

.btn-time-filter.active {
  background: var(--signal-yellow);
  box-shadow: -3px 3px 0px 0px var(--action-text);
}

/* Event Modals */
.modal-neo-content {
  background: #ffffff;
  border: 2px solid var(--action-text);
  border-radius: var(--radius-sharp);
  box-shadow: -6px 6px 0px 0px var(--action-text);
  padding: 2.25rem 2rem;
  position: relative;
}

.modal-neo-title {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--action-text);
  margin-bottom: 1.5rem;
}

.btn-generate-pass {
  width: 100%;
  background: var(--signal-yellow);
  color: var(--action-text);
  border: 2px solid var(--action-text);
  border-radius: var(--radius-sharp);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: -4px 4px 0px 0px var(--action-text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-generate-pass:hover {
  background: #ffe32e;
  transform: translate(-2px, -2px);
  box-shadow: -6px 6px 0px 0px var(--action-text);
}

/* Past Events Gallery Grid (Events) */
.gallery-card {
  background: var(--surface-background);
  border: 2px solid var(--action-text);
  border-radius: var(--radius-sharp);
  box-shadow: -4px 4px 0px 0px var(--action-text);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: -7px 7px 0px 0px var(--action-text);
}

.gallery-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 2px solid var(--action-text);
  background: #eae5df;
  position: relative;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-img-wrap img { transform: scale(1.06); }

.gallery-body {
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-title {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--action-text);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.gallery-caption {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--content-text);
  line-height: 1.5;
  margin-bottom: 0;
}

.events-section-separator {
  border: none;
  border-top: 3px solid var(--action-text);
  margin: 4.5rem 0 3.5rem;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .event-row-card { flex-direction: column; }
  .event-date-col {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid var(--action-text);
    flex-direction: row;
    gap: 0.75rem;
    padding: 0.75rem;
    justify-content: center;
  }
  .event-date-day { font-size: 1.8rem; margin: 0; }
  .event-action-col { padding: 0 1.25rem 1.25rem; justify-content: flex-start; }
  .btn-register-neo { width: 100%; text-align: center; }
  .event-image-col {
    width: 100% !important;
    min-width: 100% !important;
    height: 115px !important;
    border-left: none !important;
    border-top: 2px solid var(--action-text) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .event-placeholder-graphic {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
  }
}

/* FAQ Details */
.faq-accordion details {
  background: var(--surface-background);
  border: 2px solid var(--action-text);
  border-radius: var(--radius-sharp);
  padding: 0.85rem 1.1rem;
  margin-bottom: 0.75rem;
  box-shadow: -3px 3px 0px 0px var(--action-text);
}

.faq-accordion summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--orange-accent);
}

.faq-accordion details[open] summary::after {
  content: '−';
}

.faq-accordion p {
  margin-top: 0.65rem;
  margin-bottom: 0;
  color: var(--content-text);
  font-size: 0.88rem;
  line-height: 1.55;
}