/* style/blog-bay365-promotions-guide.css */

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

.page-blog-bay365-promotions-guide {
    background-color: var(--bay365-background);
    color: var(--bay365-text-main); /* Default text color for the page */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure space before footer */
}

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

/* Hero Section */
.page-blog-bay365-promotions-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background-color: var(--bay365-deep-green); /* A darker shade for the hero background */
}

.page-blog-bay365-promotions-guide__hero-image {
    width: 100%;
    height: auto;
    max-height: 600px; /* Limit height for hero image */
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
}

.page-blog-bay365-promotions-guide__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-blog-bay365-promotions-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--bay365-text-main);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Soft glow */
}

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

.page-blog-bay365-promotions-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

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

.page-blog-bay365-promotions-guide__btn-primary {
    background: var(--bay365-button-gradient);
    color: var(--bay365-text-main); /* White text on green gradient */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-bay365-promotions-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-bay365-promotions-guide__btn-secondary {
    background-color: transparent;
    color: var(--bay365-text-main); /* White text */
    border: 2px solid var(--bay365-glow);
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-blog-bay365-promotions-guide__btn-secondary:hover {
    background-color: rgba(87, 227, 141, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

/* General Section Styling */
.page-blog-bay365-promotions-guide__intro-section,
.page-blog-bay365-promotions-guide__promotions-list,
.page-blog-bay365-promotions-guide__guide-section,
.page-blog-bay365-promotions-guide__terms-section,
.page-blog-bay365-promotions-guide__tips-section,
.page-blog-bay365-promotions-guide__faq-section,
.page-blog-bay365-promotions-guide__conclusion-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--bay365-divider);
}

.page-blog-bay365-promotions-guide__intro-section p,
.page-blog-bay365-promotions-guide__promotions-list p,
.page-blog-bay365-promotions-guide__guide-section p,
.page-blog-bay365-promotions-guide__terms-section p,
.page-blog-bay365-promotions-guide__tips-section p,
.page-blog-bay365-promotions-guide__faq-section p,
.page-blog-bay365-promotions-guide__conclusion-section p {
    color: var(--bay365-text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.page-blog-bay365-promotions-guide__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--bay365-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-bay365-promotions-guide__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Promotion Cards */
.page-blog-bay365-promotions-guide__promotions-list .page-blog-bay365-promotions-guide__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-bay365-promotions-guide__promo-card {
    background-color: var(--bay365-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-blog-bay365-promotions-guide__promo-image {
    width: 100%;
    max-width: 400px; /* Constrain card image width */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-blog-bay365-promotions-guide__promo-title {
    font-size: 1.5rem;
    color: var(--bay365-text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-bay365-promotions-guide__promo-card .page-blog-bay365-promotions-guide__btn-primary,
.page-blog-bay365-promotions-guide__promo-card .page-blog-bay365-promotions-guide__btn-secondary {
    margin-top: 20px;
    width: 100%; /* Full width for buttons in cards */
}

/* Guide Section */
.page-blog-bay365-promotions-guide__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-bay365-promotions-guide__steps-list li {
    background-color: var(--bay365-card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--bay365-glow);
}

.page-blog-bay365-promotions-guide__step-title {
    font-size: 1.35rem;
    color: var(--bay365-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-bay365-promotions-guide__steps-list li p {
    color: var(--bay365-text-secondary);
    margin-bottom: 15px;
}

/* Terms Section */
.page-blog-bay365-promotions-guide__terms-list {
    list-style: disc;
    padding-left: 25px;
    color: var(--bay365-text-secondary);
    margin-top: 30px;
}

.page-blog-bay365-promotions-guide__terms-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

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

/* Tips Section */
.page-blog-bay365-promotions-guide__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-bay365-promotions-guide__tips-list li {
    background-color: var(--bay365-card-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--bay365-deep-green);
    color: var(--bay365-text-secondary);
    font-size: 1.05rem;
}

.page-blog-bay365-promotions-guide__tips-list li::before {
    content: "💡";
    margin-right: 10px;
    color: var(--bay365-gold);
    font-size: 1.2em;
}

/* FAQ Section */
.page-blog-bay365-promotions-guide__faq-list {
    margin-top: 30px;
}

.page-blog-bay365-promotions-guide__faq-item {
    background-color: var(--bay365-card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-blog-bay365-promotions-guide__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--bay365-text-main);
    cursor: pointer;
    background-color: var(--bay365-deep-green);
    border-bottom: 1px solid var(--bay365-divider);
    list-style: none; /* Hide default marker */
}

.page-blog-bay365-promotions-guide__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-blog-bay365-promotions-guide__faq-qtext {
    flex-grow: 1;
}

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

.page-blog-bay365-promotions-guide__faq-item[open] .page-blog-bay365-promotions-guide__faq-toggle {
    content: "−";
}

.page-blog-bay365-promotions-guide__faq-answer {
    padding: 20px 25px;
    font-size: 1.05rem;
    color: var(--bay365-text-secondary);
    border-top: 1px solid var(--bay365-divider);
}

.page-blog-bay365-promotions-guide__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-bay365-promotions-guide__conclusion-section {
    text-align: center;
    padding-bottom: 80px; /* More space before footer */
}

/* Ensure no image filters are used */
.page-blog-bay365-promotions-guide img {
    filter: none;
}

/* Content area image CSS size check for desktop */
.page-blog-bay365-promotions-guide__content-image,
.page-blog-bay365-promotions-guide__promo-image {
    min-width: 200px;
    min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog-bay365-promotions-guide__hero-image {
        max-height: 500px;
    }
    .page-blog-bay365-promotions-guide__promotions-list .page-blog-bay365-promotions-guide__container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-bay365-promotions-guide__container {
        padding: 0 15px;
    }

    .page-blog-bay365-promotions-guide__hero-section {
        padding-bottom: 30px;
    }

    .page-blog-bay365-promotions-guide__hero-image {
        max-height: 400px;
    }

    .page-blog-bay365-promotions-guide__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

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

    .page-blog-bay365-promotions-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog-bay365-promotions-guide__btn-primary,
    .page-blog-bay365-promotions-guide__btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-bay365-promotions-guide__intro-section,
    .page-blog-bay365-promotions-guide__promotions-list,
    .page-blog-bay365-promotions-guide__guide-section,
    .page-blog-bay365-promotions-guide__terms-section,
    .page-blog-bay365-promotions-guide__tips-section,
    .page-blog-bay365-promotions-guide__faq-section,
    .page-blog-bay365-promotions-guide__conclusion-section {
        padding: 40px 0;
    }

    .page-blog-bay365-promotions-guide__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-blog-bay365-promotions-guide__content-image,
    .page-blog-bay365-promotions-guide__promo-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-blog-bay365-promotions-guide__promo-card {
        padding: 20px;
    }

    .page-blog-bay365-promotions-guide__promo-title {
        font-size: 1.3rem;
    }

    .page-blog-bay365-promotions-guide__steps-list li,
    .page-blog-bay365-promotions-guide__tips-list li {
        padding: 20px;
    }

    .page-blog-bay365-promotions-guide__step-title {
        font-size: 1.2rem;
    }

    .page-blog-bay365-promotions-guide__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-blog-bay365-promotions-guide__faq-answer {
        padding: 15px 20px;
    }

    .page-blog-bay365-promotions-guide__promotions-list .page-blog-bay365-promotions-guide__container,
    .page-blog-bay365-promotions-guide__steps-list,
    .page-blog-bay365-promotions-guide__terms-list,
    .page-blog-bay365-promotions-guide__tips-list,
    .page-blog-bay365-promotions-guide__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
        overflow: hidden !important;
    }

    .page-blog-bay365-promotions-guide__promo-card,
    .page-blog-bay365-promotions-guide__steps-list li,
    .page-blog-bay365-promotions-guide__tips-list li,
    .page-blog-bay365-promotions-guide__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}