/* =========================================================
   PAGES.CSS — Society Clubroom
   Page-specific styles. Global styles live in main.css.
   ========================================================= */


/* =========================================================
   HOMEPAGE — HERO
   ========================================================= */

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__glow img {
  width: 80%;
  max-width: 60rem;
  height: auto;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.hero__ace {
  display: none;
  position: absolute;
  right: 3rem;
  bottom: 8rem;
  z-index: 2;
  pointer-events: none;
}

.hero__ace img {
  width: 22rem;
  height: auto;
  opacity: 0.18;
}

@media (min-width: 1200px) {
  .hero__ace {
    display: block;
  }
}


/* =========================================================
   HOMEPAGE — SECTION COMMON
   ========================================================= */

.section-icon {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
}

.section-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--color-red-glow));
}

.text-center .section-icon {
  margin: 0 auto;
}

.section-divider {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  opacity: 0.45;
}

.section-divider img {
  width: 10rem;
  height: auto;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-group--center {
  justify-content: center;
}


/* =========================================================
   HOMEPAGE — LOUNGE INTRO
   ========================================================= */

.split-section__media--portrait {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.split-section__media--portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.split-section__media-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}

.split-section__media-glow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.65;
}

@media (min-width: 992px) {
  .split-section__media--portrait {
    min-height: 38rem;
  }
}


/* =========================================================
   HOMEPAGE — MENU PREVIEW
   ========================================================= */

/* (uses base .menu-teaser styles from main.css) */


/* =========================================================
   HOMEPAGE — POKER STREAMS
   ========================================================= */

.streams-section {
  overflow: hidden;
}

.event-strip--full {
  border-radius: 0;
}

.event-strip__glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  pointer-events: none;
  z-index: 1;
}

.event-strip__glow img {
  width: 100%;
  height: auto;
  opacity: 0.6;
  mix-blend-mode: screen;
}

.event-strip__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
}

.event-strip__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(215, 174, 88, 0.5));
}

@media (min-width: 992px) {
  .event-strip--full {
    min-height: 38rem;
  }
}


/* =========================================================
   HOMEPAGE — QUIZZES
   ========================================================= */

/* (uses base .split-section styles from main.css) */


/* =========================================================
   HOMEPAGE — LECTURES
   ========================================================= */

.hp-lectures-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hp-lectures-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-soft);
  font-size: 0.975rem;
  line-height: 1.5;
}

.hp-lectures-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--color-gold);
  font-size: 0.75rem;
}


/* =========================================================
   HOMEPAGE — GALLERY MOSAIC
   ========================================================= */

.gallery-grid--homepage {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 13rem;
}

@media (min-width: 640px) {
  .gallery-grid--homepage {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 14rem;
  }
}

@media (min-width: 1200px) {
  .gallery-grid--homepage {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 15rem;
  }

  .gallery-grid--homepage .gallery-grid__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}


/* =========================================================
   HOMEPAGE — LOCATION & HOURS
   ========================================================= */

.split-section__media--clipped {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.split-section__media--clipped img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-location__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0 2rem;
}

.hp-location__row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hp-location__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hp-location__row span:not(.hp-location__label),
.hp-location__row a {
  color: var(--color-text-soft);
  font-size: 0.975rem;
  text-decoration: none;
  transition: color var(--transition);
}

.hp-location__row a:hover {
  color: var(--color-gold);
}

@media (min-width: 640px) {
  .hp-location__row {
    flex-direction: row;
    align-items: baseline;
    gap: 1rem;
  }

  .hp-location__label {
    flex: 0 0 5.5rem;
  }
}


/* =========================================================
   HOMEPAGE — CONTACT CTA
   ========================================================= */

.hp-cta-section {
  position: relative;
  overflow: hidden;
  padding: 5rem var(--container-pad);
  background: var(--color-bg-soft);
  text-align: center;
}

.hp-cta-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 56rem);
  pointer-events: none;
  z-index: 0;
}

.hp-cta-section__glow img {
  width: 100%;
  height: auto;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.hp-cta-section__emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 26rem);
  pointer-events: none;
  z-index: 0;
}

.hp-cta-section__emblem img {
  width: 100%;
  height: auto;
  opacity: 0.06;
}

.hp-cta-section .container {
  position: relative;
  z-index: 1;
}

.hp-cta-section__inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hp-cta-section__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin: 0;
}

.hp-cta-section__text {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 32rem;
  margin: 0;
}

@media (min-width: 768px) {
  .hp-cta-section {
    padding: 7rem var(--container-pad);
  }
}


/* =========================================================
   PAGE: LOUNGE
   ========================================================= */

/* (lounge uses base split-section, gallery-grid--full, hp-cta-section — no extra rules needed) */


/* =========================================================
   PAGE: MORE-ABOUT-US
   ========================================================= */

.mau-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .mau-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mau-value-card {
  background: var(--color-panel-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.mau-value-card:hover {
  border-color: var(--color-border-red);
  transform: translateY(-4px);
}

.mau-value-card__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
}

.mau-value-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--color-red-glow));
}

.mau-value-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 0.75rem;
}

.mau-value-card__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

/* Quote strip */

.mau-quote-strip {
  position: relative;
  overflow: hidden;
  padding: 5rem var(--container-pad);
  text-align: center;
}

.mau-quote-strip__bg {
  position: absolute;
  inset: 0;
}

.mau-quote-strip__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mau-quote-strip__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
}

.mau-quote-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mau-quote-strip__quote {
  margin: 0;
  padding: 0;
  border: none;
}

.mau-quote-strip__quote p {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--color-text-soft);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

@media (min-width: 768px) {
  .mau-quote-strip {
    padding: 7rem var(--container-pad);
  }
}


/* =========================================================
   PAGE: MENU
   ========================================================= */

.menu-category--bar {
  background: var(--color-panel);
  border: 1px solid var(--color-border-red);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.menu-category--bar .menu-category__title {
  color: var(--color-gold);
}

.menu-category__bar-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.menu-category__bar-icons img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(215, 174, 88, 0.4));
}

.menu-responsible {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  background: rgba(197, 52, 52, 0.06);
}


/* =========================================================
   PAGE: HOW-TO-PLAY
   ========================================================= */


/* =========================================================
   PAGE: CONTACTS
   ========================================================= */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-page-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}

/* Info card */

.contact-info-card {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-card__row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-card__row:first-child {
  padding-top: 0;
}

.contact-info-card__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-info-card__value {
  font-size: 0.9375rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin: 0;
  font-style: normal;
}

.contact-info-card__value a {
  color: var(--color-text-soft);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-card__value a:hover {
  color: var(--color-gold);
}

.contact-info-map-btn {
  display: inline-flex;
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* Contact form */

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.contact-form__label em {
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-muted);
  font-size: 0.75rem;
}

.contact-form__input,
.contact-form__textarea {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  box-sizing: border-box;
  outline: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--color-muted);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(215, 174, 88, 0.12);
}

.contact-form__input--error,
.contact-form__textarea.contact-form__input--error {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(197, 52, 52, 0.12);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form__error {
  font-size: 0.8125rem;
  color: var(--color-red);
  line-height: 1.4;
}

/* Checkbox */

.contact-form__checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.contact-form__checkbox {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2em;
  accent-color: var(--color-red);
  cursor: pointer;
}

.contact-form__checkbox-label a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-form__checkbox-label a:hover {
  color: var(--color-white);
}

/* Submit row */

.contact-form__submit {
  margin-top: 1.75rem;
}

/* Location visual */

.contact-location-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 28rem;
}

.contact-location-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* =========================================================
   PAGE: THANK-YOU
   ========================================================= */

.ty-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--container-pad) 6rem;
  overflow: hidden;
  text-align: center;
}

.ty-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 28rem);
  pointer-events: none;
  z-index: 0;
}

.ty-emblem img {
  width: 100%;
  height: auto;
  opacity: 0.05;
}

.ty-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ty-icon {
  width: 5rem;
  height: 5rem;
}

.ty-icon img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px var(--color-red-glow));
}

.ty-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin: 0;
}

.ty-text {
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0;
  max-width: 30rem;
}

.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}


/* =========================================================
   PAGE: LEGAL (privacy-policy, terms, cookie-policy)
   ========================================================= */


/* =========================================================
   PAGE: 404
   ========================================================= */


/* =========================================================
   HEADER — SCROLL STATE
   ========================================================= */

.site-header.is-scrolled {
  border-bottom-color: var(--color-border-red);
}
