/* style/exclusive-offers.css */

/* Base styles for the page content */
.page-exclusive-offers {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2239; /* Primary dark background */
}

.page-exclusive-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-exclusive-offers__section-title {
    font-size: 2.5rem;
    color: #E0B400; /* Secondary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.page-exclusive-offers__sub-title {
    font-size: 1.8rem;
    color: #E0B400; /* Secondary color for subtitles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-exclusive-offers__text-content {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-exclusive-offers__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-exclusive-offers__btn--primary {
    background-color: #E0B400; /* Secondary color */
    color: #0A2239; /* Primary color as text */
    border-color: #E0B400;
}

.page-exclusive-offers__btn--primary:hover {
    background-color: #f0c83a; /* Slightly lighter gold */
    border-color: #f0c83a;
    transform: translateY(-2px);
}

.page-exclusive-offers__btn--secondary {
    background-color: transparent;
    color: #E0B400; /* Secondary color */
    border-color: #E0B400;
}

.page-exclusive-offers__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A2239;
    transform: translateY(-2px);
}

.page-exclusive-offers__btn--outline {
    background-color: transparent;
    color: #E0B400;
    border: 1px solid #E0B400;
    padding: 10px 20px;
    font-size: 1rem;
}

.page-exclusive-offers__btn--outline:hover {
    background-color: #E0B400;
    color: #0A2239;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #1a3a5a; /* Slightly lighter dark blue for contrast */
}

/* Hero Section */
.page-exclusive-offers__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0A2239, #1a3a5a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-exclusive-offers__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-exclusive-offers__hero-title {
    font-size: 3.8rem;
    margin-bottom: 20px;
    color: #E0B400;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-exclusive-offers__hero-description {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    font-weight: 300;
}

.page-exclusive-offers__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-exclusive-offers__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.2; /* Subtle background image */
    max-width: 50%;
    height: auto;
    z-index: 0;
}

.page-exclusive-offers__img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Intro Section */
.page-exclusive-offers__intro {
    text-align: center;
}

/* Offers List Section */
.page-exclusive-offers__subtitle {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 50px;
}

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

.page-exclusive-offers__offer-card {
    background-color: #1a3a5a; /* Slightly lighter dark blue */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-exclusive-offers__offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-exclusive-offers__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #E0B400;
}

.page-exclusive-offers__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-exclusive-offers__card-title {
    font-size: 1.5rem;
    color: #E0B400;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-exclusive-offers__card-description {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Deep Content Section */
.page-exclusive-offers__ordered-list,
.page-exclusive-offers__unordered-list {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-exclusive-offers__ordered-list li,
.page-exclusive-offers__unordered-list li {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.page-exclusive-offers__ordered-list li strong {
    color: #E0B400;
}

.page-exclusive-offers__cta-bottom {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Floating Ad */
.page-exclusive-offers__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #E0B400;
    color: #0A2239;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%); /* Start off-screen */
    transition: transform 0.5s ease-out;
}

.page-exclusive-offers__floating-ad.show {
    transform: translateX(0); /* Slide in */
}

.page-exclusive-offers__floating-ad-link {
    text-decoration: none;
    color: #0A2239;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-exclusive-offers__floating-ad-link:hover {
    text-decoration: underline;
}

.page-exclusive-offers__floating-ad-icon {
    font-size: 1.5rem;
}

.page-exclusive-offers__floating-ad-close {
    background: none;
    border: none;
    color: #0A2239;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
    padding: 5px;
    line-height: 1;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.page-exclusive-offers__floating-ad-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-exclusive-offers__hero-title {
        font-size: 3rem;
    }
    .page-exclusive-offers__hero-description {
        font-size: 1.3rem;
    }
    .page-exclusive-offers__section-title {
        font-size: 2rem;
    }
    .page-exclusive-offers__sub-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-exclusive-offers__hero {
        padding: 80px 20px;
    }
    .page-exclusive-offers__hero-title {
        font-size: 2.5rem;
    }
    .page-exclusive-offers__hero-description {
        font-size: 1.1rem;
    }
    .page-exclusive-offers__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-exclusive-offers__section-title {
        font-size: 1.8rem;
    }
    .page-exclusive-offers__sub-title {
        font-size: 1.4rem;
    }
    .page-exclusive-offers__grid {
        grid-template-columns: 1fr;
    }
    .page-exclusive-offers__offer-card {
        margin-bottom: 20px;
    }
    .page-exclusive-offers__floating-ad {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    .page-exclusive-offers__floating-ad-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-exclusive-offers__hero-title {
        font-size: 2rem;
    }
    .page-exclusive-offers__hero-description {
        font-size: 1rem;
    }
    .page-exclusive-offers__btn {
        width: 100%;
    }
    .page-exclusive-offers__section-title {
        font-size: 1.6rem;
    }
    .page-exclusive-offers__sub-title {
        font-size: 1.2rem;
    }
    .page-exclusive-offers__text-content,
    .page-exclusive-offers__ordered-list li,
    .page-exclusive-offers__unordered-list li {
        font-size: 0.95rem;
    }
    .page-exclusive-offers__floating-ad {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        bottom: 10px;
        justify-content: space-between;
    }
    .page-exclusive-offers__floating-ad-text {
        flex-grow: 1;
    }
}