/* style/gambling-strategies-blackjack-strategy.css */

/* Base styles for the page content container */
.page-gambling-strategies-blackjack-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e5dfd3; /* Light text on dark background, WCAG AA contrast with #1A202C */
    background-color: #1A202C; /* Main dark background */
}

.page-gambling-strategies-blackjack-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-gambling-strategies-blackjack-strategy__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6e 100%); /* Dark gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-gambling-strategies-blackjack-strategy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay for readability */
    z-index: 1;
}

.page-gambling-strategies-blackjack-strategy__hero-content {
    flex: 1;
    z-index: 2;
    padding-left: 20px;
}

.page-gambling-strategies-blackjack-strategy__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for title, WCAG AAA contrast with #1A202C */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-gambling-strategies-blackjack-strategy__hero-description {
    font-size: 1.3em;
    color: #f0f0f0; /* Light text, good contrast */
    margin-bottom: 30px;
    max-width: 700px;
}

.page-gambling-strategies-blackjack-strategy__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-right: 20px;
}

.page-gambling-strategies-blackjack-strategy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-gambling-strategies-blackjack-strategy__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold border */
}

.page-gambling-strategies-blackjack-strategy__section:last-of-type {
    border-bottom: none;
}

.page-gambling-strategies-blackjack-strategy__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main section titles, WCAG AAA contrast with #1A202C */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-gambling-strategies-blackjack-strategy__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gambling-strategies-blackjack-strategy__subsection-title {
    font-size: 1.8em;
    color: #f0f0f0; /* Lighter text for subsections, good contrast */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Paragraphs and Text */
.page-gambling-strategies-blackjack-strategy p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e5dfd3; /* Light text, good contrast */
}

.page-gambling-strategies-blackjack-strategy .highlight-text {
    color: #FFD700; /* Highlight important keywords, WCAG AAA contrast with #1A202C */
    font-weight: bold;
}

/* Lists */
.page-gambling-strategies-blackjack-strategy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e5dfd3; /* Light text, good contrast */
}

.page-gambling-strategies-blackjack-strategy__list--ordered {
    list-style: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e5dfd3; /* Light text, good contrast */
}

.page-gambling-strategies-blackjack-strategy__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Buttons */
.page-gambling-strategies-blackjack-strategy__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-gambling-strategies-blackjack-strategy__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold, WCAG AAA contrast */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-gambling-strategies-blackjack-strategy__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-gambling-strategies-blackjack-strategy__btn--secondary {
    background-color: #3A4A6E; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue, WCAG AAA contrast */
    border: 1px solid #FFD700;
    margin-right: 15px;
    margin-bottom: 15px; /* For stacking on smaller screens */
}

.page-gambling-strategies-blackjack-strategy__btn--secondary:hover {
    background-color: #5f6e8c; /* Lighter dark blue on hover */
    color: #FFF;
    border-color: #FFF;
    transform: translateY(-2px);
}

.page-gambling-strategies-blackjack-strategy__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-gambling-strategies-blackjack-strategy__cta-final {
    text-align: center;
    margin-top: 50px;
}

/* Links within text */
.page-gambling-strategies-blackjack-strategy__link-text {
    color: #FFD700; /* Gold link text, WCAG AAA contrast with #1A202C */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.page-gambling-strategies-blackjack-strategy__link-text:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Image styling */
.page-gambling-strategies-blackjack-strategy__image-row {
    text-align: center;
    margin: 30px 0;
}

.page-gambling-strategies-blackjack-strategy__content-image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Warning box */
.page-gambling-strategies-blackjack-strategy__warning {
    background-color: #3A4A6E; /* Dark blue background for warning */
    border-left: 5px solid #FFD700; /* Gold border */
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    color: #e5dfd3; /* Light text, good contrast */
    font-size: 1.1em;
}

/* Features section */
.page-gambling-strategies-blackjack-strategy__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-gambling-strategies-blackjack-strategy__feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #2a3447; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-strategies-blackjack-strategy__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-gambling-strategies-blackjack-strategy__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-gambling-strategies-blackjack-strategy__feature-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold title, WCAG AAA contrast with #2a3447 */
    margin-bottom: 15px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-strategies-blackjack-strategy__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-gambling-strategies-blackjack-strategy__hero-content {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .page-gambling-strategies-blackjack-strategy__hero-image-wrapper {
        padding-right: 0;
    }

    .page-gambling-strategies-blackjack-strategy__hero-title {
        font-size: 2.5em;
    }

    .page-gambling-strategies-blackjack-strategy__hero-description {
        font-size: 1.1em;
    }

    .page-gambling-strategies-blackjack-strategy__section-title {
        font-size: 2em;
    }

    .page-gambling-strategies-blackjack-strategy__subsection-title {
        font-size: 1.6em;
    }

    .page-gambling-strategies-blackjack-strategy__content-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-gambling-strategies-blackjack-strategy__hero {
        min-height: auto;
    }

    .page-gambling-strategies-blackjack-strategy__hero-title {
        font-size: 2em;
    }

    .page-gambling-strategies-blackjack-strategy__hero-description {
        font-size: 1em;
    }

    .page-gambling-strategies-blackjack-strategy__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-gambling-strategies-blackjack-strategy__section {
        padding: 40px 0;
    }

    .page-gambling-strategies-blackjack-strategy__section-title {
        font-size: 1.8em;
    }

    .page-gambling-strategies-blackjack-strategy__subsection-title {
        font-size: 1.4em;
    }

    .page-gambling-strategies-blackjack-strategy__features {
        flex-direction: column;
        align-items: center;
    }

    .page-gambling-strategies-blackjack-strategy__feature-item {
        min-width: unset;
        width: 100%;
        max-width: 400px;
    }
    
    .page-gambling-strategies-blackjack-strategy__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-gambling-strategies-blackjack-strategy__btn--secondary {
        margin-right: 0;
        width: 100%;
        max-width: 300px; /* Limit width for stacked buttons */
    }
}

@media (max-width: 480px) {
    .page-gambling-strategies-blackjack-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-gambling-strategies-blackjack-strategy__hero-description {
        font-size: 0.95em;
    }
    .page-gambling-strategies-blackjack-strategy p,
    .page-gambling-strategies-blackjack-strategy__list li {
        font-size: 0.95em;
    }
    .page-gambling-strategies-blackjack-strategy__content-image {
        max-width: 100%;
    }
}