/* style/promotions-weekly-offers.css */
.page-promotions-weekly-offers {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Assuming --dark-bg-color is dark, using light text */
}

.page-promotions-weekly-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-promotions-weekly-offers__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    overflow: hidden;
    background-color: #26A9E0; /* Primary brand color for hero background */
    color: #FFFFFF;
}

.page-promotions-weekly-offers__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-promotions-weekly-offers__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-promotions-weekly-offers__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions-weekly-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-promotions-weekly-offers__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-promotions-weekly-offers__btn-primary {
    display: inline-block;
    background-color: #EA7C07; /* Login/CTA color */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-weekly-offers__btn-primary:hover {
    background-color: #d46a00;
}

.page-promotions-weekly-offers__btn-secondary {
    display: inline-block;
    background-color: #FFFFFF;
    color: #26A9E0; /* Primary brand color for text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #26A9E0;
    cursor: pointer;
}

.page-promotions-weekly-offers__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-promotions-weekly-offers__dark-bg {
    background-color: var(--dark-bg-color, #0d0d0d);
    color: #ffffff;
}

.page-promotions-weekly-offers__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-promotions-weekly-offers__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: inherit;
}

.page-promotions-weekly-offers__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: inherit;
}

.page-promotions-weekly-offers__offers-overview {
    padding: 80px 0;
}

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

.page-promotions-weekly-offers__card {
    background-color: #FFFFFF;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-promotions-weekly-offers__card:hover {
    transform: translateY(-5px);
}

.page-promotions-weekly-offers__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-weekly-offers__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-promotions-weekly-offers__card-text {
    font-size: 1em;
    margin-bottom: 20px;
}

.page-promotions-weekly-offers__section-footer-text {
    text-align: center;
    margin-top: 60px;
    font-size: 1.1em;
    color: inherit;
}

.page-promotions-weekly-offers__how-to-claim {
    padding: 80px 0;
}

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

.page-promotions-weekly-offers__dark-card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-weekly-offers__dark-card .page-promotions-weekly-offers__card-title {
    color: #26A9E0;
}

.page-promotions-weekly-offers__terms-conditions {
    padding: 80px 0;
}

.page-promotions-weekly-offers__terms-list {
    list-style: disc;
    max-width: 900px;
    margin: 40px auto;
    padding-left: 20px;
    text-align: left;
    color: inherit;
}

.page-promotions-weekly-offers__list-item {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions-weekly-offers__faq-section {
    padding: 80px 0;
}

.page-promotions-weekly-offers__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.page-promotions-weekly-offers__faq-item {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    color: #FFFFFF;
}

.page-promotions-weekly-offers__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    user-select: none;
    list-style: none; /* For details/summary */
}

.page-promotions-weekly-offers__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions-weekly-offers__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0;
}

.page-promotions-weekly-offers__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: #f0f0f0;
}

.page-promotions-weekly-offers__faq-item[open] .page-promotions-weekly-offers__faq-question {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-promotions-weekly-offers__faq-contact-link {
    color: #26A9E0;
    text-decoration: underline;
}

.page-promotions-weekly-offers__cta-section {
    padding: 80px 0;
}

.page-promotions-weekly-offers__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions-weekly-offers__hero-title {
        font-size: 3em;
    }
    .page-promotions-weekly-offers__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-weekly-offers {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions-weekly-offers__hero-section {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        min-height: 400px;
    }

    .page-promotions-weekly-offers__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-promotions-weekly-offers__hero-description {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    .page-promotions-weekly-offers__section-title {
        font-size: 1.8em;
    }

    .page-promotions-weekly-offers__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-promotions-weekly-offers__offer-grid,
    .page-promotions-weekly-offers__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-weekly-offers__card {
        padding: 20px;
    }

    .page-promotions-weekly-offers__card-image {
        height: 200px;
    }

    .page-promotions-weekly-offers__card-title {
        font-size: 1.3em;
    }

    .page-promotions-weekly-offers__terms-list {
        margin: 30px auto;
        padding-left: 15px;
    }

    .page-promotions-weekly-offers__list-item {
        font-size: 1em;
    }

    .page-promotions-weekly-offers__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-promotions-weekly-offers__faq-answer {
        padding: 0 15px 15px 15px;
    }

    .page-promotions-weekly-offers__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Mobile specific image, video, button adaptations */
    .page-promotions-weekly-offers img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions-weekly-offers__section,
    .page-promotions-weekly-offers__card,
    .page-promotions-weekly-offers__container,
    .page-promotions-weekly-offers__hero-section,
    .page-promotions-weekly-offers__offers-overview,
    .page-promotions-weekly-offers__how-to-claim,
    .page-promotions-weekly-offers__terms-conditions,
    .page-promotions-weekly-offers__faq-section,
    .page-promotions-weekly-offers__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .page-promotions-weekly-offers__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-promotions-weekly-offers__cta-button,
    .page-promotions-weekly-offers__btn-primary,
    .page-promotions-weekly-offers__btn-secondary,
    .page-promotions-weekly-offers a[class*="button"],
    .page-promotions-weekly-offers a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions-weekly-offers__cta-buttons,
    .page-promotions-weekly-offers__button-group,
    .page-promotions-weekly-offers__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}