/* style/promotions.css */
:root {
    --primary-color: #1A202C; /* Deep gray */
    --secondary-color: #FFD700; /* Gold */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --bg-dark: #1A202C;
    --border-color: #e0e0e0;
}

.page-promotions {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light); /* Assuming body background is light for general content areas */
}

/* Ensure content is not hidden by fixed header */
.page-promotions__hero-banner {
    padding-top: 180px; /* Desktop: Adjust as needed for fixed header */
}

@media (max-width: 768px) {
    .page-promotions__hero-banner {
        padding-top: 140px; /* Mobile: Adjust as needed for fixed header */
    }
}

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

.page-promotions__main-title {
    font-size: 3.2em;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions__section-title--light {
    color: var(--text-light);
}

.page-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-promotions__text-block a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__text-block a:hover {
    color: var(--secondary-color);
}

/* Hero Banner Section */
.page-promotions__hero-banner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #0d121c); /* Darker gradient for hero background */
    padding-bottom: 60px; /* Consistent padding */
}

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

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

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

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

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #FFD700, #FFA500); /* Gold gradient */
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-promotions__cta-button:hover {
    background: linear-gradient(90deg, #FFA500, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.page-promotions__cta-button--small {
    padding: 10px 25px;
    font-size: 1em;
    margin-top: 15px;
}

/* Introduction Section */
.page-promotions__introduction-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Promotion Categories Section */
.page-promotions__promotion-categories {
    padding: 60px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-promotions__category-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    border-radius: 12px;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__category-image {
    width: 250px; /* Larger image for categories */
    height: auto;
    border-radius: 8px;
    margin-right: 30px;
    object-fit: cover;
    flex-shrink: 0;
}

.page-promotions__category-content {
    flex-grow: 1;
}

.page-promotions__category-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__category-description {
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-promotions__category-description a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__category-description a:hover {
    color: #fff;
}

/* Guide Section */
.page-promotions__guide-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

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

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

.page-promotions__step-icon {
    width: 150px; /* Larger icons for steps */
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page-promotions__step-description {
    font-size: 1em;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-promotions__step-description a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__step-description a:hover {
    color: var(--secondary-color);
}

/* Tips Section */
.page-promotions__tips-section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-promotions__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__tips-list li {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__tips-list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-right: 15px;
    font-weight: bold;
}

.page-promotions__tips-list li p {
    margin: 0;
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.7;
}

.page-promotions__tips-list li a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__tips-list li a:hover {
    color: #fff;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-promotions__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-promotions__faq-question:active {
    background: #eeeeee;
}

.page-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-promotions__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    color: var(--primary-color);
}

.page-promotions__faq-answer p {
    margin: 0;
    font-size: 1em;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-promotions__faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__faq-answer a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__main-title {
        font-size: 2.5em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__category-card {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__category-image {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        max-width: 300px;
    }
    .page-promotions__category-title {
        font-size: 1.5em;
    }
    .page-promotions__guide-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-banner {
        padding-bottom: 40px;
    }
    .page-promotions__main-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__introduction-section,
    .page-promotions__promotion-categories,
    .page-promotions__guide-section,
    .page-promotions__tips-section,
    .page-promotions__faq-section {
        padding: 40px 15px;
    }
    .page-promotions__category-card {
        padding: 20px;
    }
    .page-promotions__category-title {
        font-size: 1.3em;
    }
    .page-promotions__category-description,
    .page-promotions__text-block,
    .page-promotions__step-description,
    .page-promotions__tips-list li p,
    .page-promotions__faq-question h3,
    .page-promotions__faq-answer p {
        font-size: 0.95em;
    }
    .page-promotions__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-promotions__faq-question h3 {
        font-size: 1.05em;
        width: calc(100% - 40px);
    }
    .page-promotions__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 15px !important;
    }
}