/* style/promotions.css */
.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* body background is #0a0a0a from shared.css */
}

/* Fixed Header Spacing */
.page-promotions__hero-section {
    padding-top: var(--header-offset, 120px); /* Apply header offset */
}

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    background-color: #333333; /* Auxiliary color as a base for dark-bg */
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3; /* Slightly dim image to ensure text readability */
}

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

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E44D26; /* Main color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* General Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

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

.page-promotions__btn-primary:hover {
    background-color: #d0401f;
    border-color: #d0401f;
}

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

.page-promotions__btn-secondary:hover {
    background-color: #E44D26;
    color: #ffffff;
}

.page-promotions__btn-link {
    background-color: transparent;
    color: #E44D26;
    border: none;
    padding: 10px 0;
    text-align: left;
    font-size: 1em;
}

.page-promotions__btn-link:hover {
    text-decoration: underline;
}

/* Section Styling */
.page-promotions__categories-section,
.page-promotions__featured-promos,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
    padding: 60px 0;
}

.page-promotions__dark-bg {
    background-color: #333333; /* Auxiliary color */
    color: #ffffff;
}

.page-promotions__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-promotions__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #E44D26; /* Main color for titles in light sections too */
}
.page-promotions__light-bg .page-promotions__section-title {
    color: #E44D26; /* Main color */
}
.page-promotions__dark-bg .page-promotions__section-title {
    color: #E44D26; /* Main color */
}


.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}
.page-promotions__light-bg .page-promotions__section-description {
    color: #333333;
}
.page-promotions__dark-bg .page-promotions__section-description {
    color: #f0f0f0;
}

/* Category Grid */
.page-promotions__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions__category-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #333333;
}

.page-promotions__category-item:hover {
    transform: translateY(-5px);
}

.page-promotions__category-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #E44D26;
}
.page-promotions__category-title a {
    color: #E44D26;
    text-decoration: none;
}