/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for general content on dark backgrounds */
    background-color: #0A1931; /* 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.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-promotions-section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-promotions-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-promotions-btn-primary {
    background-color: #FFD700; /* Gold background */
    color: #0A1931; /* Dark text for primary button */
    border-color: #FFD700;
}

.page-promotions-btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000;
    transform: translateY(-2px);
}

.page-promotions-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border-color: #FFD700;
    margin-left: 15px;
}

.page-promotions-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-promotions-btn-outline {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
}

.page-promotions-btn-outline:hover {
    background-color: #FFD700;
    color: #0A1931;
}

.page-promotions-btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-promotions-btn-large {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-promotions-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-link:hover {
    color: #e6c200;
}

/* Hero Section */
.page-promotions-hero {
    background: linear-gradient(135deg, #0A1931 0%, #2a416a 100%); /* Gradient background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-promotions-hero-title {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promotions-hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-promotions-hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2; /* Subtle background image */
}

.page-promotions-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overview Section */
.page-promotions-overview {
    padding: 80px 0;
    background-color: #1a2a47; /* Slightly lighter dark background */
}

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

.page-promotions-feature-item {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    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-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-feature-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-feature-item p {
    color: #cccccc;
}

/* Featured Promotions Section */
.page-promotions-featured {
    padding: 80px 0;
    background-color: #0A1931;
}

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

.page-promotions-promo-card {
    background-color: #1a2a47;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-promotions-promo-card:hover {
    transform: translateY(-10px);
}

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

.page-promotions-promo-card h3 {
    font-size: 1.6em;
    color: #FFD700;
    padding: 20px 20px 10px;
    margin-bottom: 0;
}

.page-promotions-promo-card p {
    color: #cccccc;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-promotions-promo-card .page-promotions-btn {
    margin: 0 20px 20px;
    align-self: flex-start;
}

/* How to Claim Section */
.page-promotions-how-to-claim {
    padding: 80px 0;
    background-color: #1a2a47;
}

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

.page-promotions-steps li {
    background-color: #0A1931;
    margin-bottom: 20px;
    padding: 25px 30px 25px 80px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-steps li h4 {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-steps li p {
    color: #cccccc;
}

/* Detail Pages List Section */
.page-promotions-detail-pages {
    padding: 80px 0;
    background-color: #0A1931;
}

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

.page-promotions-detail-item {
    background-color: #1a2a47;
    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;
}

.page-promotions-detail-item:hover {
    transform: translateY(-5px);
}

.page-promotions-detail-title {
    font-size: 1.4em;
    margin-bottom: 15px;
}

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

.page-promotions-detail-title a:hover {
    text-decoration: underline;
    color: #e6c200;
}

.page-promotions-detail-description {
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Call to Action Section */
.page-promotions-cta {
    background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%); /* Gold gradient background */
    padding: 80px 0;
    text-align: center;
    color: #0A1931; /* Dark text on light background */
}

.page-promotions-cta .page-promotions-section-title {
    color: #0A1931; /* Dark title on light background */
    text-shadow: none;
}

.page-promotions-cta .page-promotions-section-intro {
    color: #333; /* Darker text */
    margin-bottom: 40px;
}

.page-promotions-cta .page-promotions-btn-primary {
    background-color: #0A1931; /* Dark button on light background */
    color: #FFD700; /* Gold text */
    border-color: #0A1931;
}

.page-promotions-cta .page-promotions-btn-primary:hover {
    background-color: #1a2a47; /* Slightly lighter dark on hover */
    color: #FFD700;
}

/* Responsible Gambling Section */
.page-promotions-responsible-gambling {
    padding: 60px 0;
    background-color: #0A1931;
    border-top: 1px solid #1a2a47;
}

.page-promotions-responsible-gambling p {
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 15px auto;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-hero-title {
        font-size: 3em;
    }
    .page-promotions-section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-hero {
        padding: 80px 0 50px;
        min-height: 500px;
    }
    .page-promotions-hero-title {
        font-size: 2.5em;
    }
    .page-promotions-hero-description {
        font-size: 1.1em;
    }
    .page-promotions-hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-promotions-btn-secondary {
        margin-left: 0;
    }
    .page-promotions-section-title {
        font-size: 1.8em;
    }
    .page-promotions-grid, .page-promotions-detail-list, .page-promotions-features {
        grid-template-columns: 1fr;
    }
    .page-promotions-promo-card .page-promotions-btn {
        align-self: center;
        width: calc(100% - 40px);
    }
    .page-promotions-steps li {
        padding: 20px 20px 20px 70px;
    }
    .page-promotions-steps li::before {
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-promotions-hero-title {
        font-size: 2em;
    }
    .page-promotions-hero-description {
        font-size: 1em;
    }
    .page-promotions-section-title {
        font-size: 1.5em;
    }
    .page-promotions-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }
}