:root {
    --page-promotions-main-color: #C61F1F;
    --page-promotions-aux-color: #E53030;
    --page-promotions-card-bg: #2A1212;
    --page-promotions-background: #140C0C;
    --page-promotions-text-main: #FFF1E8;
    --page-promotions-border-color: #6A1E1E;
    --page-promotions-gold-color: #F3C54D;
    --page-promotions-deep-red: #7E0D0D;
    --page-promotions-button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    --page-promotions-text-light: #ffffff;
    --page-promotions-text-dark: #333333;
}

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

/* --- Hero Section --- */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom */
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

.page-promotions__hero-content {
    position: relative; /* Ensure content is above background image */
    z-index: 2;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly with image for visual flow */
    background: rgba(20, 12, 12, 0.8); /* Semi-transparent background for readability */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--page-promotions-text-light);
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    color: var(--page-promotions-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: var(--page-promotions-text-main);
    margin-bottom: 30px;
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
}

.page-promotions__btn-primary {
    background: var(--page-promotions-button-gradient);
    color: #ffffff; /* White text for contrast */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--page-promotions-gold-color);
    border: 2px solid var(--page-promotions-gold-color);
}