/* style/cockfighting.css */

/* Base styles for the page content */
.page-cockfighting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #f5f5f5; /* Light background for the main content area */
}

/* Ensure main content area has padding-top to clear fixed header */
.page-cockfighting__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px);
    background-color: #017439; /* Brand color for hero */
    color: #ffffff;
    text-align: center;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-cockfighting__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-cockfighting__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-cockfighting__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-cockfighting__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 30px;
}

.page-cockfighting__hero-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Video Section */
.page-cockfighting__video-section {
    background-color: #ffffff;
    color: #333333;
    padding: 60px 20px;
    text-align: center;
}

.page-cockfighting__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.page-cockfighting__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    max-width: 100%;
}

.page-cockfighting__video-cta {
    margin-top: 30px;
}

/* General Content Sections */
.page-cockfighting__content-area,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
    padding: 60px 20px;
}

.page-cockfighting__content-area.page-cockfighting__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-cockfighting__content-area.page-cockfighting__dark-bg,
.page-cockfighting__faq-section.page-cockfighting__dark-bg {
    background-color: #017439; /* Brand dark green */
    color: #ffffff;
}

.page-cockfighting__conclusion-section.page-cockfighting__light-bg {
    background-color: #f5f5f5;
    color: #333333;
    text-align: center;
}

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

.page-cockfighting__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: inherit;
}

.page-cockfighting__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: inherit;
}

.page-cockfighting__subsection-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: inherit;
}

.page-cockfighting__text-block {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: inherit;
}

.page-cockfighting__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: inherit;
}

.page-cockfighting__list-item {
    margin-bottom: 10px;
    color: inherit;
}

.page-cockfighting__image-container {
    text-align: center;
    margin: 40px 0;
}

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