/* style/promotions.css */
/* Base Styles for Promotions Page */
.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #f8f8f8; /* Slightly off-white background for main content */
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background: linear-gradient(135deg, #FFD700, #8B0000); /* Brand colors */
    color: #ffffff; /* Light text on dark/gradient background */
    overflow: hidden; /* Prevent content overflow */
}

.page-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1; /* Image behind content */
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-content {
    position: absolute; /* Overlay content on image */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%; /* Adjust width for content overlay */
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    font-weight: bold;
}

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

.page-promotions__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary {
    background: #FFD700; /* Gold */
    color: #8B0000; /* Dark red text for contrast */
    border-color: #FFD700;
}

.page-promotions__btn-primary:hover {
    background: #e0b800; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-secondary {
    background: #8B0000; /* Dark red */
    color: #FFD700; /* Gold text for contrast */
    border-color: #8B0000;
}

.page-promotions__btn-secondary:hover {
    background: #6a0000; /* Slightly darker red */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-promotions__section {
    padding: 60px 20px;
    text-align: center;
}

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

.page-promotions__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #8B0000; /* Dark red for section titles */
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #333333;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-promotions__text-block a {
    color: #8B0000; /* Link color */
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__text-block a:hover {
    text-decoration: underline;
}

.page-promotions__image-content {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Overview Section */
.page-promotions__overview-section {
    background-color: #ffffff;
}

/* Categories Section */
.page-promotions__categories-section {
    background-color: #f0f0f0;
}

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

.page-promotions__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-content p {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-content .page-promotions__btn-primary {
    align-self: flex-start;
    padding: 10px 25px;
    font-size: 0.9em;
    border-radius: 5px;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
    background: #8B0000; /* Dark red background */
    color: #ffffff; /* Light text */
}

.page-promotions__how-to-claim-section .page-promotions__section-title,
.page-promotions__how-to-claim-section .page-promotions__text-block,
.page-promotions__how-to-claim-section .page-promotions__step-title,
.page-promotions__how-to-claim-section .page-promotions__step-description {
    color: #ffffff; /* Ensure all text is light */
}

.page-promotions__how-to-claim-section .page-promotions__text-block a {
    color: #FFD700; /* Gold link color on dark background */
}

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

.page-promotions__step-item {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-promotions__step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: #FFD700; /* Gold icon background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-icon img {
     /* Adjust icon size */
    
    object-fit: contain;
}

.page-promotions__step-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFD700; /* Gold for step titles */
}

.page-promotions__step-description {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-promotions__cta-buttons--center {
    margin-top: 50px;
}

/* Terms and Conditions Section */
.page-promotions__terms-section {
    background-color: #ffffff;
}

.page-promotions__terms-list {
    list-style: disc;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
    padding-left: 40px;
    color: #333333;
    font-size: 1.05em;
}

.page-promotions__terms-list li {
    margin-bottom: 15px;
}

.page-promotions__terms-list li strong {
    color: #8B0000;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    background-color: #f0f0f0;
}

.page-promotions__advantages-list {
    list-style: none;
    text-align: left;
    max-width: 900px;
    margin: 30px auto;
    padding: 0;
    color: #333333;
    font-size: 1.05em;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-promotions__advantages-list li {
    position: relative;
    padding-left: 30px;
}

.page-promotions__advantages-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold checkmark */
    font-size: 1.2em;
    top: 0;
}

/* FAQ Section */
.page-promotions__faq-section {
    background-color: #ffffff;
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}