/* style/resources-thomo-cockfighting-commentators-style-and-role.css */

/* General page styling for dark background */
.page-resources-thomo-cockfighting-commentators-style-and-role {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--dark-bg-1); /* Inherit from shared, assuming dark */
}

/* Hero Section */
.page-resources-thomo-cockfighting-commentators-style-and-role__hero-section {
    position: relative;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    overflow: hidden; /* Prevent image overflow */
}

.page-resources-thomo-cockfighting-commentators-style-and-role__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay for text readability */
}

.page-resources-thomo-cockfighting-commentators-style-and-role__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-resources-thomo-cockfighting-commentators-style-and-role__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-thomo-cockfighting-commentators-style-and-role__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-thomo-cockfighting-commentators-style-and-role__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-resources-thomo-cockfighting-commentators-style-and-role__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-resources-thomo-cockfighting-commentators-style-and-role__btn-primary,
.page-resources-thomo-cockfighting-commentators-style-and-role__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;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-resources-thomo-cockfighting-commentators-style-and-role__btn-primary {
    background-color: #017439; /* Primary brand color */
    color: #FFFFFF;
    border: 2px solid #017439;
}

.page-resources-thomo-cockfighting-commentators-style-and-role__btn-primary:hover {
    background-color: #005a2b;
    border-color: #005a2b;
}

.page-resources-thomo-cockfighting-commentators-style-and-role__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-resources-thomo-cockfighting-commentators-style-and-role__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* Custom button colors for login/register */
.page-resources-thomo-cockfighting-commentators-style-and-role__cta-buttons a.page-resources-thomo-cockfighting-commentators-style-and-role__btn-primary {
    background-color: #C30808; /* Register button color */
    border-color: #C30808;
    color: #FFFF00; /* Register button text color */
}

.page-resources-thomo-cockfighting-commentators-style-and-role__cta-buttons a.page-resources-thomo-cockfighting-commentators-style-and-role__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
    color: #FFFF00;
}

.page-resources-thomo-cockfighting-commentators-style-and-role__cta-buttons a.page-resources-thomo-cockfighting-commentators-style-and-role__btn-secondary {
    background-color: #C30808; /* Login button color */
    border-color: #C30808;
    color: #FFFF00; /* Login button text color */
}

.page-resources-thomo-cockfighting-commentators-style-and-role__cta-buttons a.page-resources-thomo-cockfighting-commentators-style-and-role__btn-secondary:hover {
    background-color: #a00606;
    border-color: #a00606;
    color: #FFFF00;
}


/* Content Sections */
.page-resources-thomo-cockfighting-commentators-style-and-role__content-section {
    padding: 60px 20px;
    background-color: var(--dark-bg-1); /* Consistent dark background */
}

.page-resources-thomo-cockfighting-commentators-style-and-role__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-resources-thomo-cockfighting-commentators-style-and-role__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}