/* style/cockfighting.css */

/* Base styles for the page-cockfighting content */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text on dark body background #0a0a0a */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-cockfighting__section {
    padding: 80px 0;
    text-align: center;
}

.page-cockfighting__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700; /* Gold color for titles */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-cockfighting__section-description {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section specific styles */
.page-cockfighting__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Apply header offset here if body doesn't have it */
    padding-bottom: 0;
    background-color: #0a0a0a;
}