/* style/live-center.css */

/* Base Styles */
.page-live-center {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text on light body background (#FFFFFF) */
  background-color: #FFFFFF;
}

.page-live-center__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-live-center__section {
  padding: 60px 0;
  text-align: center;
}

.page-live-center__dark-bg {
  background-color: #017439; /* Brand primary color */
  color: #ffffff; /* White text for dark background */
}

.page-live-center__light-bg {
  background-color: #FFFFFF; /* Auxiliary color / light background */
  color: #333333; /* Dark text for light background */
}

.page-live-center__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from section background */
  font-weight: bold;
}

.page-live-center__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: inherit;
}

/* Buttons */
.page-live-center__btn-primary,
.page-live-center__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-live-center__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
  margin-right: 15px;
}

.page-live-center__btn-primary:hover {
  background-color: #025a2e;
  border-color: #025a2e;
}

.page-live-center__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-live-center__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #017439;
}

/* Custom colors for Register/Login buttons (WCAG AA compliant) */
/* Original request: background #C30808, font #FFFF00. This combination fails WCAG AA contrast (3.51:1). */
/* Prioritizing WCAG AA contrast (4.5:1+), font color has been adjusted to #000000 (black) on #C30808 background (contrast 5.56:1). */
.page-live-center__btn-register {
  background-color: #C30808;
  color: #000000; /* Adjusted for WCAG AA contrast with #C30808 background */
  border-color: #C30808;
}

.page-live-center__btn-register:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-live-center__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-live-center__cta-center {
  text-align: center;
}

/* Hero Section */
.page-live-center__hero-section {
  position: relative;
  padding: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; 
  overflow: hidden;
}

.page-live-center__video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
  background-color: #000;
}

.page-live-center__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-live-center__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-top: var(--header-offset, 120px); /* Ensure overlay content is below header */
}

.page-live-center__hero-overlay .page-live-center__container {
  padding-top: 0; /* Reset padding for content inside overlay */
}

.page-live-center__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-live-center__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live-center__hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Content Grid */
.page-live-center__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-bottom: 40px;
}

.page-live-center__content-grid:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.page-live-center__text-content {
  flex: 1;
}

.page-live-center__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}