/* style/index-featured-promotions.css */

.page-index-featured-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-index-featured-promotions__hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Ensure sufficient height */
}

.page-index-featured-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.page-index-featured-promotions__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    color: #e0e0e0;
}

.page-index-featured-promotions__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;
    pointer-events: none;
}

.page-index-featured-promotions__hero > .page-index-featured-promotions__container {
    position: relative;
    z-index: 1;
}

.page-index-featured-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-index-featured-promotions__btn--primary {
    background-color: #FFCC00; /* Auxiliary color */
    color: #003366; /* Dark text for contrast */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-featured-promotions__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-index-featured-promotions__btn--secondary {
    background-color: #003366; /* Primary color */
    color: #FFCC00; /* Light text for contrast */
    border: 2px solid #FFCC00;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-index-featured-promotions__btn--secondary:hover {
    background-color: #004488;
    transform: translateY(-2px);
}

.page-index-featured-promotions__btn--tertiary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    margin-left: 20px;
}

.page-index-featured-promotions__btn--tertiary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-index-featured-promotions__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.page-index-featured-promotions__section:nth-of-type(even) {
    background-color: #f0f5f9; /* Lighter background for alternating sections */
}

.page-index-featured-promotions__section-title {
    font-size: 2.5em;
    color: #003366; /* Primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-index-featured-promotions__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-index-featured-promotions__text-content a {
    color: #003366;
    text-decoration: underline;
}

.page-index-featured-promotions__text-content a:hover {
    color: #FFCC00;
}

.page-index-featured-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-featured-promotions__promotion-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 30px; /* Space for button */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-featured-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-featured-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-index-featured-promotions__card-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-index-featured-promotions__card-description {
    font-size: 1em;
    color: #666;
    padding: 0 20px;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: left;
}

.page-index-featured-promotions__promotion-card .page-index-featured-promotions__btn {
    margin-top: auto; /* Push button to bottom */
    margin-left: auto;
    margin-right: auto;
}

.page-index-featured-promotions__how-to-claim .page-index-featured-promotions__section-title {
    margin-bottom: 30px;
}

.page-index-featured-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-featured-promotions__steps-list li {
    background-color: #f0f5f9;
    border-left: 5px solid #003366;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #444;
}

.page-index-featured-promotions__steps-list li strong {
    color: #003366;
    font-size: 1.1em;
}

.page-index-featured-promotions__steps-list li a {
    color: #003366;
    font-weight: bold;
}

.page-index-featured-promotions__steps-list li a:hover {
    color: #FFCC00;
}

.page-index-featured-promotions__image-full-width {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-featured-promotions__terms-list {
    list-style: disc;
    margin-left: 20px;
    color: #555;
    font-size: 1em;
}

.page-index-featured-promotions__terms-list li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.page-index-featured-promotions__terms-list li strong {
    color: #003366;
}

.page-index-featured-promotions__cta-final {
    background-color: #003366;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    border-radius: 10px;
    margin-top: 40px;
}

.page-index-featured-promotions__cta-final .page-index-featured-promotions__section-title {
    color: #FFCC00;
}

.page-index-featured-promotions__cta-final .page-index-featured-promotions__text-content {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15em;
}

.page-index-featured-promotions__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-featured-promotions__cta-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    width: 300px;
    height: auto;
    pointer-events: none;
    transform: rotate(15deg);
}

.highlight {
    color: #FFCC00;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-featured-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-index-featured-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-featured-promotions__section-title {
        font-size: 2em;
    }
    .page-index-featured-promotions__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-featured-promotions__hero {
        padding: 60px 0;
    }
    .page-index-featured-promotions__hero-title {
        font-size: 2em;
    }
    .page-index-featured-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-index-featured-promotions__section {
        padding: 40px 0;
    }
    .page-index-featured-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-featured-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-featured-promotions__btn--tertiary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-index-featured-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-featured-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-index-featured-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-featured-promotions__section-title {
        font-size: 1.5em;
    }
    .page-index-featured-promotions__btn {
        width: 100%;
        box-sizing: border-box;
    }
    .page-index-featured-promotions__promotion-card {
        padding-bottom: 20px;
    }
    .page-index-featured-promotions__card-title {
        font-size: 1.4em;
    }
    .page-index-featured-promotions__card-description {
        font-size: 0.9em;
    }
    .page-index-featured-promotions__cta-image {
        width: 200px;
    }
}