/*
 * Public ticketing shell derived from the Susegado Strike React frontend.
 * Scope is intentionally limited to the shared header, footer and typography.
 * The page content remains light, while the header, hero and footer retain the
 * frontend's black, white and orange visual treatment.
 */

:root {
  --ss-site-orange: #e85a24;
  --ss-site-orange-hover: #ff7038;
  --ss-site-black: #050505;
  --ss-site-white: #fafafa;
  --ss-site-muted-dark: #a3a3a3;
  --ss-site-light-border: rgba(5, 5, 5, 0.12);
  --ss-site-dark-border: rgba(255, 255, 255, 0.10);
}

html {
  scroll-behavior: smooth;
}

body,
.public-event-page {
/*  background: #ffffff !important;*/
  color: var(--ss-site-black);
  font-family: 'DM Sans', sans-serif !important;
}

/* Typography copied from the frontend font system. */
.public-event-page h1,
.public-event-page h2,
.public-event-card h2,
.ss-site-footer-title {
  font-family: 'Anton', sans-serif !important;
  font-weight: 400 !important;
/*  letter-spacing: -0.02em !important;*/
}

.public-event-page button,
.public-event-page label,
.public-event-page summary,
.public-event-page .public-event-note,
.public-event-page .public-event-chip-v2,
.public-event-page .public-event-map-body-v2 strong,
.public-event-page .floatprice,
.ss-site-header,
.ss-site-footer-links,
.ss-site-footer-tagline {
  font-family: 'Oswald', sans-serif !important;
}

.public-event-page p,
.public-event-page .public-event-about-copy-v2,
.public-event-page .public-event-info-item-v2,
.public-event-page .public-event-map-body-v2 p,
.public-event-page .public-event-faq-v2 div,
.ss-site-footer-copy {
  font-family: 'DM Sans', sans-serif !important;
}

.public-event-page select, .public-event-page input{
  font-family: 'Oswald', sans-serif !important;
  font-weight: 300;
    letter-spacing: 2px;
    color: #000000;
        font-size: 15px !important;
}

/* Header copied from the frontend and kept dark. */
.ss-site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  background: var(--ss-site-black);
  border-bottom: 1px solid transparent;
  color: var(--ss-site-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.ss-site-header.is-scrolled,
.ss-site-header.is-menu-open {
  background: rgba(5, 5, 5, 0.90);
  border-bottom-color: var(--ss-site-dark-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ss-site-header-inner {
  width: min(1600px, 100%);
  height: 80px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ss-site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.ss-site-logo img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ss-site-logo:hover img {
  transform: scale(1.05);
}

.ss-site-desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.ss-site-desktop-nav a,
.ss-site-mobile-menu a {
  color: var(--ss-site-muted-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.ss-site-desktop-nav a:hover,
.ss-site-mobile-menu a:hover {
  color: var(--ss-site-orange);
}

.ss-site-ticket-button {
  min-height: auto !important;
  padding: 8px 20px !important;
  border: 1px solid var(--ss-site-orange) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ss-site-orange) !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  line-height: 1.4 !important;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

.ss-site-ticket-button:hover:not(:disabled) {
  background: var(--ss-site-orange) !important;
  color: var(--ss-site-black) !important;
  transform: none !important;
}

.ss-site-ticket-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.ss-site-ticket-button-reverse {
  min-height: auto !important;
  padding: 8px 20px !important;
  border: 1px solid var(--ss-site-orange) !important;
  border-radius: 0 !important;
  background: #e85a24 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-family: 'Oswald', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  line-height: 1.4 !important;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

.mob-reverse-btn{
        width: fit-content;
    margin-top: 4px;
}

.ss-site-mobile-toggle {
  display: none;
  width: 30px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.ss-site-mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 auto 6px;
  background: var(--ss-site-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ss-site-mobile-toggle span:last-child {
  margin-bottom: 0;
}

.ss-site-mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ss-site-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.ss-site-mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.ss-site-mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  padding: 0 24px;
  background: rgba(5, 5, 5, 0.98);
  border-bottom: 1px solid var(--ss-site-dark-border);
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.ss-site-mobile-menu.is-open {
  max-height: 420px;
  padding-top: 24px;
  padding-bottom: 24px;
  opacity: 1;
}

.ss-site-mobile-menu a {
  font-size: 18px;
  letter-spacing: 0.12em;
}

.ss-site-mobile-menu .ss-site-ticket-button {
  width: fit-content;
  margin-top: 4px;
}

/* Event hero remains dark, matching the original frontend treatment. */
.public-event-page-test .public-event-test-hero {
  min-height: auto;
  padding-top: 80px;
 /* background:
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.08), transparent 25%),
    linear-gradient(135deg, #050505 0%, #111111 52%, #050505 100%) !important;*/
  color: var(--ss-site-white) !important;
}

.public-event-page-test .public-event-test-hero::before {
  display: block;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.022) 0, rgba(255, 255, 255, 0.022) 1px, transparent 1px, transparent 10px);
}

.public-event-page-test .public-event-test-hero::after {
  display: block;
/*  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 58%);*/
}

.public-event-page-test .public-event-test-hero-content {
  position: relative;
  z-index: 2;
}

.public-event-page-test .public-event-test-hero h1 {
  color: var(--ss-site-orange) !important;
}

.public-event-page-test .public-event-test-hero p {
  color: var(--ss-site-white) !important;
}

/* Footer copied from the frontend and kept dark. */
.public-event-footer.ss-site-footer {
  margin-top: 34px;
  padding: 80px 0 40px;
  overflow: hidden;
  background: var(--ss-site-black) !important;
  border-top: 1px solid var(--ss-site-dark-border);
  color: var(--ss-site-white) !important;
  text-align: left;
}

.ss-site-footer-inner {
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 0 48px;
}

.ss-site-footer-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.ss-site-footer-title {
  margin: 0;
  color: var(--ss-site-white) !important;
  font-size: clamp(60px, 8vw, 144px);
  line-height: 0.85;
  text-transform: uppercase;
}

.ss-site-footer-title span {
  color: var(--ss-site-orange);
}

.ss-site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-end;
}

.ss-site-footer-links a {
  color: var(--ss-site-muted-dark);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.ss-site-footer-links a:hover {
  color: var(--ss-site-orange);
}

.ss-site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--ss-site-dark-border);
}

.ss-site-footer-copy,
.ss-site-footer-tagline {
  margin: 0;
  color: var(--ss-site-muted-dark) !important;
}

.ss-site-footer-copy {
  font-size: 14px;
}

.ss-site-footer-tagline {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .ss-site-header-inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  .ss-site-desktop-nav {
    display: none;
  }

  .ss-site-mobile-toggle,
  .ss-site-mobile-menu {
    display: block;
  }

  .ss-site-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ss-site-footer-main,
  .ss-site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .ss-site-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .public-event-page-test .public-event-test-hero {
    padding-top: 72px;
  }

  .ss-site-header-inner {
    height: 72px;
  }

  .ss-site-logo img {
    height: 48px;
    max-width: 150px;
  }

  .public-event-footer.ss-site-footer {
    padding-top: 64px;
  }

  .ss-site-footer-inner {
    padding-right: 24px;
    padding-left: 24px;
  }

  .ss-site-footer-main {
    margin-bottom: 48px;
  }

  .ss-site-footer-title {
    font-size: clamp(58px, 20vw, 92px);
  }

  .ss-site-footer-links {
    gap: 22px;
  }

  .ss-site-footer-bottom {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-site-header *,
  .ss-site-footer * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}