/* style/casino-baccarat-guide.css */

/* Base styles for the page content, ensuring contrast on dark body background */
.page-casino-baccarat-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-casino-baccarat-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-casino-baccarat-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-casino-baccarat-guide__section--dark {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-casino-baccarat-guide__section--light {
  background-color: #ffffff; /* Auxiliary color */
  color: #333333; /* Dark text for light background */
}

.page-casino-baccarat-guide__heading {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: inherit; /* Inherit from section for contrast */
}

.page-casino-baccarat-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-casino-baccarat-guide__paragraph--center {
  text-align: center;
}

.page-casino-baccarat-guide__highlight {
  color: #FFFF00; /* Yellow for highlights */
  font-weight: bold;
}

/* Hero Section */
.page-casino-baccarat-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.page-casino-baccarat-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.page-casino-baccarat-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-casino-baccarat-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-casino-baccarat-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-casino-baccarat-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-casino-baccarat-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-casino-baccarat-guide__btn-primary,
.page-casino-baccarat-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}

.page-casino-baccarat-guide__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-casino-baccarat-guide__btn-primary:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}