/* style/promotions-event-promotions.css */

/* Base styles for the specific page */
.page-promotions-event-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #F8F8F8;
}

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

.page-promotions-event-promotions__section-title {
    font-size: 2.5em;
    color: #0A246A; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-event-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Secondary color */
    border-radius: 2px;
}

.page-promotions-event-promotions__text {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.page-promotions-event-promotions__link {
    color: #0A246A; /* Primary color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-event-promotions__link:hover {
    color: #FFD700; /* Secondary color on hover */
    text-decoration: underline;
}

.page-promotions-event-promotions .highlight {
    color: #FFD700; /* Secondary color for highlights */
}

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

.page-promotions-event-promotions__btn--primary {
    background-color: #FFD700; /* Secondary color */
    color: #0A246A; /* Primary color for text */
    border: 2px solid #FFD700;
}

.page-promotions-event-promotions__btn--primary:hover {
    background-color: #0A246A; /* Primary color */
    color: #FFD700; /* Secondary color for text */
    border-color: #FFD700;
}

.page-promotions-event-promotions__btn--secondary {
    background-color: #0A246A; /* Primary color */
    color: #FFD700; /* Secondary color for text */
    border: 2px solid #0A246A;
}

.page-promotions-event-promotions__btn--secondary:hover {
    background-color: #FFD700; /* Secondary color */
    color: #0A246A; /* Primary color for text */
    border-color: #0A246A;
}

/* Hero Section */
.page-promotions-event-promotions__hero {
    background: linear-gradient(135deg, #0A246A 0%, #1A3F87 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-promotions-event-promotions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-event-promotions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-promotions-event-promotions__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

.page-promotions-event-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #eee;
}

.page-promotions-event-promotions__hero-image-wrapper {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 300px;
    height: 300px;
    opacity: 0.2;
    z-index: 0;
    filter: grayscale(100%);
}

.page-promotions-event-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Intro Section */
.page-promotions-event-promotions__intro {
    padding: 60px 0;
    background-color: #fff;
}

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

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

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

.page-promotions-event-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-event-promotions__feature-item h3 {
    font-size: 1.5em;
    color: #0A246A; /* Primary color */
    margin-bottom: 15px;
}

.page-promotions-event-promotions__feature-item p {
    color: #666;
    font-size: 1em;
}

/* Promotions List Section */
.page-promotions-event-promotions__promotions-list {
    padding: 60px 0;
    background-color: #F8F8F8;
}

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

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

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

.page-promotions-event-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700; /* Secondary color */
}

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

.page-promotions-event-promotions__promo-content h3 {
    font-size: 1.8em;
    color: #0A246A; /* Primary color */
    margin-bottom: 15px;
}

.page-promotions-event-promotions__promo-content p {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-event-promotions__promo-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions-event-promotions__promo-content ul li {
    margin-bottom: 8px;
    color: #444;
    font-size: 0.95em;
    position: relative;
    padding-left: 25px;
}

.page-promotions-event-promotions__promo-content ul li::before {
    content: '✓';
    color: #FFD700; /* Secondary color */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* How To Claim Section */
.page-promotions-event-promotions__how-to-claim {
    padding: 60px 0;
    background-color: #fff;
}

.page-promotions-event-promotions__steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-promotions-event-promotions__steps li {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-event-promotions__step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #0A246A; /* Primary color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-promotions-event-promotions__step-icon {
    width: 50px;
    height: 50px;
    filter: invert(100%) saturate(0%) brightness(150%); /* Make icon white/light */
}

.page-promotions-event-promotions__steps h3 {
    font-size: 1.6em;
    color: #0A246A; /* Primary color */
    margin-bottom: 15px;
}

.page-promotions-event-promotions__steps p {
    color: #666;
    font-size: 1em;
}

/* FAQ Section */
.page-promotions-event-promotions__faq {
    padding: 60px 0;
    background-color: #F8F8F8;
}

.page-promotions-event-promotions__faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-event-promotions__faq-item h3 {
    font-size: 1.4em;
    color: #0A246A; /* Primary color */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-event-promotions__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700; /* Secondary color */
    transition: transform 0.3s ease;
}

.page-promotions-event-promotions__faq-item.active h3::after {
    transform: rotate(45deg);
}

.page-promotions-event-promotions__faq-item p {
    color: #555;
    font-size: 1em;
    display: none; /* Hidden by default, JS will toggle */
    margin-top: 15px;
}

.page-promotions-event-promotions__faq-item.active p {
    display: block;
}

/* CTA Bottom Section */
.page-promotions-event-promotions__cta-bottom {
    background-color: #0A246A; /* Primary color */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-promotions-event-promotions__cta-bottom .page-promotions-event-promotions__section-title {
    color: #fff;
}

.page-promotions-event-promotions__cta-bottom .page-promotions-event-promotions__section-title::after {
    background-color: #FFD700;
}

.page-promotions-event-promotions__cta-bottom .page-promotions-event-promotions__text {
    color: #eee;
    margin-bottom: 40px;
}

.page-promotions-event-promotions__cta-bottom .page-promotions-event-promotions__link {
    color: #FFD700;
}

.page-promotions-event-promotions__cta-bottom .page-promotions-event-promotions__link:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-event-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions-event-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-event-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions-event-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions-event-promotions__how-to-claim .page-promotions-event-promotions__steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-event-promotions__hero {
        padding: 60px 15px;
    }
    .page-promotions-event-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-event-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-event-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-event-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions-event-promotions__text {
        font-size: 1em;
    }
    .page-promotions-event-promotions__features {
        grid-template-columns: 1fr;
    }
    .page-promotions-event-promotions__promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions-event-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions-event-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-event-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions-event-promotions__promo-content h3 {
        font-size: 1.5em;
    }
    .page-promotions-event-promotions__faq-item h3 {
        font-size: 1.2em;
    }
}