/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #121f3a; /* Darker background for main content */
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #1A2E5B 0%, #0c1a3b 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-promotions__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFC107; /* Bright gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-promotions__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
    filter: grayscale(50%);
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FF8C00; /* Auxiliary orange for section titles */
    text-align: center;
    margin: 60px 0 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: #FF8C00;
    border-radius: 2px;
}

.page-promotions__text-content {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
    text-align: justify;
}

/* Buttons */
.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions__btn--primary {
    background-color: #FF8C00; /* Auxiliary orange */
    color: #1A2E5B; /* Primary dark blue */
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e67e00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.page-promotions__btn--secondary {
    background-color: #1A2E5B; /* Primary dark blue */
    color: #FF8C00; /* Auxiliary orange */
    border: 2px solid #FF8C00;
    box-shadow: 0 2px 10px rgba(26, 46, 91, 0.4);
}

.page-promotions__btn--secondary:hover {
    background-color: #0d1e3f;
    color: #FFC107;
    border-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 46, 91, 0.6);
}

.page-promotions__btn--link {
    color: #FF8C00;
    background: none;
    padding: 0;
    border: none;
    font-size: 1em;
    text-decoration: underline;
}

.page-promotions__btn--link:hover {
    color: #FFC107;
    text-decoration: none;
}

.page-promotions__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Intro Section */
.page-promotions__intro {
    padding: 60px 0;
    background-color: #1A2E5B; /* Primary dark blue */
}

/* Featured Promotions */
.page-promotions__featured-promos {
    padding: 80px 0;
    background-color: #121f3a;
}

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

.page-promotions__promo-card {
    background-color: #1A2E5B; /* Primary dark blue */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #FF8C00;
}

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

.page-promotions__promo-card-title {
    font-size: 1.8em;
    color: #FFC107;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-promotions__promo-card-description {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__promo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-promotions__promo-features li {
    color: #e0e0e0;
    margin-bottom: 8px;
    font-size: 0.95em;
    position: relative;
    padding-left: 25px;
}

.page-promotions__promo-features li::before {
    content: '✓';
    color: #00ff00; /* Bright green checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-promotions__promo-card .page-promotions__btn {
    margin-top: auto; /* Push button to the bottom */
    width: 100%;
}

/* VIP Club */
.page-promotions__vip-club {
    padding: 80px 0;
    background-color: #1A2E5B; /* Primary dark blue */
}

.page-promotions__vip-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-promotions__vip-text {
    flex: 1;
    min-width: 300px;
}

.page-promotions__vip-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

/* Upcoming Events */
.page-promotions__upcoming-events {
    padding: 80px 0;
    background-color: #121f3a;
    text-align: center;
}

/* FAQ Section */
.page-promotions__faq {
    padding: 80px 0;
    background-color: #1A2E5B; /* Primary dark blue */
}

.page-promotions__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__accordion-item {
    background-color: #121f3a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__accordion-header {
    width: 100%;
    background-color: #1A2E5B; /* Primary dark blue */
    color: #FFC107;
    padding: 20px 25px;
    text-align: left;
    border: none;
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.page-promotions__accordion-header:hover {
    background-color: #2b4478;
}

.page-promotions__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #121f3a;
}

.page-promotions__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #cccccc;
    font-size: 1em;
    line-height: 1.7;
}

/* Detail Pages List */
.page-promotions__detail-pages {
    padding: 80px 0;
    background-color: #121f3a;
}

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

.page-promotions__detail-item {
    background-color: #1A2E5B;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.page-promotions__detail-title {
    font-size: 1.6em;
    color: #FFC107;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__detail-title a {
    color: #FFC107;
    text-decoration: none;
}

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

.page-promotions__detail-description {
    color: #cccccc;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__detail-item .page-promotions__btn--link {
    margin-top: auto;
    align-self: flex-start;
}

/* CTA Section */
.page-promotions__cta {
    padding: 80px 0;
    background-color: #1A2E5B; /* Primary dark blue */
    text-align: center;
    border-top: 5px solid #FF8C00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__title {
        font-size: 3em;
    }
    .page-promotions__subtitle {
        font-size: 1.3em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__promo-card-title {
        font-size: 1.5em;
    }
    .page-promotions__vip-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__vip-image {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0 60px;
    }
    .page-promotions__title {
        font-size: 2.5em;
    }
    .page-promotions__subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
        margin: 40px 0 30px;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__accordion-header {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-promotions__accordion-content p {
        font-size: 0.9em;
    }
    .page-promotions__detail-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__detail-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-promotions__title {
        font-size: 2em;
    }
    .page-promotions__subtitle {
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-content {
        padding: 0 15px;
    }
    .page-promotions__promo-card-title {
        font-size: 1.3em;
    }
    .page-promotions__promo-card-description {
        font-size: 0.9em;
    }
    .page-promotions__accordion-header {
        font-size: 1em;
        padding: 15px;
    }
    .page-promotions__accordion-content p {
        padding: 10px 0;
    }
}