/* style/promotions.css */

/* Variables for consistent styling */
:root {
    --primary-color: #007BFF; /* Deep blue */
    --secondary-color: #28A745; /* Green */
    --accent-color: #FFA500; /* Orange for highlights */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --bg-light: #f8f9fa; /* Light background for sections */
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --dark-bg-1: #0d0d0d; /* From shared.css, implies dark body background */
}

/* Base styles for the page content, ensuring contrast with shared.css body background */
.page-promotions {
    color: var(--text-color-light); /* Light text for dark body background */
    background-color: var(--dark-bg-1); /* Ensure consistency, though body handles this */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-top: 120px; /* Desktop: Adjust for fixed header */
}

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

.page-promotions__main-title {
    font-size: 3.2em;
    font-weight: bold;
    color: var(--text-color-light);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions__description {
    font-size: 1.1em;
    color: var(--text-color-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--text-color-light);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.page-promotions__section-intro {
    font-size: 1.1em;
    color: var(--text-color-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color); /* Green for CTA */
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px var(--shadow-light);
}

.page-promotions__cta-button:hover {
    background: #218838; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--shadow-medium);
}

.page-promotions__cta-button--dark {
    background: var(--primary-color);
}

.page-promotions__cta-button--dark:hover {
    background: #0056b3;
}

.highlight-keyword {
    color: var(--accent-color); /* Orange for keywords */
    font-weight: bold;
}