/* style/promotions.css */
/* Base styles and variables */
:root {
    --color-primary: #11A84E; /* Main color */
    --color-secondary: #22C768; /* Auxiliary color */
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

/* Page specific styles, BEM naming */
.page-promotions {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text-main); /* Light text on dark background */
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure space above footer */
}

/* Headings */
.page-promotions h1,
.page-promotions h2,
.page-promotions h3,
.page-promotions h4,
.page-promotions h5,
.page-promotions h6 {
    color: var(--color-gold); /* Gold for emphasis */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-promotions h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive H1 font size */
    text-align: center;
    color: var(--color-text-main); /* Main text color for H1 */
    margin-bottom: 25px;
}

.page-promotions h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--color-gold);
    margin-bottom: 30px;
}

.page-promotions h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--color-text-main);
    margin-bottom: 15px;
}

/* Paragraphs and Lists */
.page-promotions p {
    margin-bottom: 15px;
    color: var(--color-text-main);
}

.page-promotions ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.page-promotions ul li {
    margin-bottom: 8px;
    color: var(--color-text-main);
}

/* Links */
.page-promotions a {
    color: var(--color-secondary); /* Use secondary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions a:hover {
    color: var(--color-glow);
    text-decoration: underline;
}