/* Page-owned styles for offline-poker */

.poker-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--color-deep-espresso);
}

.poker-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.poker-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s ease-in-out;
}

.poker-hero.is-zoomed .poker-hero__media img {
  transform: scale(1.08);
}

.poker-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.35) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.poker-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  padding: var(--space-7) var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  color: var(--color-off-white);
}

.poker-hero__content .section-label {
  color: var(--color-off-white);
}

.poker-hero__content .section-label::before {
  background-color: var(--color-off-white);
}

.poker-hero__content h1 {
  color: var(--color-off-white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: var(--leading-display);
  font-weight: var(--weight-display);
  margin: 0;
}

.poker-hero__content p {
  color: rgba(245, 242, 236, 0.9);
  margin: 0;
  max-width: 34rem;
}

.poker-definition {
  padding-block: var(--space-8);
  background-color: var(--color-off-white);
}

.poker-definition__header {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-definition__header h2 {
  margin: 0;
  max-width: 40rem;
}

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

.poker-definition__card {
  background-color: var(--color-off-white);
  border: var(--border-concrete);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.poker-definition__card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.poker-definition__card h3 {
  margin: 0;
  font-size: var(--text-h3);
  line-height: var(--leading-h3);
}

.poker-definition__card p {
  margin: 0;
  max-width: 18.75rem;
}

.poker-transition {
  padding-block: var(--space-8);
  background-color: var(--color-concrete-grey);
}

.poker-transition__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  align-items: center;
}

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

.poker-transition__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
}

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

.poker-transition__content h2,
.poker-transition__content h3 {
  margin: 0;
}

.poker-transition__content p {
  margin: 0;
  max-width: 31.25rem;
}

.poker-lounge {
  padding-block: var(--space-8);
  background-color: var(--color-off-white);
}

.poker-lounge .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
}

.poker-lounge__media {
  width: 100%;
  max-width: 75rem;
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

.poker-lounge__media:hover img {
  transform: scale(1.03);
}

.poker-lounge__content {
  max-width: 43.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-lounge__content h2 {
  margin: 0;
}

.poker-lounge__content p {
  margin: 0;
}

.poker-tables {
  padding-block: var(--space-8);
  background-color: var(--color-concrete-grey);
}

.poker-tables__header {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-tables__header h2 {
  margin: 0;
  max-width: 40rem;
}

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

.poker-tables__card {
  background-color: var(--color-off-white);
  border: var(--border-concrete);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-tables__icon {
  color: var(--color-fern-green);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  background-color: var(--color-off-white);
}

.poker-tables__card h3 {
  margin: 0;
  font-size: var(--text-h3);
  line-height: var(--leading-h3);
}

.poker-tables__card p {
  margin: 0;
  max-width: 18.75rem;
}

.poker-holdem {
  padding-block: var(--space-8);
  background-color: var(--color-off-white);
}

.poker-holdem__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  align-items: center;
}

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

.poker-holdem__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
}

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

.poker-holdem__content h2,
.poker-holdem__content h3 {
  margin: 0;
}

.poker-holdem__content p {
  margin: 0;
  max-width: 31.25rem;
}

.poker-nights {
  padding-block: var(--space-8);
  background-color: var(--color-fern-green);
  color: var(--color-off-white);
}

.poker-nights__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-6);
  align-items: start;
}

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

.poker-nights__content .section-label {
  color: var(--color-off-white);
}

.poker-nights__content .section-label::before {
  background-color: var(--color-off-white);
}

.poker-nights__content h2,
.poker-nights__content h3 {
  color: var(--color-off-white);
  margin: 0;
}

.poker-nights__content p {
  color: rgba(245, 242, 236, 0.9);
  margin: 0;
  max-width: 37.5rem;
}

.poker-nights__cta {
  background-color: var(--color-deep-espresso);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

.poker-nights__cta h3 {
  color: var(--color-off-white);
  margin: 0;
}

.poker-nights__cta p {
  color: rgba(245, 242, 236, 0.9);
  margin: 0;
}

.poker-testimonial {
  padding-block: var(--space-8);
  background-color: var(--color-concrete-grey);
}

.poker-testimonial__content {
  max-width: 43.75rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.poker-testimonial__content h2 {
  margin: 0;
}

.poker-testimonial__content blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
}

.poker-testimonial__content blockquote p {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  line-height: var(--leading-h3);
  font-weight: var(--weight-h3);
  color: var(--color-deep-espresso);
  margin: 0;
}

.poker-testimonial__content blockquote footer {
  margin-top: var(--space-3);
  font-size: var(--text-small);
  color: var(--color-deep-espresso);
}

.poker-booking {
  padding-block: var(--space-8);
  background-color: var(--color-blackened-steel);
  color: var(--color-off-white);
}

.poker-booking__content {
  max-width: 37.5rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

.poker-booking__content .section-label {
  color: var(--color-off-white);
}

.poker-booking__content .section-label::before {
  background-color: var(--color-off-white);
}

.poker-booking__content h2 {
  color: var(--color-off-white);
  margin: 0;
}

.poker-booking__content p {
  color: rgba(245, 242, 236, 0.9);
  margin: 0;
}

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

.poker-booking__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.poker-booking__details p {
  margin: 0;
}

.poker-booking__details a {
  color: var(--color-off-white);
  text-decoration: underline;
}

.poker-booking__details a:hover {
  color: var(--color-burnt-peach);
}

@media (max-width: 1024px) {
  .poker-definition__grid,
  .poker-tables__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poker-nights__grid {
    grid-template-columns: 1fr;
  }
}

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

  .poker-hero__content {
    align-items: center;
    text-align: center;
    padding: var(--space-6) var(--container-padding);
  }

  .poker-hero__content p {
    max-width: 100%;
  }

  .poker-transition__grid,
  .poker-holdem__grid {
    grid-template-columns: 1fr;
  }

  .poker-definition__grid,
  .poker-tables__grid {
    grid-template-columns: 1fr;
  }

  .poker-definition__card p,
  .poker-tables__card p {
    max-width: 100%;
  }
}

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

  .poker-hero__content h1 {
    font-size: 2rem;
  }

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

  .poker-booking__actions .btn {
    width: 100%;
  }
}
