/* style/promotions.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #222222;
    --border-color: #e0e0e0;
}

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

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

.page-promotions .hero-promotions {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions .hero-promotions .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px; /* Smaller container for hero content */
}

.page-promotions .hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.page-promotions .hero-image-wrapper {
    width: 100%;
    max-width: 800px; /* Adjust size as needed */
    margin-top: 30px;
}

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

.page-promotions .main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions .hero-description {
    font-size: 1.25em;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.5;
}

.page-promotions .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}

.page-promotions .cta-button:hover {
    background-color: var(--text-light);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions .section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--text-dark);
}

.page-promotions .overview-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.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-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions .card-img {
    width: 100%;
    max-width: 400px; /* Ensure images are large enough */
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-promotions .card-text {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.page-promotions .card-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions .card-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.page-promotions .welcome-bonus-section,
.page-promotions .deposit-rebate-section,
.page-promotions .game-specific-promo-section,
.page-promotions .regular-events-section,
.page-promotions .terms-section,
.page-promotions .conclusion-section {
    padding: 60px 0;
}

.page-promotions .welcome-bonus-section {
    background-color: #fff;
}

.page-promotions .sub-title {
    font-size: 2em;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-promotions .text-content {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: justify;
}

.page-promotions .content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-promotions .content-image.large {
    max-width: 900px;
    height: 500px;
}

.page-promotions .content-image.medium {
    max-width: 700px;
    height: 400px;
}

.page-promotions .styled-list,
.page-promotions .bullet-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-promotions .styled-list li {
    background: #f0f0f0;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1.05em;
    color: var(--text-dark);
    line-height: 1.5;
}

.page-promotions .styled-list li strong {
    color: var(--secondary-color);
}

.page-promotions .bullet-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-promotions .bullet-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -2px;
}

.page-promotions .bullet-list.large li {
    font-size: 1.1em;
    line-height: 1.8;
}

.page-promotions .cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-promotions .cta-button.large {
    padding: 18px 50px;
    font-size: 1.2em;
    margin: 0 10px;
}

.page-promotions .cta-button.secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.page-promotions .cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.page-promotions .deposit-rebate-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-promotions .deposit-rebate-section .section-title,
.page-promotions .deposit-rebate-section .sub-title {
    color: var(--primary-color);
}

.page-promotions .deposit-rebate-section .section-description,
.page-promotions .deposit-rebate-section .text-content,
.page-promotions .deposit-rebate-section .bullet-list li {
    color: var(--text-light);
}

.page-promotions .deposit-rebate-section .bullet-list li::before {
    color: var(--primary-color);
}

.page-promotions .game-specific-promo-section {
    background-color: #f0f0f0;
    padding-bottom: 80px;
}

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

.page-promotions .game-promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions .game-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions .game-promo-card .card-img {
    height: 200px;
    margin-bottom: 15px;
}

.page-promotions .game-promo-card .card-title {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-promotions .game-promo-card .card-text {
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-promotions .regular-events-section {
    background-color: #fff;
}

.page-promotions .event-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions .event-list li {
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-promotions .event-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions .event-list li strong {
    color: var(--secondary-color);
    font-size: 1.2em;
}

.page-promotions .terms-section {
    background-color: var(--bg-light);
}

.page-promotions .text-content.important {
    background-color: #fff8e1;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    font-weight: bold;
    color: var(--secondary-color);
}

.page-promotions .faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-promotions .faq-items-wrapper {
    margin-top: 40px;
    display: grid;
    gap: 15px;
}

/* FAQ default state - answer hidden */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to accommodate content */
    padding: 15px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Question style */
.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item .faq-question:hover {
    background: #f5f5f5;
}

.faq-item .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-dark);
}

/* Toggle icon */
.faq-item .faq-toggle {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.page-promotions .conclusion-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.page-promotions .conclusion-section .section-title,
.page-promotions .conclusion-section .section-description {
    color: var(--text-light);
}

.page-promotions .conclusion-section .section-title::after {
    background-color: var(--primary-color);
}

.page-promotions .cta-button.final {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    margin-top: 40px;
    padding: 18px 60px;
    font-size: 1.3em;
}

.page-promotions .cta-button.final:hover {
    background-color: var(--text-light);
    color: var(--secondary-color);
    border-color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions .main-title {
        font-size: 2.8em;
    }
    .page-promotions .section-title {
        font-size: 2em;
    }
    .page-promotions .sub-title {
        font-size: 1.8em;
    }
    .page-promotions .hero-img.large {
        height: 400px;
    }
    .page-promotions .hero-img.medium {
        height: 300px;
    }
    .page-promotions .promo-grid,
    .page-promotions .game-promo-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions .main-title {
        font-size: 2.2em;
    }
    .page-promotions .hero-description {
        font-size: 1.1em;
    }
    .page-promotions .section-title {
        font-size: 1.8em;
    }
    .page-promotions .sub-title {
        font-size: 1.5em;
    }
    .page-promotions .cta-button.large {
        padding: 15px 35px;
        font-size: 1.1em;
        margin: 10px 0;
    }
    .page-promotions .cta-center {
        flex-direction: column;
    }
    .page-promotions .hero-promotions,
    .page-promotions .overview-section,
    .page-promotions .welcome-bonus-section,
    .page-promotions .deposit-rebate-section,
    .page-promotions .game-specific-promo-section,
    .page-promotions .regular-events-section,
    .page-promotions .terms-section,
    .page-promotions .conclusion-section {
        padding: 40px 0;
    }
    .page-promotions .container {
        padding: 0 15px;
    }
    .page-promotions .content-image.large {
        height: 300px;
    }
    .page-promotions .content-image.medium {
        height: 250px;
    }
    .faq-item .faq-question {
        padding: 12px;
    }
    .faq-item .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-item .faq-answer {
        padding: 10px 12px;
    }
    .page-promotions .event-list li {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-promotions .bullet-list.large li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions .main-title {
        font-size: 1.8em;
    }
    .page-promotions .hero-description {
        font-size: 0.95em;
    }
    .page-promotions .section-title {
        font-size: 1.5em;
    }
    .page-promotions .sub-title {
        font-size: 1.3em;
    }
    .page-promotions .cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-promotions .hero-img.large {
        height: 200px;
    }
    .page-promotions .hero-img.medium {
        height: 180px;
    }
    .page-promotions .promo-card,
    .page-promotions .game-promo-card {
        padding: 20px;
    }
    .page-promotions .card-title {
        font-size: 1.5em;
    }
    .page-promotions .card-img {
        height: 180px;
    }
    .page-promotions .styled-list li {
        font-size: 0.95em;
        padding: 12px 15px;
    }
    .page-promotions .bullet-list li {
        font-size: 0.95em;
        padding-left: 25px;
    }
    .page-promotions .text-content.important {
        padding: 15px;
        font-size: 0.95em;
    }
}