/* style/promotions.css */

/* Core Styles for Promotions Page */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light gray for text, good contrast with dark background */
    background-color: #1A202C; /* Primary dark background */
    line-height: 1.6;
}

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Secondary gold for titles */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions__section-subtitle {
    font-size: 1.2em;
    color: #CBD5E0; /* Lighter gray for subtitles */
    text-align: center;
    margin-bottom: 40px;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A202C; /* Dark text for contrast */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #E5C100; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

/* Hero Section */
.page-promotions__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_pattern,dark_gold,subtle]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions__hero-section > .page-promotions__container {
    position: relative;
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.3em;
    color: #E2E8F0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions__hero-image {
    max-width: 600px;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.page-promotions__intro-section {
    padding: 80px 0;
    background-color: #2D3748; /* Slightly lighter dark background */
    text-align: center;
}

.page-promotions__intro-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CBD5E0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Categories Section */
.page-promotions__categories-section {
    padding: 80px 0;
    background-color: #1A202C;
}

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

.page-promotions__category-card {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a475a;
}

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

.page-promotions__category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-promotions__category-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__category-card p {
    color: #CBD5E0;
    font-size: 0.95em;
}

/* Featured Promotions Section */
.page-promotions__featured-promos-section {
    padding: 80px 0;
    background-color: #2D3748;
}

.page-promotions__promo-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-promotions__promo-card {
    background-color: #1A202C;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #3a475a;
}

.page-promotions__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.page-promotions__promo-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__promo-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__promo-title a:hover {
    color: #E5C100;
    text-decoration: underline;
}

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

.page-promotions__promo-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
    padding: 80px 0;
    background-color: #1A202C;
}

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

.page-promotions__benefit-item {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a475a;
}

.page-promotions__benefit-item h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions__benefit-item p {
    color: #CBD5E0;
    font-size: 0.95em;
}

.page-promotions__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

/* How to Participate Section */
.page-promotions__how-to-participate-section {
    padding: 80px 0;
    background-color: #2D3748;
    text-align: center;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-promotions__steps-list li {
    background-color: #1A202C;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a475a;
    position: relative;
    counter-increment: step-counter;
}

.page-promotions__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #1A202C;
    font-size: 1.8em;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1A202C;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.6);
}

.page-promotions__steps-list li h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-promotions__steps-list li p {
    color: #CBD5E0;
    font-size: 1em;
}

.page-promotions__cta-text {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-promotions__faq-item {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a475a;
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
    color: #CBD5E0;
    font-size: 1em;
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #4A5568;
}

.page-promotions__faq-answer.active {
    display: block;
}

/* Final CTA Section */
.page-promotions__final-cta-section {
    background: linear-gradient(45deg, #FFD700 0%, #E5C100 100%);
    padding: 80px 0;
    text-align: center;
    color: #1A202C;
}

.page-promotions__final-cta-section .page-promotions__section-title {
    color: #1A202C;
}

.page-promotions__final-cta-section .page-promotions__section-title::after {
    background-color: #1A202C;
}

.page-promotions__final-cta-section .page-promotions__section-subtitle {
    color: #1A202C;
    margin-bottom: 40px;
}

.page-promotions__btn--hero {
    background-color: #1A202C;
    color: #FFD700;
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__btn--hero:hover {
    background-color: #0F131A;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-card {
        flex-direction: column;
    }
    .page-promotions__promo-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__grid, .page-promotions__benefits-grid, .page-promotions__steps-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-content {
        padding: 20px;
    }
    .page-promotions__promo-title {
        font-size: 1.5em;
    }
    .page-promotions__promo-description {
        font-size: 0.95em;
    }
    .page-promotions__promo-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-promotions__btn--primary, .page-promotions__btn--secondary, .page-promotions__btn--large, .page-promotions__btn--hero {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-subtitle {
        font-size: 0.9em;
    }
    .page-promotions__hero-image {
        margin-top: 30px;
    }
    .page-promotions__category-card, .page-promotions__benefit-item, .page-promotions__faq-item {
        padding: 20px;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions__faq-answer {
        font-size: 0.9em;
    }
}