/* Page-owned styles for Offline Poker Lounge */

.poker-page {
  overflow-x: hidden;
}

/* Section rhythm */
.poker-page section {
  padding-block: var(--space-8);
}

.poker-page .section-alt {
  background-color: var(--color-off-white);
}

/* Hero */
.poker-hero {
  background-color: var(--color-cream);
  padding-block: var(--space-8) var(--space-9);
}

.poker-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-7);
  align-items: center;
}

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

.poker-hero__title {
  font-size: var(--text-display-size);
  line-height: var(--text-display-line-height);
  font-weight: var(--text-display-weight);
  max-width: 43.75rem;
  margin-block-end: 0;
}

.poker-hero__highlight {
  color: var(--color-coral);
}

.poker-hero__lead {
  font-size: var(--text-body-large-size);
  line-height: var(--text-body-large-line-height);
  max-width: 37.5rem;
  margin-block-end: 0;
}

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

.poker-hero__media {
  min-width: 0;
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 1px solid var(--color-border-golden);
}

.poker-hero__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.poker-hero__media:hover .poker-hero__image {
  transform: scale(1.02);
}

/* Physical Space */
.poker-space__grid {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: var(--space-7);
  align-items: center;
}

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

.poker-space__heading {
  max-width: 43.75rem;
  margin-block-end: 0;
}

.poker-space__description {
  max-width: 34.375rem;
  margin-block-end: 0;
}

.poker-space__media {
  min-width: 0;
}

.poker-space__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  border: 1px solid var(--color-border-light);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.poker-space__caption {
  font-size: var(--text-caption-size);
  line-height: var(--text-caption-line-height);
  color: var(--color-sage);
  margin-block-start: var(--space-2);
  margin-block-end: 0;
}

/* Host-Led Poker Nights */
.poker-hosted {
  background-color: var(--color-cream);
}

.poker-hosted__intro {
  max-width: 43.75rem;
  margin-block-end: var(--space-6);
}

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

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

.poker-hosted__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.poker-hosted__card .card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-hosted__card-title {
  margin-block-end: 0;
}

.poker-hosted__card-text {
  max-width: 18.75rem;
  margin-block-end: 0;
}

/* Cards and Symbolic Chips */
.poker-chips {
  background-color: var(--color-off-white);
}

.poker-chips__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

.poker-chips__heading {
  max-width: 37.5rem;
  margin-block-end: 0;
}

.poker-chips__description {
  max-width: 37.5rem;
  margin-block-end: 0;
}

.poker-chips__media {
  max-width: 50rem;
  width: 100%;
  margin-block-end: 0;
}

.poker-chips__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  border: 1px solid var(--color-border-light);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.poker-chips__caption {
  text-align: center;
  margin-block-start: var(--space-2);
}

/* Group Atmosphere */
.poker-atmosphere {
  background-color: var(--color-cream);
}

.poker-atmosphere__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-7);
  align-items: center;
}

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

.poker-atmosphere__heading {
  max-width: 43.75rem;
  margin-block-end: 0;
}

.poker-atmosphere__description {
  max-width: 34.375rem;
  margin-block-end: 0;
}

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

.poker-atmosphere__shape {
  min-width: 0;
  aspect-ratio: 1 / 1;
  max-width: 18.75rem;
  width: 100%;
  justify-self: center;
  background-color: var(--color-teal);
  border-radius: var(--radius-large);
  opacity: 0.12;
}

/* Poker and the Menu */
.poker-menu {
  background-color: var(--color-off-white);
}

.poker-menu__grid {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(0, 11fr);
  gap: var(--space-7);
  align-items: center;
}

.poker-menu__media {
  min-width: 0;
}

.poker-menu__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  border: 1px solid var(--color-border-light);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.poker-menu__caption {
  font-size: var(--text-caption-size);
  line-height: var(--text-caption-line-height);
  color: var(--color-sage);
  margin-block-start: var(--space-2);
  margin-block-end: 0;
}

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

.poker-menu__heading {
  max-width: 43.75rem;
  margin-block-end: 0;
}

.poker-menu__description {
  max-width: 34.375rem;
  margin-block-end: 0;
}

/* Casual Poker Evenings */
.poker-casual {
  background-color: var(--color-cream);
}

.poker-casual__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

.poker-casual__heading {
  max-width: 37.5rem;
  margin-block-end: 0;
}

.poker-casual__description {
  max-width: 37.5rem;
  margin-block-end: 0;
}

.poker-casual__list {
  margin-block-end: 0;
  text-align: left;
}

/* Private Poker Gatherings */
.poker-private {
  background-color: var(--color-off-white);
}

.poker-private__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-7);
  align-items: center;
}

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

.poker-private__heading {
  max-width: 43.75rem;
  margin-block-end: 0;
}

.poker-private__description {
  max-width: 34.375rem;
  margin-block-end: 0;
}

.poker-private__callout {
  min-width: 0;
}

.poker-private__callout-card {
  background-color: var(--color-off-white);
  border: 2px solid var(--color-coral);
  border-radius: var(--radius-medium);
  padding: var(--space-5);
  text-align: center;
  max-width: 25rem;
  margin-inline: auto;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.poker-private__callout-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.poker-private__callout-text {
  margin-block-end: 0;
  font-weight: 600;
}

/* What to Know Before You Visit */
.poker-facts {
  background-color: var(--color-cream);
}

.poker-facts__heading {
  max-width: 43.75rem;
  margin-block-end: var(--space-6);
}

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

.poker-facts__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.poker-facts__card .card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-facts__card-title {
  margin-block-end: 0;
}

.poker-facts__card-text {
  max-width: 17.5rem;
  margin-block-end: 0;
}

/* Final Call to Action */
.poker-final {
  background-color: var(--color-deep-navy);
  padding-block: var(--space-8) var(--space-9);
}

.poker-final__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

.poker-final__heading {
  color: var(--color-off-white);
  max-width: 37.5rem;
  margin-block-end: 0;
}

.poker-final__text {
  color: var(--color-off-white);
  max-width: 31.25rem;
  margin-block-end: 0;
}

.poker-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.poker-final__btn {
  min-width: 12.5rem;
}

/* Tablet */
@media (max-width: 64rem) {
  .poker-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-5);
  }

  .poker-space__grid,
  .poker-menu__grid,
  .poker-atmosphere__grid,
  .poker-private__grid {
    gap: var(--space-5);
  }

  .poker-hosted__grid,
  .poker-facts__grid {
    gap: var(--space-4);
  }
}

/* Mobile */
@media (max-width: 47.9375rem) {
  .poker-page section {
    padding-block: var(--space-7);
  }

  .poker-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-6);
  }

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

  .poker-hero__title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .poker-hero__lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .poker-hero__cta {
    width: 100%;
  }

  .poker-hero__media {
    border-radius: var(--radius-medium);
  }

  .poker-space__grid,
  .poker-atmosphere__grid,
  .poker-menu__grid,
  .poker-private__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .poker-space__text,
  .poker-atmosphere__text,
  .poker-menu__text,
  .poker-private__text {
    align-items: center;
    text-align: center;
  }

  .poker-space__description,
  .poker-atmosphere__description,
  .poker-menu__description,
  .poker-private__description {
    max-width: 100%;
  }

  .poker-space__caption,
  .poker-menu__caption {
    text-align: center;
  }

  .poker-atmosphere__shape {
    display: none;
  }

  .poker-hosted__grid,
  .poker-facts__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
  }

  .poker-hosted__card-text,
  .poker-facts__card-text {
    max-width: 100%;
  }

  .poker-chips__container,
  .poker-casual__container,
  .poker-final__container {
    gap: var(--space-4);
  }

  .poker-chips__description,
  .poker-casual__description,
  .poker-final__text {
    max-width: 100%;
  }

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

  .poker-final__btn {
    width: 100%;
  }

  .poker-private__callout-card {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poker-hero__image,
  .poker-private__callout-card {
    transition: none;
  }

  .poker-hero__media:hover .poker-hero__image {
    transform: none;
  }

  .poker-private__callout-card:hover {
    transform: none;
  }
}
