/* style/poker.css */

/* Base styles for the poker page content */
.page-poker {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color, contrasting with #0A0A0A background */
  background-color: #0A0A0A; /* Page background color from custom palette */
}

/* Sections */
.page-poker__section {
  padding: 80px 0;
  margin-bottom: 0; /* Remove default margins */
  box-sizing: border-box;
}

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Brand colors for hero background */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Image above, text below */
  align-items: center;
  gap: 30px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-poker__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-poker__hero-content {
  position: relative; /* Not absolute, to avoid overlay */
  z-index: 2;
  color: #000000; /* Dark text for light gradient background */
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000000; /* Dark text for light gradient background */
}

.page-poker__tagline {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #333333; /* Dark text for light gradient background */
}

.page-poker__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-poker__btn-primary,
.page-poker__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-poker__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button color */
  color: #0A0A0A; /* Dark text for golden button */
  border: 2px solid transparent;
}

.page-poker__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 216, 106, 0.4);
}

.page-poker__btn-secondary {
  background: #111111; /* Card BG color */
  color: #F2C14E; /* Main brand color for text */
  border: 2px solid #F2C14E; /* Main brand color for border */
}

.page-poker__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-poker__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-poker__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD36B; /* Auxiliary color for section titles */
}