/* style/resources-exclusive-promotions.css */

/* Base Styles for the page content */
.page-resources-exclusive-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text color for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

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

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

.page-resources-exclusive-promotions__section-title {
    font-size: 2.5em;
    color: #ffffff; /* Ensure high contrast */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-exclusive-promotions__section-intro {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-resources-exclusive-promotions__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Responsive height */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

.page-resources-exclusive-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.7); /* Adjust brightness for readability, NOT color */
}

.page-resources-exclusive-promotions__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: -1;
}

.page-resources-exclusive-promotions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-resources-exclusive-promotions__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-resources-exclusive-promotions__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

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

/* Buttons */
.page-resources-exclusive-promotions__btn-primary,
.page-resources-exclusive-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;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-resources-exclusive-promotions__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-resources-exclusive-promotions__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
    color: #ffffff;
}

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

.page-resources-exclusive-promotions__btn-secondary:hover {
    background-color: #ffffff;
    color: #017439; /* Brand primary color */
}

/* Why Choose Section */
.page-resources-exclusive-promotions__why-choose {
    background-color: #1a1a2e; /* Dark background matching body */
}

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

.page-resources-exclusive-promotions__feature-card {
    background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-exclusive-promotions__feature-card:hover {
    transform: translateY(-10px);
}

.page-resources-exclusive-promotions__feature-icon {
    width: 200px; /* Minimum size */
    height: 200px; /* Minimum size */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-resources-exclusive-promotions__feature-title {
    font-size: 1.5em;
    color: #017439; /* Brand primary for emphasis */
    margin-bottom: 15px;
}

.page-resources-exclusive-promotions__feature-description {
    color: #f0f0f0;
    font-size: 1em;
}

.page-resources-exclusive-promotions__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Promotion Types Section */
.page-resources-exclusive-promotions__promotion-types {
    background-color: #1a1a2e; /* Dark background */
}

.page-resources-exclusive-promotions__promo-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-resources-exclusive-promotions__promo-card {
    background: rgba(255, 255, 255, 0.08); /* Slightly lighter background for promo cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-exclusive-promotions__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-exclusive-promotions__promo-title {
    font-size: 1.8em;
    color: #017439; /* Brand primary for titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-exclusive-promotions__promo-description {
    color: #f0f0f0;
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* How to Claim Section */
.page-resources-exclusive-promotions__how-to-claim {
    background-color: #1a1a2e; /* Dark background */
}

.page-resources-exclusive-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-resources-exclusive-promotions__step-card {
    background: rgba(255, 255, 255, 0.05); /* Card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-exclusive-promotions__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #017439; /* Brand primary color */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid #017439;
}

.page-resources-exclusive-promotions__step-title {
    font-size: 1.6em;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-exclusive-promotions__step-description {
    color: #f0f0f0;
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Terms & Conditions Section */
.page-resources-exclusive-promotions__terms-conditions {
    background-color: #1a1a2e; /* Dark background */
}

.page-resources-exclusive-promotions__terms-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}}