/* style/live.css */

/* Variables from custom palette */
:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-live {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color); /* Default text color for dark background */
    background-color: var(--background-color); /* Overall page background */
}

/* Container for consistent width */
.page-live__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Sections */
.page-live__section {
    padding: 60px 0;
    text-align: center;
}

.page-live__dark-section {
    background-color: var(--card-bg); /* Darker background for contrast */
}

/* Hero Section */
.page-live__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above, text below */
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--background-color);
}

.page-live__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-live__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-height: 200px; /* Ensure minimum size */
}

.page-live__hero-content {
    position: relative; /* Not absolute, to ensure it's below the image */
    max-width: 800px;
    margin-top: 40px; /* Spacing between image and text */
    padding: 0 20px;
    text-align: center;
    z-index: 2; /* Ensure text is above any subtle background effects if present */
}