/* style/promotions.css */

/* General Styles for page-promotions */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #000000; /* Main background color */
    line-height: 1.6;
}

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

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    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: #FFD700;
    border-radius: 2px;
}

.page-promotions__text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #cccccc; /* Slightly lighter grey for paragraph text */
}

.page-promotions__text a {
    color: #FFD700; /* Gold for links within text */
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__text a:hover {
    text-decoration: underline;
}

/* CTA Button Styles */
.page-promotions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #000000; /* Black text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-promotions__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    color: #000000;
    transform: translateY(-2px);
}

.page-promotions__cta-button--secondary {
    background-color: #000000;
    color: #FFD700;
    border-color: #FFD700;
}

.page-promotions__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

.page-promotions__cta-button--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions__cta-button--outline:hover {
    background-color: #FFD700;
    color: #000000;
}

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

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.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: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2;
    z-index: 1;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

/* Intro Section */
.page-promotions__intro {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-promotions__features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-promotions__feature-item {
    flex: 1 1 300px;
    text-align: center;
    background-color: #222222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-promotions__feature-description {
    color: #cccccc;
    font-size: 1em;
}

/* Types of Promotions Section */
.page-promotions__types {
    padding: 80px 0;
    background-color: #000000;
}

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

.page-promotions__type-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__type-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.page-promotions__type-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-promotions__type-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions__type-description {
    color: #cccccc;
    font-size: 0.95em;
    margin-bottom: 25px;
    min-height: 50px;
}

.page-promotions__type-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-promotions__type-button:hover {
    background-color: #e6c200;
}

/* How To Claim Section */
.page-promotions__how-to-claim {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.page-promotions__steps li {
    background-color: #222222;
    margin-bottom: 20px;
    padding: 25px 30px 25px 80px;
    border-radius: 8px;
    position: relative;
    font-size: 1.1em;
    color: #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4em;
}

/* Detail List Section */
.page-promotions__detail-list {
    padding: 80px 0;
    background-color: #000000;
}

.page-promotions__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions__promo-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

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

.page-promotions__card-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__card-title a:hover {
    text-decoration: underline;
}

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

.page-promotions__card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-promotions__card-button:hover {
    background-color: #e6c200;
}

/* Responsible Gambling Section */
.page-promotions__responsible-gambling {
    padding: 80px 0;
    background-color: #1a1a1a;
    text-align: center;
}

/* Final CTA Section */
.page-promotions__final-cta {
    padding: 80px 0;
    background-color: #000000;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__features, .page-promotions__type-grid, .page-promotions__promo-cards {
        grid-template-columns: 1fr;
    }
    .page-promotions__feature-item, .page-promotions__type-item, .page-promotions__promo-card {
        margin-bottom: 20px;
    }
    .page-promotions__steps li {
        padding: 20px 20px 20px 70px;
        font-size: 1em;
    }
    .page-promotions__steps li::before {
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
    .page-promotions__buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions__cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__text {
        font-size: 0.9em;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}