/* style/promotions.css */

/* General Styling */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Primary dark background */
    line-height: 1.6;
}

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

.page-promotions .section-spacing {
    padding: 60px 0;
}

.page-promotions .bg-light {
    background-color: #2D3748; /* Slightly lighter dark for contrast sections */
}

.page-promotions .bg-dark-alt {
    background-color: #151A24; /* Even darker for emphasis */
}

.page-promotions .section-title {
    font-size: 36px;
    color: #FFD700; /* Accent color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-promotions .text-light {
    color: #FFD700; /* Accent color for specific text */
}

.page-promotions .text-light-alt {
    color: #F0F0F0; /* Lighter text on dark background */
}

/* Buttons */
.page-promotions .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700; /* Accent color for primary CTA */
    color: #1A202C; /* Dark text on accent background */
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions .cta-button:hover {
    background: #FFEB3B; /* Lighter accent on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions .cta-button-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: #4A5568; /* Secondary button color */
    color: #FFD700; /* Accent text on secondary button */
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
    cursor: pointer;
}

.page-promotions .cta-button-secondary:hover {
    background: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-promotions .btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: #FFD700;
    color: #1A202C;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.page-promotions .btn-small:hover {
    background: #FFEB3B;
    transform: translateY(-1px);
}

/* Hero Section */
.page-promotions .hero-promotions {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #1A202C;
    overflow: hidden;
}

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

.page-promotions .hero-image {
    width: 100%;
    height: auto;
    max-height: 500px; /* Limit height for aesthetic */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions .hero-content h1 {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.page-promotions .hero-content p {
    font-size: 18px;
    color: #F0F0F0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Promotions Overview */
.page-promotions .promotions-overview p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #B0B0B0;
}

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

.page-promotions .promo-card {
    background-color: #2D3748;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions .promo-card .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-promotions .promo-card h3 {
    font-size: 24px;
    color: #FFD700;
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-promotions .promo-card .card-title-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions .promo-card .card-title-link:hover {
    color: #FFEB3B;
}

.page-promotions .promo-card p {
    font-size: 16px;
    color: #B0B0B0;
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: center;
}

/* Promotion Detail Sections */
.page-promotions .promotion-detail {
    padding: 80px 0;
}

.page-promotions .promotion-detail .detail-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-promotions .promotion-detail .detail-content.reverse-layout {
    flex-direction: row-reverse;
}

.page-promotions .promotion-detail .content-img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions .promotion-detail .text-content {
    width: 50%;
}

.page-promotions .promotion-detail .text-content h3 {
    font-size: 28px;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions .promotion-detail .text-content p {
    font-size: 17px;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-promotions .promotion-detail .text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions .promotion-detail .text-content ul li {
    font-size: 16px;
    color: #E0E0E0;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-promotions .promotion-detail .text-content ul li::before {
    content: '•';
    color: #FFD700;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

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

.page-promotions .step-item {
    background-color: #2D3748;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions .step-item:hover {
    transform: translateY(-8px);
}

.page-promotions .step-item .step-icon {
    width: 100px; /* Display size */
    height: 100px; /* Display size */
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions .step-item h3 {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions .step-item p {
    font-size: 15px;
    color: #B0B0B0;
}

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

.page-promotions .faq-item {
    margin-bottom: 15px;
    border: 1px solid #4A5568;
    border-radius: 8px;
    background-color: #2D3748;
    overflow: hidden;
}

.page-promotions .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #2D3748;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-promotions .faq-question:hover {
    background: #3A455A;
}

.page-promotions .faq-question h3 {
    font-size: 18px;
    color: #FFD700;
    margin: 0;
    font-weight: bold;
}

.page-promotions .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-promotions .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    color: #E0E0E0;
    font-size: 16px;
    line-height: 1.7;
}

.page-promotions .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px 25px;
}

/* Call to Action Section */
.page-promotions .call-to-action {
    background-color: #FFD700; /* Accent background for strong CTA */
    color: #1A202C; /* Dark text on accent background */
    text-align: center;
    padding: 80px 20px;
}

.page-promotions .call-to-action .section-title {
    color: #1A202C;
    margin-bottom: 25px;
}

.page-promotions .call-to-action p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #333; /* Darker text for readability on yellow */
}

.page-promotions .call-to-action .cta-button {
    background: #1A202C; /* Dark button on accent background */
    color: #FFD700; /* Accent text on dark button */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions .call-to-action .cta-button:hover {
    background: #2D3748; /* Slightly lighter dark on hover */
    color: #FFEB3B;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions .hero-content h1 {
        font-size: 38px;
    }
    .page-promotions .section-title {
        font-size: 30px;
    }
    .page-promotions .promotion-detail .detail-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions .promotion-detail .detail-content.reverse-layout {
        flex-direction: column;
    }
    .page-promotions .promotion-detail .content-img,
    .page-promotions .promotion-detail .text-content {
        width: 100%;
    }
    .page-promotions .promotion-detail .content-img {
        margin-bottom: 30px;
        max-height: 350px;
    }
    .page-promotions .promo-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions .hero-promotions {
        padding: 60px 15px;
    }
    .page-promotions .hero-content h1 {
        font-size: 32px;
    }
    .page-promotions .hero-content p {
        font-size: 16px;
    }
    .page-promotions .cta-button {
        padding: 12px 30px;
        font-size: 18px;
    }
    .page-promotions .section-spacing {
        padding: 40px 0;
    }
    .page-promotions .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-promotions .promo-card h3 {
        font-size: 20px;
    }
    .page-promotions .promo-card p {
        font-size: 15px;
    }
    .page-promotions .promotion-detail .text-content h3 {
        font-size: 24px;
    }
    .page-promotions .promotion-detail .text-content p,
    .page-promotions .promotion-detail .text-content ul li {
        font-size: 15px;
    }
    .page-promotions .step-by-step {
        grid-template-columns: 1fr;
    }
    .page-promotions .step-item {
        padding: 25px;
    }
    .page-promotions .step-item .step-icon {
        width: 80px;
        height: 80px;
    }
    .page-promotions .faq-question h3 {
        font-size: 16px;
    }
    .page-promotions .faq-question {
        padding: 15px 20px;
    }
    .page-promotions .faq-answer {
        padding: 10px 20px 20px;
        font-size: 15px;
    }
    .page-promotions .call-to-action .section-title {
        font-size: 28px;
    }
    .page-promotions .call-to-action p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-promotions .hero-content h1 {
        font-size: 28px;
    }
    .page-promotions .cta-button {
        font-size: 16px;
        padding: 10px 25px;
    }
    .page-promotions .section-title {
        font-size: 24px;
    }
    .page-promotions .promo-categories {
        grid-template-columns: 1fr;
    }
    .page-promotions .promotion-detail .content-img {
        height: 250px;
    }
}