/* style/promotions-event-specials.css */
.page-promotions-event-specials {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for good readability on light backgrounds */
    background-color: #f8f8f8;
}

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

.page-promotions-event-specials__hero-section {
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%); /* Deep blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-event-specials__hero-title {
    font-size: 2.8em;
    color: #ffd700; /* Gold for emphasis */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-event-specials__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-event-specials__btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffd700; /* Gold button */
    color: #0056b3; /* Dark blue text on gold button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

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

.page-promotions-event-specials__btn--primary {
    background-color: #ffd700;
    color: #0056b3;
}

.page-promotions-event-specials__btn--secondary {
    background-color: #0056b3;
    color: #ffffff;
    border: 1px solid #ffd700;
    margin-left: 15px;
}

.page-promotions-event-specials__btn--secondary:hover {
    background-color: #003d80;
    border-color: #e6c200;
}

.page-promotions-event-specials__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    right: 0;
    width: 300px;
    height: 300px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

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

.page-promotions-event-specials__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-event-specials__section:nth-child(even) {
    background-color: #f0f4f8; /* Light blue-gray for alternating sections */
}

.page-promotions-event-specials__section-title {
    font-size: 2.2em;
    color: #0056b3; /* Deep blue for main titles */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions-event-specials__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

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

.page-promotions-event-specials__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-event-specials__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions-event-specials__promo-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-promotions-event-specials__promo-text {
    font-size: 0.95em;
    color: #555555;
    padding: 0 20px;
    margin-bottom: 20px;
}

.page-promotions-event-specials__promo-card .page-promotions-event-specials__btn {
    margin-top: 15px;
}

.page-promotions-event-specials__how-to-participate ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-promotions-event-specials__how-to-participate li {
    margin-bottom: 30px;
    padding-left: 70px;
    position: relative;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-event-specials__how-to-participate li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-event-specials__step-title {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 10px;
}

.page-promotions-event-specials__how-to-participate a {
    color: #0056b3;
    text-decoration: underline;
}

.page-promotions-event-specials__guide-image-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-promotions-event-specials__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-event-specials__why-choose .page-promotions-event-specials__features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
}

.page-promotions-event-specials__why-choose .page-promotions-event-specials__features-list li {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-event-specials__why-choose .page-promotions-event-specials__features-list li:hover {
    transform: translateY(-5px);
}

.page-promotions-event-specials__feature-title {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 15px;
}

.page-promotions-event-specials__feature-image-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-event-specials__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-event-specials__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-event-specials__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-event-specials__faq-question {
    font-size: 1.2em;
    color: #0056b3;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    position: relative;
    background-color: #f0f4f8; /* Light background for question */
    transition: background-color 0.3s ease;
}

.page-promotions-event-specials__faq-question:hover {
    background-color: #e2e8f0;
}

.page-promotions-event-specials__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-event-specials__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-event-specials__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: #555555;
    display: none;
}

.page-promotions-event-specials__faq-answer.active {
    display: block;
}

.page-promotions-event-specials__cta-final {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #0056b3, #003d80);
    color: #ffffff;
}

.page-promotions-event-specials__cta-final .page-promotions-event-specials__section-title {
    color: #ffd700;
}

.page-promotions-event-specials__cta-final .page-promotions-event-specials__section-title::after {
    background-color: #ffd700;
}

.page-promotions-event-specials__cta-final .page-promotions-event-specials__section-description {
    color: #ffffff;
    margin-bottom: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-event-specials__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-event-specials__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-event-specials__section-title {
        font-size: 1.8em;
    }

    .page-promotions-event-specials__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-event-specials__how-to-participate li {
        padding-left: 0;
        text-align: center;
    }

    .page-promotions-event-specials__how-to-participate li::before {
        position: static;
        margin: 0 auto 15px auto;
    }

    .page-promotions-event-specials__why-choose .page-promotions-event-specials__features-list {
        grid-template-columns: 1fr;
    }

    .page-promotions-event-specials__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-event-specials__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-event-specials__hero-image-wrapper {
        display: none; /* Hide on smaller screens */
    }
}

@media (max-width: 480px) {
    .page-promotions-event-specials__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-event-specials__section-title {
        font-size: 1.5em;
    }

    .page-promotions-event-specials__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-event-specials__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-event-specials__faq-answer {
        font-size: 0.9em;
    }
}