/* style/promotions.css */

/* Biến CSS cho màu sắc */
:root {
    --page-promotions-primary-color: #003366;
    --page-promotions-secondary-color: #FFD700;
    --page-promotions-accent-color: #DC143C;
    --page-promotions-text-light: #ffffff;
    --page-promotions-text-dark: #333333;
    --page-promotions-background-light: #f0f2f5;
    --page-promotions-background-dark: #0a2342;
}

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

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

/* Hero Section */
.page-promotions__hero-section {
    background: linear-gradient(135deg, var(--page-promotions-primary-color), #0a2342);
    color: var(--page-promotions-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-promotions-secondary-color);
    position: relative;
    z-index: 1;
    font-weight: bold;
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-promotions__hero-button {
    display: inline-block;
    background-color: var(--page-promotions-secondary-color);
    color: var(--page-promotions-primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Overview Section */
.page-promotions__overview-section {
    padding: 60px 0;
    background-color: var(--page-promotions-text-light);
    text-align: center;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: var(--page-promotions-primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

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

.page-promotions__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-promotions-secondary-color);
}

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

.page-promotions__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

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

.page-promotions__item-description {
    font-size: 1.1em;
    color: #555;
}

/* Details List Section */
.page-promotions__details-list-section {
    padding: 80px 0;
    background-color: var(--page-promotions-background-light);
}

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

.page-promotions__card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

.page-promotions__card-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-promotions__card-title a {
    color: var(--page-promotions-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: var(--page-promotions-accent-color);
}

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

.page-promotions__card-button {
    display: inline-block;
    background-color: var(--page-promotions-accent-color);
    color: var(--page-promotions-text-light);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

/* CTA Section */
.page-promotions__cta-section {
    background: linear-gradient(135deg, #0a2342, var(--page-promotions-primary-color));
    color: var(--page-promotions-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-promotions__cta-title {
    font-size: 3em;
    color: var(--page-promotions-secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions__cta-button--secondary {
    background-color: transparent;
    border: 2px solid var(--page-promotions-secondary-color);
    color: var(--page-promotions-secondary-color);
}

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

.page-promotions__responsible-gambling {
    margin-top: 50px;
    font-size: 0.95em;
    opacity: 0.8;
    color: var(--page-promotions-text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__cta-title {
        font-size: 2.5em;
    }
    .page-promotions__grid,
    .page-promotions__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section,
    .page-promotions__overview-section,
    .page-promotions__details-list-section,
    .page-promotions__cta-section {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__hero-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__cta-title {
        font-size: 2em;
    }
    .page-promotions__cta-description {
        font-size: 1.1em;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__cta-button {
        width: 80%;
        max-width: 300px;
    }
    .page-promotions__grid-item {
        padding: 25px;
    }
    .page-promotions__card-content {
        padding: 20px;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-button,
    .page-promotions__cta-button {
        font-size: 1em;
        padding: 10px 25px;
    }
    .page-promotions__grid,
    .page-promotions__card-grid {
        grid-template-columns: 1fr;
    }
}