/* style/promotions.css */

/* Variables for consistent theming */
:root {
    --page-promotions-primary-color: #0A2463; /* Royal Blue */
    --page-promotions-secondary-color: #FFD700; /* Gold */
    --page-promotions-text-light: #f8f8f8;
    --page-promotions-text-dark: #333333; /* Darker for contrast on light backgrounds */
    --page-promotions-background-light: #ffffff;
    --page-promotions-background-grey: #f0f2f5;
    --page-promotions-border-color: #e0e0e0;
}

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

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section:nth-of-type(even) {
    background-color: var(--page-promotions-background-grey);
}

.page-promotions__hero-section {
    background: linear-gradient(135deg, var(--page-promotions-primary-color) 0%, #204a87 100%);
    color: var(--page-promotions-text-light);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-promotions__hero-section .page-promotions__container {
    z-index: 1;
    position: relative;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-promotions-secondary-color); /* Gold title on dark blue background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--page-promotions-text-light);
}

.page-promotions__hero-description a {
    color: var(--page-promotions-secondary-color);
    text-decoration: underline;
}

.page-promotions__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    opacity: 0.3;
    z-index: 0;
    height: auto;
    object-fit: cover;
}

.page-promotions__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--page-promotions-primary-color);
    position: relative;
    padding-bottom: 15px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-promotions-secondary-color);
    border-radius: 2px;
}

.page-promotions__section-intro {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--page-promotions-text-dark);
}

.page-promotions__brand-highlight {
    color: var(--page-promotions-secondary-color);
    font-weight: bold;
}

/* Buttons */
.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.page-promotions__btn--primary {
    background-color: var(--page-promotions-secondary-color);
    color: var(--page-promotions-primary-color); /* Dark text on gold button */
    border: 2px solid var(--page-promotions-secondary-color);
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn--secondary {
    background-color: var(--page-promotions-primary-color);
    color: var(--page-promotions-secondary-color); /* Gold text on dark blue button */
    border: 2px solid var(--page-promotions-primary-color);
}

.page-promotions__btn--secondary:hover {
    background-color: #071b4a; /* Slightly darker blue */
    border-color: #071b4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}