/* style/promotions.css */

/* General page styling for .page-promotions */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #e5e5d1; /* Light text color for dark background */
    background-color: #1A1A2E; /* Main dark background color */
    line-height: 1.6;
}

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

.page-promotions__title,
.page-promotions__section-title {
    color: #E0B95B; /* Auxiliary bright gold for titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__title {
    font-size: 3em;
    padding-top: 40px;
}

.page-promotions__section-title {
    font-size: 2.2em;
    margin-top: 50px;
    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: #E0B95B;
    border-radius: 2px;
}

.page-promotions__subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Gradient background for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:hero:promotions,lucky8_casino,banner]'); /* Hero background image */
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

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

.page-promotions__cta-button {
    display: inline-block;
    background-color: #E0B95B; /* Auxiliary bright gold for CTA */
    color: #1A1A2E; /* Dark text for bright button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    background-color: #f0c96b; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-promotions__cta-button--small {
    padding: 12px 25px;
    font-size: 1em;
}

/* Intro Section */
.page-promotions__intro {
    padding: 60px 0;
    background-color: #22223a; /* Slightly lighter dark background */
}

.page-promotions__intro p {
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.page-promotions__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-promotions__feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #2e2e4a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons slightly brighter */
}

.page-promotions__feature-item h3 {
    color: #E0B95B;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions__feature-item p {
    font-size: 0.95em;
    color: #b0b0b0;
    text-align: center; /* Ensure text is centered */
}

/* Promotions List Section */
.page-promotions__list-section {
    padding: 60px 0;
    background-color: #1A1A2E;
}

.page-promotions__list-section p {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.page-promotions__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions__promotion-card {
    background-color: #2e2e4a;
    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;
    display: flex;
    flex-direction: column;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #E0B95B;
}

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

.page-promotions__card-content h3 {
    color: #E0B95B;
    font-size: 1.6em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-content p {
    color: #b0b0b0;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow paragraph to take available space */
    text-align: left; /* Reset text-align from parent */
}

.page-promotions__claim-button,
.page-promotions__view-details-button {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__claim-button {
    background-color: #E0B95B;
    color: #1A1A2E;
    font-size: 1em;
}

.page-promotions__claim-button:hover {
    background-color: #f0c96b;
    transform: translateY(-2px);
}

.page-promotions__view-details-button {
    background-color: transparent;
    color: #E0B95B;
    border: 1px solid #E0B95B;
    font-size: 0.95em;
}

.page-promotions__view-details-button:hover {
    background-color: rgba(224, 185, 91, 0.1);
    transform: translateY(-2px);
}


/* How to Claim Section */
.page-promotions__how-to-claim {
    padding: 60px 0;
    background-color: #22223a;
}

.page-promotions__how-to-claim p {
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.page-promotions__steps {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    counter-reset: step-counter;
}

.page-promotions__steps li {
    background-color: #2e2e4a;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 70px; /* Space for step number */
}

.page-promotions__steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #E0B95B;
    color: #1A1A2E;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-promotions__steps li strong {
    color: #E0B95B;
    font-size: 1.1em;
    margin-bottom: 5px;
    display: block;
}

.page-promotions__steps li p {
    margin: 0;
    color: #b0b0b0;
    text-align: left; /* Reset text-align */
}

.page-promotions__steps li a {
    color: #E0B95B;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions__steps li a:hover {
    color: #f0c96b;
}

/* FAQ Section */
.page-promotions__faq {
    padding: 60px 0;
    background-color: #1A1A2E;
}

.page-promotions__faq-item {
    background-color: #2e2e4a;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item h3 {
    color: #E0B95B;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer; /* Indicate interactivity */
    position: relative;
    padding-right: 30px;
}

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

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

.page-promotions__faq-item p {
    color: #b0b0b0;
    font-size: 0.95em;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-promotions__faq-item.active p {
    max-height: 500px; /* Adjust as needed for content length */
    opacity: 1;
    margin-top: 15px;
}

/* Final CTA Section */
.page-promotions__final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #22223a 0%, #1A1A2E 100%);
    text-align: center;
}