/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text for dark body background */
    background-color: #121212; /* Matches body background */
}

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #26A9E0; /* Primary brand color for hero background */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-content {
    max-width: 900px;
    z-index: 2;
    margin-bottom: 40px;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    display: block;
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    z-index: 2;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For mobile responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-promotions__btn-primary {
    background-color: #EA7C07; /* Login color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-promotions__btn-primary:hover {
    background-color: #d16e06;
    border-color: #d16e06;
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-promotions__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
    transform: translateY(-2px);
}

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

.page-promotions__introduction {
    background-color: #1a1a1a; /* Slightly lighter dark background */
    color: #f0f0f0;
}

.page-promotions__offers-grid {
    background-color: #121212;
}

.page-promotions__special-events {
    background-color: #1a1a1a;
}

.page-promotions__terms {
    background-color: #121212;
}

.page-promotions__faq {
    background-color: #1a1a1a;
}

.page-promotions__cta-final {
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff;
}

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

.page-promotions__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #26A9E0; /* Primary brand color for titles */
    font-weight: bold;
}

.page-promotions__introduction .page-promotions__section-title,
.page-promotions__special-events .page-promotions__section-title,
.page-promotions__faq .page-promotions__section-title {
    color: #ffffff; /* White titles on dark backgrounds */
}

.page-promotions__section-description {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-promotions__center-text {
    text-align: center;
}

.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff; /* Light text on card */
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
    width: 100%;
    max-width: 400px; /* Constrain image width */
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    display: block;
}

.page-promotions__card-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #26A9E0; /* Primary brand color for card titles */
    font-weight: bold;
}

.page-promotions__card-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
    flex-grow: 1; /* Pushes button to bottom */
}

.page-promotions__card-button {
    margin-top: auto; /* Aligns button to bottom */
    width: auto;
    min-width: 180px;
}

.page-promotions__event-list,
.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
}

.page-promotions__event-item,
.page-promotions__terms-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly visible item background */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #f0f0f0;
    border-left: 5px solid #26A9E0; /* Accent color */
}