/* style/resources-mcw18-casino-guide.css */

/* Base styles for the page content */
.page-resources-mcw18-casino-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Default body background */
}

.page-resources-mcw18-casino-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-mcw18-casino-guide__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* For image positioning */
    background-color: #017439; /* Brand primary color for hero background */
    color: #FFFFFF; /* White text for dark background */
    min-height: 500px;
}

.page-resources-mcw18-casino-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3; /* Slightly transparent to allow text to stand out */
}

.page-resources-mcw18-casino-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFF00; /* Yellow for title, ensuring contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-mcw18-casino-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Buttons */
.page-resources-mcw18-casino-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-resources-mcw18-casino-guide__cta-buttons--center {
    justify-content: center;
    margin-top: 40px;
}

.page-resources-mcw18-casino-guide__btn-primary,
.page-resources-mcw18-casino-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Crucial for responsive buttons */
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

.page-resources-mcw18-casino-guide__btn-primary {
    background-color: #C30808; /* Red for primary action, ensuring contrast with white text */
    color: #FFFF00; /* Yellow text for contrast */
    border: 2px solid #C30808;
}

.page-resources-mcw18-casino-guide__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-resources-mcw18-casino-guide__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Yellow text for contrast */
    border: 2px solid #FFFF00; /* Yellow border for contrast */
}

.page-resources-mcw18-casino-guide__btn-secondary:hover {
    background-color: #FFFF00;
    color: #C30808; /* Red text on yellow background */
}

/* Content Area */
.page-resources-mcw18-casino-guide__content-area {
    padding: 60px 20px;
    background-color: #FFFFFF;
    color: #333333;
}

.page-resources-mcw18-casino-guide__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand primary color */
    margin-bottom: 30px;
    text-align: center;
    padding-top: 20px;
}

.page-resources-mcw18-casino-guide__sub-title {
    font-size: 1.8em;
    color: #017439; /* Brand primary color */
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-resources-mcw18-casino-guide p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-mcw18-casino-guide__list,
.page-resources-mcw18-casino-guide__list-ordered {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-resources-mcw18-casino-guide__list li,
.page-resources-mcw18-casino-guide__list-ordered li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Image styling */
.page-resources-mcw18-casino-guide__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-resources-mcw18-casino-guide__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}