/* Poker Offline Page Styles */

/* Hero Section */
.poker-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url('/public/media/poker-offline-hero.webp');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  overflow: hidden;
}

.poker-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 47, 30, 0.85) 0%, rgba(30, 47, 30, 0.6) 50%, rgba(30, 47, 30, 0.3) 100%);
}

.poker-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
}

.poker-hero h1 {
  color: var(--color-white);
  font-size: var(--text-display-size);
  line-height: var(--text-display-line-height);
  letter-spacing: var(--text-display-letter-spacing);
  margin-block-end: 0;
  max-width: 60%;
}

.poker-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-h3-size);
  line-height: 1.5;
  max-width: 50%;
  margin-block-end: 0;
}

.poker-hero .btn {
  margin-block-start: var(--space-2xs);
}

/* Introduction Section */
.poker-intro {
  background-color: var(--surface-light);
}

.poker-intro__inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

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

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

/* Art of the Table Section */
.poker-art {
  background-color: var(--surface-light-alt);
}

.poker-art h2 {
  text-align: center;
  margin-block-end: var(--space-md);
}

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

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

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

.poker-art__card p {
  margin-block-end: 0;
}

/* Formats Section */
.poker-formats {
  background-color: var(--surface-dark);
}

.poker-formats h2 {
  text-align: center;
  margin-block-end: var(--space-md);
  color: var(--color-white);
}

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

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

.poker-formats__card h3 {
  margin-block-end: 0;
  color: var(--color-white);
}

.poker-formats__card p {
  margin-block-end: 0;
  color: rgba(255, 255, 255, 0.85);
}

.poker-formats__card .btn {
  align-self: flex-start;
  margin-block-start: var(--space-2xs);
}

/* Sensory Experience Section */
.poker-sensory {
  background-color: var(--surface-light);
}

.poker-sensory__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
}

.poker-sensory__text {
  flex: 0 0 60%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.poker-sensory__text h2,
.poker-sensory__text h3,
.poker-sensory__text p,
.poker-sensory__text ul {
  margin-block-end: 0;
}

.poker-sensory__text ul {
  list-style: disc;
  padding-inline-start: var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
}

.poker-sensory__image {
  flex: 0 0 40%;
  min-width: 0;
}

.poker-sensory__image img {
  width: 100%;
  height: auto;
  border-radius: 50% 50% 0 0;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* Ethics Section */
.poker-ethics {
  background-color: var(--surface-dark);
}

.poker-ethics__inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.poker-ethics__inner h2 {
  color: var(--color-white);
  margin-block-end: 0;
}

.poker-ethics__inner p {
  color: rgba(255, 255, 255, 0.85);
  margin-block-end: 0;
  text-align: left;
}

/* Gallery Section */
.poker-gallery {
  background-color: var(--surface-light);
}

.poker-gallery h2,
.poker-gallery p {
  text-align: center;
  max-width: 60%;
  margin-inline: auto;
}

.poker-gallery h2 {
  margin-block-end: var(--space-2xs);
}

.poker-gallery p {
  margin-block-end: var(--space-md);
}

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

.poker-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-medium);
  transition: transform var(--transition-fast);
}

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

.poker-gallery__grid img:nth-child(1) {
  aspect-ratio: 4 / 5;
}

.poker-gallery__grid img:nth-child(2) {
  aspect-ratio: 1 / 1;
}

.poker-gallery__grid img:nth-child(3) {
  aspect-ratio: 4 / 3;
}

/* Booking Section */
.poker-booking {
  background-color: var(--surface-light-alt);
}

.poker-booking__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
}

.poker-booking__text {
  flex: 0 0 40%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.poker-booking__text h2,
.poker-booking__text h3,
.poker-booking__text p {
  margin-block-end: 0;
}

.poker-booking__form {
  flex: 0 0 60%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.poker-booking__form h3,
.poker-booking__form p {
  margin-block-end: 0;
}

.poker-booking__form form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.poker-booking__form label {
  margin-block-end: 0;
}

.poker-booking__form input,
.poker-booking__form textarea {
  margin-block-end: 0;
}

.poker-booking__form .btn {
  align-self: flex-start;
  margin-block-start: var(--space-2xs);
}

/* Testimonials Section */
.poker-testimonials {
  background-color: var(--surface-dark);
}

.poker-testimonials__inner {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.poker-testimonials__inner h2 {
  color: var(--color-white);
  text-align: center;
  margin-block-end: 0;
}

.poker-testimonials__inner blockquote {
  color: var(--color-white);
  border-inline-start-color: var(--color-blush-500);
  margin-block-end: 0;
  font-size: var(--text-h3-size);
  line-height: 1.5;
}

.poker-testimonials__inner blockquote cite {
  display: block;
  margin-block-start: var(--space-2xs);
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--text-small-size);
  color: rgba(255, 255, 255, 0.7);
}

/* Final CTA Section */
.poker-final-cta {
  background: linear-gradient(135deg, var(--color-blush-300) 0%, var(--color-ivory-50) 100%);
}

.poker-final-cta__inner {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.poker-final-cta__inner h2,
.poker-final-cta__inner p {
  margin-block-end: 0;
}

.poker-final-cta__inner .btn {
  margin-block-start: var(--space-2xs);
}

/* Responsive Tablet */
@media (max-width: 1024px) {
  .poker-hero h1 {
    max-width: 70%;
  }

  .poker-hero p {
    max-width: 60%;
  }

  .poker-sensory__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .poker-sensory__text {
    flex: 0 0 100%;
    width: 100%;
  }

  .poker-sensory__image {
    flex: 0 0 100%;
    width: 100%;
  }

  .poker-booking__inner {
    flex-direction: column;
  }

  .poker-booking__text {
    flex: 0 0 100%;
    width: 100%;
  }

  .poker-booking__form {
    flex: 0 0 100%;
    width: 100%;
  }
}

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

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

  .poker-hero h1 {
    max-width: 100%;
    font-size: var(--text-h1-size);
    line-height: var(--text-h1-line-height);
  }

  .poker-hero p {
    max-width: 100%;
    font-size: var(--text-body-size);
  }

  .poker-hero .btn {
    align-self: center;
  }

  .poker-art__grid,
  .poker-formats__grid,
  .poker-gallery__grid {
    grid-template-columns: 1fr;
  }

  .poker-gallery__grid img {
    aspect-ratio: 4 / 3;
  }

  .poker-gallery h2,
  .poker-gallery p {
    max-width: 100%;
  }

  .poker-intro__inner,
  .poker-ethics__inner,
  .poker-testimonials__inner,
  .poker-final-cta__inner {
    padding-inline: var(--container-padding-x);
  }
}

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

  .poker-hero__content {
    gap: var(--space-2xs);
  }

  .poker-hero h1 {
    font-size: var(--text-h2-size);
    line-height: var(--text-h2-line-height);
  }

  .poker-art__grid,
  .poker-formats__grid,
  .poker-gallery__grid {
    gap: var(--space-2xs);
  }

  .poker-sensory__inner,
  .poker-booking__inner {
    gap: var(--space-xs);
  }

  .poker-testimonials__inner {
    gap: var(--space-xs);
  }
}
