/* Page-owned styles for Poker Nights */

/* Hero */
.poker-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-base);
  overflow: hidden;
}

.poker-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/public/media/poker-table-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: pokerHeroZoom 8s ease-out forwards;
}

.poker-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 15, 20, 0.85) 0%, rgba(11, 15, 20, 0.55) 50%, rgba(11, 15, 20, 0.35) 100%);
}

.poker-hero__container {
  position: relative;
  z-index: 1;
  padding-block: var(--space-8);
}

.poker-hero__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  text-align: left;
}

.poker-hero__eyebrow {
  margin-block-end: 0;
}

.poker-hero__title {
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-block-end: 0;
  max-width: 80%;
}

.poker-hero__intro {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-hero__cta {
  margin-block-start: var(--space-2);
}

@keyframes pokerHeroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

/* Experience */
.poker-experience__header {
  max-width: 700px;
  margin-block-end: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-experience__header .eyebrow {
  margin-block-end: 0;
}

.poker-experience__header h2 {
  margin-block-end: 0;
}

.poker-experience__lead {
  color: var(--text-secondary);
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-experience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.poker-experience__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.poker-experience__card h3 {
  margin-block-end: 0;
}

.poker-experience__card p {
  color: var(--text-secondary);
  max-width: 55ch;
  margin-block-end: 0;
}

.poker-experience__icon {
  font-size: 2rem;
  color: var(--accent-cyan);
  line-height: 1;
}

/* Schedule */
.poker-schedule__header {
  max-width: 700px;
  margin-block-end: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-schedule__header .eyebrow {
  margin-block-end: 0;
}

.poker-schedule__header h2 {
  margin-block-end: 0;
}

.poker-schedule__lead {
  color: var(--text-secondary);
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.poker-schedule__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.poker-schedule__card-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-start;
}

.poker-schedule__card h3 {
  margin-block-end: 0;
}

.poker-schedule__status {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--text-small);
  color: var(--accent-cyan);
}

.poker-schedule__time {
  color: var(--accent-copper);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-block-end: 0;
}

.poker-schedule__card p:last-child {
  color: var(--text-secondary);
  max-width: 50ch;
  margin-block-end: 0;
}

/* Format */
.poker-format__container {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-format__container .eyebrow {
  margin-block-end: 0;
}

.poker-format__container h2 {
  margin-block-end: 0;
}

.poker-format__lead {
  color: var(--text-secondary);
  max-width: 60ch;
  margin-block-end: var(--space-4);
}

.poker-format__steps {
  list-style: none;
  padding-inline-start: 0;
  margin-block-end: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
}

.poker-format__steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background-color: rgba(242, 238, 231, 0.15);
}

.poker-format__step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  position: relative;
}

.poker-format__step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-elevated);
  border: 1px solid rgba(82, 214, 208, 0.3);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.poker-format__step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
}

.poker-format__step-content h3 {
  margin-block-end: 0;
}

.poker-format__step-content p {
  color: var(--text-secondary);
  max-width: 60ch;
  margin-block-end: 0;
}

/* Booking */
.poker-booking__header {
  max-width: 700px;
  margin-block-end: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-booking__header .eyebrow {
  margin-block-end: 0;
}

.poker-booking__header h2 {
  margin-block-end: 0;
}

.poker-booking__lead {
  color: var(--text-secondary);
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-booking__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-5);
  max-width: 1000px;
  align-items: start;
}

.poker-booking__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.poker-booking__steps h3 {
  margin-block-end: 0;
}

.poker-booking__steps-list {
  list-style: decimal;
  padding-inline-start: var(--space-4);
  margin-block-end: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--text-secondary);
}

.poker-booking__steps-list a {
  color: var(--accent-cyan);
}

.poker-booking__walkin {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.poker-booking__walkin h3 {
  margin-block-end: 0;
}

.poker-booking__walkin p {
  color: var(--text-secondary);
  max-width: 55ch;
  margin-block-end: 0;
}

/* Requirements */
.poker-requirements__header {
  max-width: 700px;
  margin-block-end: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-requirements__header .eyebrow {
  margin-block-end: 0;
}

.poker-requirements__header h2 {
  margin-block-end: 0;
}

.poker-requirements__lead {
  color: var(--text-secondary);
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-requirements__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  max-width: 800px;
}

.poker-requirements__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.poker-requirements__card h3 {
  margin-block-end: 0;
}

.poker-requirements__card p {
  color: var(--text-secondary);
  max-width: 50ch;
  margin-block-end: 0;
}

/* Etiquette */
.poker-etiquette__header {
  max-width: 700px;
  margin-block-end: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-etiquette__header .eyebrow {
  margin-block-end: 0;
}

.poker-etiquette__header h2 {
  margin-block-end: 0;
}

.poker-etiquette__lead {
  color: var(--text-secondary);
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-etiquette__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  max-width: 1000px;
}

.poker-etiquette__column {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.poker-etiquette__column h3 {
  margin-block-end: 0;
}

.poker-etiquette__column p {
  color: var(--text-secondary);
  max-width: 55ch;
  margin-block-end: 0;
}

.poker-etiquette__column .content-list {
  margin-block-end: 0;
}

/* Arrival */
.poker-arrival__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-6);
  max-width: 1000px;
  align-items: center;
}

.poker-arrival__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
}

.poker-arrival__text .eyebrow {
  margin-block-end: 0;
}

.poker-arrival__text h2 {
  margin-block-end: 0;
}

.poker-arrival__text p {
  color: var(--text-secondary);
  max-width: 60ch;
  margin-block-end: 0;
}

.poker-arrival__media {
  margin-block-end: 0;
  min-width: 0;
}

.poker-arrival__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  border: var(--border-thin);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast);
}

.poker-arrival__media img:hover {
  transform: scale(1.02);
}

/* Dining */
.poker-dining__container {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

.poker-dining__container .eyebrow {
  margin-block-end: 0;
}

.poker-dining__container h2 {
  margin-block-end: 0;
}

.poker-dining__lead {
  color: var(--text-secondary);
  max-width: 65ch;
  margin-inline: auto;
  margin-block-end: 0;
}

.poker-dining__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-block-start: var(--space-2);
}

/* Private */
.poker-private__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-6);
  max-width: 1000px;
  align-items: center;
}

.poker-private__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
  min-width: 0;
}

.poker-private__text .eyebrow {
  margin-block-end: 0;
}

.poker-private__text h2 {
  margin-block-end: 0;
}

.poker-private__text p {
  color: var(--text-secondary);
  max-width: 55ch;
  margin-block-end: 0;
}

.poker-private__cta {
  margin-block-start: var(--space-2);
}

.poker-private__media {
  margin-block-end: 0;
  min-width: 0;
}

.poker-private__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  border: var(--border-thin);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast);
}

.poker-private__media img:hover {
  transform: scale(1.02);
}

/* Final CTA */
.poker-final-cta__container {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

.poker-final-cta__container .eyebrow {
  margin-block-end: 0;
}

.poker-final-cta__container h2 {
  margin-block-end: 0;
}

.poker-final-cta__lead {
  color: var(--text-secondary);
  max-width: 60ch;
  margin-inline: auto;
  margin-block-end: 0;
}

.poker-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-block-start: var(--space-2);
}

.poker-final-cta__address {
  color: var(--text-secondary);
  font-size: var(--text-small);
  margin-block-start: var(--space-2);
  margin-block-end: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .poker-experience__grid,
  .poker-schedule__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poker-schedule__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poker-schedule__card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
  }

  .poker-booking__grid,
  .poker-arrival__grid,
  .poker-private__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .poker-arrival__media,
  .poker-private__media {
    order: 2;
  }

  .poker-arrival__text,
  .poker-private__text {
    order: 1;
  }
}

@media (max-width: 767px) {
  .poker-hero {
    min-height: 70vh;
  }

  .poker-hero__content {
    align-items: center;
    text-align: center;
  }

  .poker-hero__title {
    max-width: 100%;
  }

  .poker-hero__intro {
    max-width: 100%;
  }

  .poker-experience__grid,
  .poker-schedule__grid,
  .poker-requirements__grid,
  .poker-etiquette__grid {
    grid-template-columns: 1fr;
  }

  .poker-schedule__card:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
    margin-inline: 0;
  }

  .poker-format__step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: var(--space-3);
  }

  .poker-format__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .poker-format__steps::before {
    left: 19px;
  }

  .poker-booking__grid,
  .poker-arrival__grid,
  .poker-private__grid {
    gap: var(--space-4);
  }

  .poker-final-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .poker-final-cta__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poker-hero__bg {
    animation: none;
  }
}
