/* style/live.css */
/* General styling for .page-live scope */
.page-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main on dark background */
  background-color: #0A0A0A; /* Background color */
}

/* Fixed header spacing for the first section */
.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Default for desktop */
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #000000; /* Dark text on bright gradient */
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.page-live__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column; /* Image block above text block */
  align-items: center;
  gap: 30px;
}

.page-live__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-live__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000000; /* Dark text on bright gradient */
}

.page-live__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333; /* Darker text for readability */
}

.page-live__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* For mobile responsiveness */
}

/* General container styling */
.page-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-live__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Main color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-live__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF6D6; /* Text Main */
}

.page-live__highlight {
  color: #FFD36B; /* Glow color for highlights */
  font-weight: bold;
}

/* Button styling */
.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow word wrapping */
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #000000; /* Dark text on bright button */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-live__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color for text */
  border: 2px solid #F2C14E; /* Border color */
}

.page-live__btn-secondary:hover {
  background: #F2C14E;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-live__btn-text {
  background: none;
  border: none;
  color: #FFD36B; /* Glow color for text buttons */
  padding: 5px 10px;
  font-size: 0.9em;
  text-decoration: underline;
}

.page-live__btn-text:hover {
  color: #FFF6D6;
}

.page-live__btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
}