/* style/blog-6ff-promotions-guide.css */

/* Custom Colors */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-card-bg: #11271B;
    --color-bg: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-6ff-promotions-guide {
    background-color: var(--color-bg); /* Use the specified background color */
    color: var(--color-text-main); /* Ensure text is visible on dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom before the footer */
}

.page-blog-6ff-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-6ff-promotions-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    padding: 60px 20px; /* General padding */
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--color-deep-green); /* Example background for the section */
    overflow: hidden;
}

.page-blog-6ff-promotions-guide__image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
    margin-bottom: 30px; /* Space between image and text */
}

.page-blog-6ff-promotions-guide__hero-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-blog-6ff-promotions-guide__hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1; /* Ensure content is above any background elements */
    color: var(--color-text-main);
}

.page-blog-6ff-promotions-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    color: var(--color-gold); /* Using gold for prominence */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-6ff-promotions-guide__description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Buttons */
.page-blog-6ff-promotions-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-blog-6ff-promotions-guide__btn-primary,
.page-blog-6ff-promotions-guide__btn-secondary,
.page-blog-6ff-promotions-guide__btn-small {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow word breaking */
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-6ff-promotions-guide__btn-primary {
    background: var(--button-gradient); /* Custom button gradient */
    color: var(--color-text-main); /* White text on dark button */
    border: 2px solid transparent;
}

.page-blog-6ff-promotions-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-6ff-promotions-guide__btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-blog-6ff-promotions-guide__btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-text-main);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-6ff-promotions-guide__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: var(--button-gradient);
    color: var(--color-text-main);
    border: none;
    margin-top: 15px;
}
.page-blog-6ff-promotions-guide__btn-small:hover {
    background: var(--color-secondary);
}

/* Section Titles */
.page-blog-6ff-promotions-guide__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: bold;
}

/* Intro Section */
.page-blog-6ff-promotions-guide__intro-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

/* Promotions List */
.page-blog-6ff-promotions-guide__promotions-list {
    padding: 40px 0;
}

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

.page-blog-6ff-promotions-guide__promo-card {
    background-color: var(--color-card-bg); /* Card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.page-blog-6ff-promotions-guide__promo-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-6ff-promotions-guide__promo-card .page-blog-6ff-promotions-guide__card-title {
    font-size: 1.4rem;
    color: var(--color-gold);
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-blog-6ff-promotions-guide__promo-card p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    padding: 0 20px 20px;
    flex-grow: 1; /* Ensures content pushes button to bottom */
}

/* How to Claim Section */
.page-blog-6ff-promotions-guide__how-to-claim {
    padding: 40px 0;
}

.page-blog-6ff-promotions-guide__how-to-claim p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
    text-align: center;
}

.page-blog-6ff-promotions-guide__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-bottom: 40px;
}

.page-blog-6ff-promotions-guide__steps-list li {
    counter-increment: step-counter;
    background-color: var(--color-card-bg);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    position: relative;
    font-size: 1.1rem;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-6ff-promotions-guide__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: var(--color-text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid var(--color-gold);
}

.page-blog-6ff-promotions-guide__steps-list li strong {
    color: var(--color-gold);
    margin-left: 30px;
}

/* Terms and Conditions Section */
.page-blog-6ff-promotions-guide__terms-conditions {
    padding: 40px 0;
}

.page-blog-6ff-promotions-guide__terms-conditions p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.page-blog-6ff-promotions-guide__terms-list {
    list-style: disc;
    padding-left: 40px;
    margin-bottom: 30px;
}

.page-blog-6ff-promotions-guide__terms-list li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--color-text-secondary);
}

.page-blog-6ff-promotions-guide__terms-list li strong {
    color: var(--color-text-main);
}

/* FAQ Section */
.page-blog-6ff-promotions-guide__faq-section {
    padding: 40px 0;
}

.page-blog-6ff-promotions-guide__faq-list {
    margin-top: 30px;
}

.page-blog-6ff-promotions-guide__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-6ff-promotions-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--color-deep-green); /* Darker background for question */
    color: var(--color-text-main);
    transition: background-color 0.3s ease;
}

.page-blog-6ff-promotions-guide__faq-question:hover {
    background-color: var(--color-primary);
}

.page-blog-6ff-promotions-guide__faq-qtext {
    flex-grow: 1;
    color: var(--color-gold); /* Gold for question text */
}

.page-blog-6ff-promotions-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-text-main);
}

.page-blog-6ff-promotions-guide__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
/* For details tag, browser handles the max-height, but we need to reset padding for the animation */
.page-blog-6ff-promotions-guide__faq-item[open] .page-blog-6ff-promotions-guide__faq-answer {
    max-height: 500px; /* Arbitrary large value for smooth transition */
    padding-top: 15px;
}
.page-blog-6ff-promotions-guide__faq-item[open] .page-blog-6ff-promotions-guide__faq-question {
    background-color: var(--color-primary); /* Change background when open */
}
/* Hide default details marker */
.page-blog-6ff-promotions-guide__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-blog-6ff-promotions-guide__faq-item summary {
    list-style: none;
}

/* Final CTA Section */
.page-blog-6ff-promotions-guide__final-cta {
    padding: 60px 0;
    text-align: center;
    background-color: var(--color-deep-green);
    border-top: 1px solid var(--color-divider);
}

.page-blog-6ff-promotions-guide__final-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
}

.page-blog-6ff-promotions-guide__last-updated {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: 40px;
}

/* Inline links */
.page-blog-6ff-promotions-guide__inline-link {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.page-blog-6ff-promotions-guide__inline-link:hover {
    color: var(--color-glow);
}


/* Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
    .page-blog-6ff-promotions-guide__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }
    .page-blog-6ff-promotions-guide__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-6ff-promotions-guide__description {
        font-size: 1.1rem;
    }
    .page-blog-6ff-promotions-guide__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
        margin-top: 40px;
    }
    .page-blog-6ff-promotions-guide__promo-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .page-blog-6ff-promotions-guide__promo-card img {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-blog-6ff-promotions-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-6ff-promotions-guide__hero-section {
        padding: 20px 15px;
        padding-top: 10px !important; /* body already handles header offset */
    }

    .page-blog-6ff-promotions-guide__image-wrapper {
        margin-bottom: 20px;
    }

    .page-blog-6ff-promotions-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-blog-6ff-promotions-guide__description {
        font-size: 1rem;
    }

    .page-blog-6ff-promotions-guide__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px; /* Add padding to button container */
        overflow: hidden;
    }

    .page-blog-6ff-promotions-guide__btn-primary,
    .page-blog-6ff-promotions-guide__btn-secondary,
    .page-blog-6ff-promotions-guide__btn-small,
    .page-blog-6ff-promotions-guide a[class*="button"],
    .page-blog-6ff-promotions-guide 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; /* Ensure text inside button has padding */
        padding-right: 15px;
    }

    .page-blog-6ff-promotions-guide__section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-6ff-promotions-guide__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-6ff-promotions-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-6ff-promotions-guide__section,
    .page-blog-6ff-promotions-guide__card,
    .page-blog-6ff-promotions-guide__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-6ff-promotions-guide__promo-card-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
    }
    .page-blog-6ff-promotions-guide__promo-card img {
        
    }

    .page-blog-6ff-promotions-guide__steps-list li::before {
        left: 5px; /* Adjust position for mobile */
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    .page-blog-6ff-promotions-guide__steps-list li strong {
        margin-left: 20px; /* Adjust margin for mobile */
    }

    .page-blog-6ff-promotions-guide__faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    .page-blog-6ff-promotions-guide__faq-answer {
        padding: 0 15px 15px;
    }
    .page-blog-6ff-promotions-guide__faq-item[open] .page-blog-6ff-promotions-guide__faq-answer {
        padding-top: 10px;
    }
}