/* style/expert-predictions.css */

/* General page styling */
.page-expert-predictions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color on light backgrounds */
    background-color: #f8f8f8; /* Light background for general content */
}

.page-expert-predictions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
.page-expert-predictions h1,
.page-expert-predictions h2,
.page-expert-predictions h3 {
    color: #0A2342;
    text-align: center;
    margin-bottom: 25px;
}

.page-expert-predictions h1 {
    font-size: 2.8em;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
}

.page-expert-predictions h2 {
    font-size: 2.2em;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-expert-predictions h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-expert-predictions h3 {
    font-size: 1.6em;
    font-weight: 600;
}

/* Paragraphs */
.page-expert-predictions p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

/* Buttons */
.page-expert-predictions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-expert-predictions__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-expert-predictions__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-expert-predictions__btn--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #0A2342;
}

.page-expert-predictions__btn--secondary:hover {
    background-color: #1a3c66;
    border-color: #1a3c66;
    transform: translateY(-2px);
}

.page-expert-predictions__btn--tertiary { /* For detail page links */
    background-color: transparent;
    color: #0A2342;
    border: 2px solid #0A2342;
}

.page-expert-predictions__btn--tertiary:hover {
    background-color: #0A2342;
    color: #FFD700;
    transform: translateY(-2px);
}

.page-expert-predictions__btn--cta {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
    font-size: 1.2em;
    padding: 15px 30px;
    margin: 10px;
}
.page-expert-predictions__btn--cta:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-expert-predictions__btn--cta-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: 1.2em;
    padding: 15px 30px;
    margin: 10px;
}
.page-expert-predictions__btn--cta-secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}


/* Hero Section */
.page-expert-predictions__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1a3c66 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.page-expert-predictions__hero h1 {
    color: #FFD700; /* Gold title on dark background */
    margin-bottom: 20px;
}

.page-expert-predictions__hero p {
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-expert-predictions__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%; /* Adjust size as needed */
    max-width: 600px;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.page-expert-predictions__hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sections */
.page-expert-predictions section {
    padding: 60px 0;
    margin-bottom: 30px;
}

.page-expert-predictions__why-us {
    background-color: #ffffff;
}

.page-expert-predictions__why-us-grid,
.page-expert-predictions__category-grid,
.page-expert-predictions__article-grid,
.page-expert-predictions__detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left; /* Adjust text alignment for grid items */
}

.page-expert-predictions__why-us-item,
.page-expert-predictions__category-item,
.page-expert-predictions__article-card,
.page-expert-predictions__detail-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-expert-predictions__why-us-item:hover,
.page-expert-predictions__category-item:hover,
.page-expert-predictions__article-card:hover,
.page-expert-predictions__detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-expert-predictions__why-us-item img,
.page-expert-predictions__category-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-expert-predictions__why-us-item h3,
.page-expert-predictions__category-item h3,
.page-expert-predictions__article-card h3,
.page-expert-predictions__detail-item h3 {
    color: #0A2342;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-align: center;
}
.page-expert-predictions__detail-item h3 a {
    color: #0A2342;
    text-decoration: none;
}
.page-expert-predictions__detail-item h3 a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-expert-predictions__why-us-item p,
.page-expert-predictions__category-item p,
.page-expert-predictions__article-card p,
.page-expert-predictions__detail-item p {
    font-size: 1em;
    color: #555555;
    flex-grow: 1; /* Ensure paragraphs take available space */
    text-align: center;
}

.page-expert-predictions__article-card .page-expert-predictions__btn,
.page-expert-predictions__detail-item .page-expert-predictions__btn {
    margin-top: 20px;
    align-self: center; /* Center the button */
}


.page-expert-predictions__categories {
    background-color: #eef2f6; /* Light gray-blue background */
}

.page-expert-predictions__process {
    background-color: #ffffff;
}

.page-expert-predictions__process-list {
    list-style: none;
    counter-reset: process-step;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-expert-predictions__process-list li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
    text-align: left;
}

.page-expert-predictions__process-list li::before {
    counter-increment: process-step;
    content: counter(process-step);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #0A2342;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions__process-list li h3 {
    text-align: left;
    margin-bottom: 10px;
    font-size: 1.3em;
    color: #0A2342;
}
.page-expert-predictions__process-list li p {
    text-align: left;
    color: #555555;
    margin-bottom: 0;
}

.page-expert-predictions__process-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions__featured-insights {
    background-color: #f8f8f8;
}

.page-expert-predictions__center-btn {
    text-align: center;
    margin-top: 40px;
}

.page-expert-predictions__detail-pages {
    background-color: #eef2f6;
}

/* Call to Action Bottom */
.page-expert-predictions__cta-bottom {
    background: linear-gradient(45deg, #0A2342, #1a3c66); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions__cta-bottom h2 {
    color: #FFD700;
}

.page-expert-predictions__cta-bottom p {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-expert-predictions__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-expert-predictions__cta-image {
    display: block;
    max-width: 500px;
    height: auto;
    margin: 30px auto 0 auto;
    opacity: 0.3; /* Subtle background image */
    position: relative;
    z-index: 0;
}

/* Responsible Gambling */
.page-expert-predictions__responsible-gambling {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 1px solid #eeeeee;
}

.page-expert-predictions__responsible-gambling h2 {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-expert-predictions__responsible-gambling p {
    font-size: 0.95em;
    color: #666666;
    max-width: 900px;
    margin: 0 auto;
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-expert-predictions h1 {
        font-size: 2.2em;
    }
    .page-expert-predictions h2 {
        font-size: 1.8em;
    }
    .page-expert-predictions p {
        font-size: 1em;
    }
    .page-expert-predictions__hero {
        padding: 60px 0;
    }
    .page-expert-predictions__hero-image {
        width: 60%;
    }
    .page-expert-predictions__why-us-grid,
    .page-expert-predictions__category-grid,
    .page-expert-predictions__article-grid,
    .page-expert-predictions__detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-expert-predictions__process-list li {
        padding-left: 60px;
    }
    .page-expert-predictions__process-list li::before {
        width: 45px;
        height: 45px;
        font-size: 1.5em;
    }
    .page-expert-predictions__btn--cta {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    .page-expert-predictions__btn--cta-secondary {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions h1 {
        font-size: 1.8em;
    }
    .page-expert-predictions h2 {
        font-size: 1.6em;
    }
    .page-expert-predictions h3 {
        font-size: 1.3em;
    }
    .page-expert-predictions__hero {
        padding: 40px 0;
    }
    .page-expert-predictions__hero-image {
        display: none; /* Hide hero image on smaller screens */
    }
    .page-expert-predictions__why-us-grid,
    .page-expert-predictions__category-grid,
    .page-expert-predictions__article-grid,
    .page-expert-predictions__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions__process-list li {
        padding-left: 0;
        text-align: center;
    }
    .page-expert-predictions__process-list li::before {
        position: static;
        margin-bottom: 10px;
    }
    .page-expert-predictions__process-list li h3,
    .page-expert-predictions__process-list li p {
        text-align: center;
    }
    .page-expert-predictions__cta-buttons {
        flex-direction: column;
    }
    .page-expert-predictions__btn--cta,
    .page-expert-predictions__btn--cta-secondary {
        width: 80%;
        max-width: 300px;
        margin: 10px auto;
    }
    .page-expert-predictions__cta-image {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions h1 {
        font-size: 1.5em;
    }
    .page-expert-predictions h2 {
        font-size: 1.4em;
    }
    .page-expert-predictions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}