/* style/resources-online-betting-strategies.css */

/* Variables and Base Styles */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --btn-register-bg: #C30808;
    --btn-register-text: #FFFF00;
}

.page-resources-online-betting-strategies {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--secondary-color); /* Body background is white from shared.css */
}

/* Hero Section */
.page-resources-online-betting-strategies__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-online-betting-strategies__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: none !important; /* Ensure no filter is applied */
}

.page-resources-online-betting-strategies__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-online-betting-strategies__hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 900px;
    padding: 20px;
}

.page-resources-online-betting-strategies__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light); /* Ensure high contrast */
}

.page-resources-online-betting-strategies__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light); /* Ensure high contrast */
}

.page-resources-online-betting-strategies__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Button Styles */
.page-resources-online-betting-strategies__btn-primary,
.page-resources-online-betting-strategies__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

/* Specific button styles for Register/Login */
.page-resources-online-betting-strategies__hero-actions .page-resources-online-betting-strategies__btn-primary {
    background-color: var(--btn-register-bg); /* #C30808 */
    color: var(--btn-register-text); /* #FFFF00 */
    border: 2px solid var(--btn-register-bg);
}

.page-resources-online-betting-strategies__hero-actions .page-resources-online-betting-strategies__btn-primary:hover {
    background-color: #a00606; /* Darker red */
    border-color: #a00606;
}

.page-resources-online-betting-strategies__hero-actions .page-resources-online-betting-strategies__btn-secondary {
    background-color: transparent;
    color: var(--btn-register-text); /* #FFFF00 */
    border: 2px solid var(--btn-register-text);
}

.page-resources-online-betting-strategies__hero-actions .page-resources-online-betting-strategies__btn-secondary:hover {
    background-color: var(--btn-register-text);
    color: var(--btn-register-bg);
}

/* Call to Action Buttons (general) */
.page-resources-online-betting-strategies__cta-actions .page-resources-online-betting-strategies__btn-primary {
    background-color: var(--primary-color); /* #017439 */
    color: var(--text-light); /* #FFFFFF */
    border: 2px solid var(--primary-color);
}