/* style/promotions-event-specials.css */
.page-promotions-event-specials {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1A202C;
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-event-specials__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for depth */
    color: #FFFFFF;
    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-event-specials__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.page-promotions-event-specials__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

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

.page-promotions-event-specials__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for prominence */
    line-height: 1.2;
}

.page-promotions-event-specials__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styling */
.page-promotions-event-specials__section {
    padding: 80px 0;
    text-align: center;
}

.page-promotions-event-specials__section:nth-of-type(even) {
    background-color: #2A3342; /* Slightly lighter dark background for contrast */
}

.page-promotions-event-specials__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-event-specials p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #B0B0B0;
}

.page-promotions-event-specials a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-event-specials a:hover {
    color: #FFEB3B; /* Lighter gold on hover */
}

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

.page-promotions-event-specials__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C;
}

.page-promotions-event-specials__btn--primary:hover {
    background-color: #FFEB3B; /* Lighter gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-event-specials__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-promotions-event-specials__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions-event-specials__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-promotions-event-specials__cta-group {
    margin-top: 50px;
}

.page-promotions-event-specials__cta-group .page-promotions-event-specials__btn--secondary {
    margin-left: 20px;
}

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

.page-promotions-event-specials__promo-card {
    background-color: #2A3342;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.page-promotions-event-specials__promo-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 10px;
    object-fit: contain;
}

.page-promotions-event-specials__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-event-specials__promo-card p {
    font-size: 1em;
    color: #C0C0C0;
    flex-grow: 1;
}

/* How-To Steps */
.page-promotions-event-specials__steps {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    text-align: left;
}

.page-promotions-event-specials__steps li {
    background-color: #2A3342;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    position: relative;
}

.page-promotions-event-specials__steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #FFD700;
    color: #1A202C;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.page-promotions-event-specials__steps li:last-child {
    margin-bottom: 0;
}

.page-promotions-event-specials__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-event-specials__steps p {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 0;
}

/* Why Choose Section */
.page-promotions-event-specials__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-event-specials__feature-card {
    background-color: #2A3342;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-promotions-event-specials__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

/* FAQ Section */
.page-promotions-event-specials__faq-item {
    background-color: #2A3342;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-event-specials__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-event-specials__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-promotions-event-specials__faq-answer {
    font-size: 1em;
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 10px;
}

.page-promotions-event-specials__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 10px;
}

/* Final CTA Section */
.page-promotions-event-specials__final-cta {
    background-color: #1A202C;
    padding: 100px 0;
}

.page-promotions-event-specials__final-cta .page-promotions-event-specials__section-title {
    color: #FFD700;
}

.page-promotions-event-specials__final-cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-event-specials__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-event-specials__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-event-specials__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-event-specials__hero {
        padding: 80px 0;
        min-height: 500px;
    }
    .page-promotions-event-specials__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-event-specials__hero-description {
        font-size: 1em;
    }
    .page-promotions-event-specials__section {
        padding: 60px 0;
    }
    .page-promotions-event-specials__section-title {
        font-size: 1.8em;
    }
    .page-promotions-event-specials__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-event-specials__btn--secondary {
        margin-left: 10px;
    }
    .page-promotions-event-specials__promo-grid,
    .page-promotions-event-specials__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-event-specials__steps li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions-event-specials__steps li::before {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-promotions-event-specials__step-title {
        font-size: 1.4em;
    }
    .page-promotions-event-specials__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-event-specials__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-event-specials__hero-description {
        font-size: 0.9em;
    }
    .page-promotions-event-specials__btn--secondary {
        margin-top: 15px;
        margin-left: 0;
    }
    .page-promotions-event-specials__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}