/* style/promotions.css */

:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --bg-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --light-text-color: #FFF6D6;
    --dark-text-color: #333333;
}

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

.page-promotions__section {
    padding: 60px 20px;
    position: relative;
}

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

.page-promotions__dark-bg {
    background: var(--bg-color);
    color: var(--light-text-color);
}

.page-promotions__light-bg {
    background: #f8f8f8;
    color: var(--dark-text-color);
}

.page-promotions__section-title {
    font-size: 38px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-promotions__section-description {
    font-size: 18px;
    color: var(--light-text-color);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__light-bg .page-promotions__section-description,
.page-promotions__light-bg .page-promotions__text-block {
    color: var(--dark-text-color);
}

.page-promotions__text-block {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

/* 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: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

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

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

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

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-promotions__main-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--light-text-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 20px;
    color: var(--light-text-color);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-promotions__cta-button,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-promotions__cta-button:hover,
.page-promotions__btn-secondary:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__btn-secondary {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 38px;
}

.page-promotions__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.page-promotions__button-group {
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

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

.page-promotions__promo-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__promo-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.page-promotions__promo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-promotions__promo-card:hover .page-promotions__promo-image-wrapper img {
    transform: scale(1.05);
}

.page-promotions__promo-content {
    padding: 25px;
}

.page-promotions__promo-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__promo-description {
    font-size: 15px;
    color: var(--light-text-color);
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__promo-content .page-promotions__cta-button {
    margin-top: 0;
    width: 100%;
    text-align: center;
}

/* How to Claim Section */
.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__step-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-text-color);
}

.page-promotions__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__step-item img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px;
}

.page-promotions__step-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-promotions__step-description {
    font-size: 15px;
    color: var(--dark-text-color);
    text-align: justify;
}

/* Contact List */
.page-promotions__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: center;
}

.page-promotions__contact-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--dark-text-color);
}

.page-promotions__contact-list li img {
    
    
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px;
    object-fit: contain;
}

/* FAQ Section */
.page-promotions__faq-list {
    margin-top: 40px;
}

details.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--light-text-color);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
    background: rgba(var(--primary-color), 0.1);
}

.page-promotions__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--light-text-color);
}

.page-promotions__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 20px;
    background: #1a1a1a; /* Slightly lighter dark background for answer */
    border-radius: 0 0 5px 5px;
    color: var(--light-text-color);
}

.page-promotions__faq-answer p {
    font-size: 15px;
    margin: 0;
    color: var(--light-text-color);
}

/* Latest News/Blog Section */
.page-promotions__news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__news-card {
    display: block;
    text-decoration: none;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__news-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.page-promotions__news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-promotions__news-card:hover .page-promotions__news-image-wrapper img {
    transform: scale(1.05);
}

.page-promotions__news-content {
    padding: 20px;
}

.page-promotions__news-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-promotions__news-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.page-promotions__news-summary {
    font-size: 14px;
    color: var(--light-text-color);
    text-align: justify;
}

/* Global Image Sizing for Content Areas - Minimum 200px */
.page-promotions img:not(.page-promotions__hero-image img) {
    min-width: 200px;
    min-height: 200px;
    height: auto; /* Ensure aspect ratio is maintained */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 40px;
    }
    .page-promotions__hero-description {
        font-size: 18px;
    }
    .page-promotions__section-title {
        font-size: 32px;
    }
    .page-promotions__promo-grid,
    .page-promotions__steps-grid,
    .page-promotions__news-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__container,
    .page-promotions__promo-grid,
    .page-promotions__steps-grid,
    .page-promotions__news-grid,
    .page-promotions__button-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__main-title {
        font-size: 32px;
    }

    .page-promotions__hero-description {
        font-size: 16px;
    }

    .page-promotions__cta-button,
    .page-promotions__btn-secondary {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__section {
        padding: 40px 15px;
    }

    .page-promotions__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-promotions__section-description,
    .page-promotions__text-block {
        font-size: 15px;
    }

    .page-promotions__promo-image-wrapper {
        height: 180px;
    }

    .page-promotions__promo-title {
        font-size: 19px;
    }

    .page-promotions__promo-description {
        font-size: 14px;
    }

    .page-promotions__step-item img {
        
        
        min-width: 200px; /* Still enforce min size for content images */
        min-height: 200px;
    }

    .page-promotions__step-title {
        font-size: 18px;
    }

    .page-promotions__contact-list li {
        flex-direction: column;
        gap: 5px;
        font-size: 16px;
    }

    details.page-promotions__faq-item summary.page-promotions__faq-question {
        padding: 15px;
    }

    .page-promotions__faq-qtext {
        font-size: 15px;
    }

    .page-promotions__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }

    details.page-promotions__faq-item .page-promotions__faq-answer {
        padding: 0 15px 15px;
    }

    .page-promotions__news-image-wrapper {
        height: 150px;
    }

    .page-promotions__news-title {
        font-size: 16px;
    }

    .page-promotions__news-summary {
        font-size: 13px;
    }

    /* Ensure all images are responsive on mobile */
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: 28px;
    }
    .page-promotions__section-title {
        font-size: 24px;
    }
    .page-promotions__cta-button,
    .page-promotions__btn-secondary {
        font-size: 15px;
        padding: 10px 25px;
    }
    .page-promotions__promo-image-wrapper {
        height: 160px;
    }
    .page-promotions__promo-content {
        padding: 15px;
    }
    .page-promotions__promo-title {
        font-size: 17px;
    }
    .page-promotions__promo-description {
        font-size: 13px;
    }
    .page-promotions__step-item {
        padding: 20px;
    }
}