/* style/promotions-789b-weekly-specials.css */

:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-color-light: #F8F8F8;
    --text-color-dark: #333333;
    --accent-color-dark: #b39700; /* Darker shade of secondary for text on light backgrounds */
    --accent-color-light: #545e6d; /* Lighter shade of primary for text on dark backgrounds */
    --background-light: #F0F2F5;
    --background-dark: #1A2A40;
}

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

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

.page-promotions-789b-weekly-specials__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-promotions-789b-weekly-specials__section:nth-child(even) {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__section-title,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__hero-subtitle,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__hero-title,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__text-content,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__offer-description,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__offer-title,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__note,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__step-title,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__benefit-title,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__faq-question,
.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__faq-answer p {
    color: var(--text-color-light);
}

.page-promotions-789b-weekly-specials__section:nth-child(even) a {
    color: var(--secondary-color);
}

.page-promotions-789b-weekly-specials__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__section-title {
    color: var(--secondary-color);
}

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

.page-promotions-789b-weekly-specials__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-dark);
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__section-description {
    color: var(--text-color-light);
}

.page-promotions-789b-weekly-specials__text-content {
    margin-bottom: 15px;
    font-size: 1em;
    color: var(--text-color-dark);
}

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

.page-promotions-789b-weekly-specials__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-789b-weekly-specials__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
    color: var(--text-color-light);
}

.page-promotions-789b-weekly-specials__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    opacity: 0.2;
    z-index: 0;
}

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

.page-promotions-789b-weekly-specials__btn--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-789b-weekly-specials__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-789b-weekly-specials__btn--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 20px;
}

.page-promotions-789b-weekly-specials__btn--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.page-promotions-789b-weekly-specials__btn--tertiary {
    background-color: var(--background-dark);
    color: var(--secondary-color);
    border: 2px solid var(--accent-color-light);
    margin-left: 20px;
}

.page-promotions-789b-weekly-specials__btn--tertiary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Offers List */
.page-promotions-789b-weekly-specials__offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-789b-weekly-specials__offer-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-789b-weekly-specials__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__offer-card {
    background-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__offer-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-789b-weekly-specials__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions-789b-weekly-specials__offer-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__offer-title {
    color: var(--secondary-color);
}

.page-promotions-789b-weekly-specials__offer-description {
    font-size: 0.95em;
    color: var(--text-color-dark);
    padding: 0 20px;
    margin-bottom: 25px;
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__offer-description {
    color: var(--text-color-light);
}

.page-promotions-789b-weekly-specials__offer-card .page-promotions-789b-weekly-specials__btn {
    margin-top: auto; /* Push button to bottom */
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-789b-weekly-specials__note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--accent-color-light);
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__note {
    color: var(--secondary-color);
}

/* Guide Section */
.page-promotions-789b-weekly-specials__guide-section {
    text-align: center;
}

.page-promotions-789b-weekly-specials__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.page-promotions-789b-weekly-specials__step-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    flex: 1 1 calc(50% - 30px);
    max-width: 500px;
    text-align: left;
    position: relative;
    counter-increment: step-counter;
    min-height: 200px;
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__step-item {
    background-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-789b-weekly-specials__step-item::before {
    content: counter(step-counter);
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
}

.page-promotions-789b-weekly-specials__step-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    margin-left: 50px;
    padding-top: 5px;
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__step-title {
    color: var(--secondary-color);
}

.page-promotions-789b-weekly-specials__guide-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Benefits Section */
.page-promotions-789b-weekly-specials__benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.page-promotions-789b-weekly-specials__benefit-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    flex: 1 1 calc(33% - 25px);
    max-width: 380px;
    text-align: left;
    transition: transform 0.2s ease;
}

.page-promotions-789b-weekly-specials__benefit-item:hover {
    transform: translateY(-5px);
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__benefit-item {
    background-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-789b-weekly-specials__benefit-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__benefit-title {
    color: var(--secondary-color);
}

.page-promotions-789b-weekly-specials__benefits-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-promotions-789b-weekly-specials__faq-accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-789b-weekly-specials__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__faq-item {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-789b-weekly-specials__faq-question {
    width: 100%;
    background-color: #f7f7f7;
    color: var(--primary-color);
    padding: 20px 25px;
    text-align: left;
    border: none;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__faq-question {
    background-color: var(--background-dark);
    color: var(--secondary-color);
}

.page-promotions-789b-weekly-specials__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-promotions-789b-weekly-specials__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: var(--text-color-dark);
}

.page-promotions-789b-weekly-specials__section:nth-child(even) .page-promotions-789b-weekly-specials__faq-answer {
    color: var(--text-color-light);
}

.page-promotions-789b-weekly-specials__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding: 20px 25px;
}

/* CTA Section */
.page-promotions-789b-weekly-specials__cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--background-dark));
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
}

.page-promotions-789b-weekly-specials__cta-title {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-789b-weekly-specials__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.5;
    color: var(--text-color-light);
}

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

.page-promotions-789b-weekly-specials__cta-buttons .page-promotions-789b-weekly-specials__btn {
    margin: 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-789b-weekly-specials__hero-title {
        font-size: 3em;
    }

    .page-promotions-789b-weekly-specials__section-title {
        font-size: 2em;
    }

    .page-promotions-789b-weekly-specials__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-promotions-789b-weekly-specials__step-item {
        flex: 1 1 calc(100% - 30px);
        max-width: 100%;
    }

    .page-promotions-789b-weekly-specials__benefits-list {
        gap: 20px;
    }

    .page-promotions-789b-weekly-specials__benefit-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .page-promotions-789b-weekly-specials__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-789b-weekly-specials__hero-section {
        padding: 80px 0 50px;
    }

    .page-promotions-789b-weekly-specials__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-789b-weekly-specials__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .page-promotions-789b-weekly-specials__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-promotions-789b-weekly-specials__offer-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-789b-weekly-specials__benefits-list {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions-789b-weekly-specials__benefit-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .page-promotions-789b-weekly-specials__cta-title {
        font-size: 2em;
    }

    .page-promotions-789b-weekly-specials__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions-789b-weekly-specials__btn--tertiary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-promotions-789b-weekly-specials__section {
        padding: 40px 0;
    }

    .page-promotions-789b-weekly-specials__hero-title {
        font-size: 2em;
    }

    .page-promotions-789b-weekly-specials__section-title {
        font-size: 1.8em;
    }

    .page-promotions-789b-weekly-specials__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-789b-weekly-specials__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-promotions-789b-weekly-specials__faq-answer {
        padding: 15px 20px;
    }

    .page-promotions-789b-weekly-specials__step-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }

    .page-promotions-789b-weekly-specials__step-title {
        margin-left: 45px;
        font-size: 1.2em;
    }
}