/* style/resources-sports-betting-guide-odds.css */

/* Variables for colors */
:root {
    --primary-color: #007bff; /* Deep Blue */
    --secondary-color: #ffc107; /* Amber Gold */
    --text-dark: #333;
    --text-light: #f8f9fa;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
}

/* Base styles for the page content */
.page-resources-sports-betting-guide-odds {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

.page-resources-sports-betting-guide-odds .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-sports-betting-guide-odds .section-padding {
    padding: 60px 0;
}

.page-resources-sports-betting-guide-odds .bg-light {
    background-color: var(--bg-light);
}

.page-resources-sports-betting-guide-odds .bg-primary {
    background-color: var(--primary-color);
}

.page-resources-sports-betting-guide-odds .text-white {
    color: var(--text-light);
}

.page-resources-sports-betting-guide-odds .text-center {
    text-align: center;
}

/* Hero Section */
.page-resources-sports-betting-guide-odds .hero-section {
    position: relative;
    padding: 100px 0;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); /* Deeper blue gradient */
}

.page-resources-sports-betting-guide-odds .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    z-index: 1;
}

.page-resources-sports-betting-guide-odds .hero-section .container {
    position: relative;
    z-index: 2;
}

.page-resources-sports-betting-guide-odds .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-light); /* Ensure high contrast */
}

.page-resources-sports-betting-guide-odds .hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light); /* Ensure high contrast */
}

.page-resources-sports-betting-guide-odds .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6; /* Slightly transparent to blend with overlay */
}

/* Buttons */
.page-resources-sports-betting-guide-odds .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.page-resources-sports-betting-guide-odds .btn-primary {
    background-color: var(--secondary-color); /* Amber Gold for primary action */
    color: var(--text-dark); /* Dark text for contrast */
}

.page-resources-sports-betting-guide-odds .btn-primary:hover {
    background-color: #e0a800; /* Slightly darker on hover */
    transform: translateY(-2px);
}

.page-resources-sports-betting-guide-odds .btn-warning {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.page-resources-sports-betting-guide-odds .btn-warning:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-resources-sports-betting-guide-odds .btn-lg {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Section Titles */
.page-resources-sports-betting-guide-odds .section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
    font-weight: bold;
}

.page-resources-sports-betting-guide-odds .section-title.text-white {
    color: var(--text-light);
}

/* Introduction and General Text */
.page-resources-sports-betting-guide-odds p {
    margin-bottom: 1em;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-resources-sports-betting-guide-odds h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2em;
}

.page-resources-sports-betting-guide-odds h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.page-resources-sports-betting-guide-odds strong {
    color: var(--primary-color);
}

/* Grid Layouts */
.page-resources-sports-betting-guide-odds .grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .page-resources-sports-betting-guide-odds .grid-2-cols {
        grid-template-columns: 1fr;
    }
}

/* Feature Items */
.page-resources-sports-betting-guide-odds .feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sports-betting-guide-odds .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-sports-betting-guide-odds .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-resources-sports-betting-guide-odds .feature-item h3 i {
    font-size: 1.5em;
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Bet Type Items */
.page-resources-sports-betting-guide-odds .bet-type-item,
.page-resources-sports-betting-guide-odds .odds-format-item,
.page-resources-sports-betting-guide-odds .strategy-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-sports-betting-guide-odds .bet-type-item h3,
.page-resources-sports-betting-guide-odds .odds-format-item h3,
.page-resources-sports-betting-guide-odds .strategy-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.6em;
}

.page-resources-sports-betting-guide-odds .strategy-item h3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.page-resources-sports-betting-guide-odds .strategy-item h3 i {
    font-size: 1.4em;
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Image Styles */
.page-resources-sports-betting-guide-odds .img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-sports-betting-guide-odds .mt-4 {
    margin-top: 40px;
}

/* List Styles */
.page-resources-sports-betting-guide-odds ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
    font-size: 1.1em;
}

.page-resources-sports-betting-guide-odds ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 1em;
    font-size: 1.1em;
}

.page-resources-sports-betting-guide-odds ul li,
.page-resources-sports-betting-guide-odds ol li {
    margin-bottom: 0.5em;
}

.page-resources-sports-betting-guide-odds .term-list {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-resources-sports-betting-guide-odds .term-list li {
    background-color: var(--bg-light);
    padding: 15px 20px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* FAQ Accordion */
.page-resources-sports-betting-guide-odds .faq-accordion {
    margin-top: 40px;
}

.page-resources-sports-betting-guide-odds .faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-resources-sports-betting-guide-odds .faq-question {
    padding: 20px;
    margin: 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-sports-betting-guide-odds .faq-question:hover {
    background-color: #0056b3;
}

.page-resources-sports-betting-guide-odds .faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-sports-betting-guide-odds .faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-sports-betting-guide-odds .faq-answer {
    padding: 0 20px;
    background-color: #fcfcfc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-sports-betting-guide-odds .faq-answer.active {
    max-height: 500px; /* Adjust based on content */
    padding: 20px;
}

.page-resources-sports-betting-guide-odds .faq-answer p {
    margin-bottom: 0;
    color: var(--text-dark);
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-sports-betting-guide-odds .hero-title {
        font-size: 2.8em;
    }
    .page-resources-sports-betting-guide-odds .hero-subtitle {
        font-size: 1.2em;
    }
    .page-resources-sports-betting-guide-odds .section-title {
        font-size: 2em;
    }
    .page-resources-sports-betting-guide-odds h2 {
        font-size: 1.8em;
    }
    .page-resources-sports-betting-guide-odds h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-resources-sports-betting-guide-odds .hero-section {
        padding: 80px 0;
    }
    .page-resources-sports-betting-guide-odds .hero-title {
        font-size: 2.2em;
    }
    .page-resources-sports-betting-guide-odds .hero-subtitle {
        font-size: 1em;
    }
    .page-resources-sports-betting-guide-odds .section-padding {
        padding: 40px 0;
    }
    .page-resources-sports-betting-guide-odds .grid-2-cols {
        grid-template-columns: 1fr;
    }
    .page-resources-sports-betting-guide-odds .term-list {
        grid-template-columns: 1fr;
    }
    .page-resources-sports-betting-guide-odds .feature-item,
    .page-resources-sports-betting-guide-odds .bet-type-item,
    .page-resources-sports-betting-guide-odds .odds-format-item,
    .page-resources-sports-betting-guide-odds .strategy-item {
        padding: 20px;
    }
    .page-resources-sports-betting-guide-odds .btn-lg {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* Iconography - using a simple approach for placeholders */
/* In a real scenario, this would be a font icon library like Font Awesome */
.page-resources-sports-betting-guide-odds .icon-shield::before { content: '🛡️ '; }
.page-resources-sports-betting-guide-odds .icon-chart::before { content: '📈 '; }
.page-resources-sports-betting-guide-odds .icon-user-plus::before { content: '➕ '; }
.page-resources-sports-betting-guide-odds .icon-support::before { content: '💬 '; }
.page-resources-sports-betting-guide-odds .icon-search::before { content: '🔍 '; }
.page-resources-sports-betting-guide-odds .icon-wallet::before { content: '💰 '; }
.page-resources-sports-betting-guide-odds .icon-brain::before { content: '🧠 '; }
.page-resources-sports-betting-guide-odds .icon-check::before { content: '✅ '; }
.page-resources-sports-betting-guide-odds .icon-compare::before { content: '⚖️ '; }
.page-resources-sports-betting-guide-odds .icon-book::before { content: '📚 '; }