@import url('https://fonts.googleapis.com/css2?family=Archivo+Expanded:wght@700;900&family=Inter:wght@400;500&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,400&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  height: 100vh;
}

.split-container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.split-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: flex 0.5s ease;
  overflow: hidden;
}

.split-panel:hover {
  flex: 1.15;
}

.panel-content {
  text-align: center;
  padding: 2rem;
  z-index: 2;
  max-width: 480px;
}

/* Sports panel */
.split-sports {
  background-color: #121212;
  color: #F5F5F0;
}

.split-sports .panel-eyebrow {
  color: #E8FF3C;
}

.split-sports .panel-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.split-sports .panel-link {
  border: 1px solid #E8FF3C;
  color: #E8FF3C;
}

.split-sports .panel-link:hover {
  background-color: #E8FF3C;
  color: #121212;
}

/* Events panel */
.split-events {
  background-color: #FBF7F2;
  color: #2E2A26;
}

.split-events .panel-eyebrow {
  color: #C98A6E;
}

.split-events .panel-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
}

.split-events .panel-link {
  border: 1px solid #C98A6E;
  color: #C98A6E;
}

.split-events .panel-link:hover {
  background-color: #C98A6E;
  color: #FBF7F2;
}

/* Shared panel content styles */
.panel-eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.panel-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.panel-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.panel-link {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s ease;
  border-radius: 2px;
}

/* Brand mark - floats center over the split */
.brand-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background-color: #3A2222;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.brand-mark img {
  width: 64px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Mobile - stack vertically */
@media (max-width: 768px) {
  body {
    overflow: auto;
    height: auto;
  }

  .split-container {
    flex-direction: column;
    height: auto;
  }

  .split-panel {
    min-height: 70vh;
  }

  .split-panel:hover {
    flex: 1;
  }

  .brand-mark {
    width: 84px;
    height: 84px;
  }

  .brand-mark img {
    width: 48px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .split-panel {
    transition: none;
  }
}
