/* style/live.css */

/* Custom properties for colors */
:root {
  --phtaya-primary: #F2C14E;
  --phtaya-secondary: #FFD36B;
  --phtaya-card-bg: #111111;
  --phtaya-background: #0A0A0A;
  --phtaya-text-main: #FFF6D6;
  --phtaya-border: #3A2A12;
  --phtaya-glow: #FFD36B;
  --phtaya-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-live {
  color: var(--phtaya-text-main); /* Light text on dark body background */
  background-color: var(--phtaya-background);
  font-family: 'Arial', sans-serif; /* Default font */
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* 10px top padding as per requirement */
  overflow: hidden;
  min-height: 600px; /* Ensure hero section has a decent height */
}

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

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image slightly for text readability */
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-live__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size with clamp */
  color: var(--phtaya-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6); /* Glow effect */
}

.page-live__description {
  font-size: 1.2rem;
  color: var(--phtaya-text-main);
  margin-bottom: 30px;
  line-height: 1.5;
}

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

/* Buttons */
.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  text-align: center;
  box-sizing: border-box;
}