/* style/cockfighting.css */
.page-cockfighting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text color for light body background */
    background-color: #FFFFFF;
}

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

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF; /* White text for dark background */
    min-height: 600px;
    padding: 120px 0 60px; /* Adjust padding-top for fixed header */
    overflow: hidden;
    background-color: #017439; /* Brand color as background */
}

.page-cockfighting__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.page-cockfighting__hero-section .page-cockfighting__container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-cockfighting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFFFFF;
}

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

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

.page-cockfighting__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* General Section Styles */
.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #017439;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-cockfighting__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-cockfighting__dark-bg .page-cockfighting__section-title,
.page-cockfighting__dark-bg .page-cockfighting__section-description,
.page-cockfighting__dark-bg .page-cockfighting__text-block {
    color: #FFFFFF;
}

.page-cockfighting__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-cockfighting__dark-bg {
    background-color: #017439;
    color: #FFFFFF;
}

.page-cockfighting__content-section,
.page-cockfighting__betting-types,
.page-cockfighting__benefits-section,
.page-cockfighting__registration-guide,
.page-cockfighting__tips-section,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
    padding: 80px 0;
}

.page-cockfighting__text-block {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-cockfighting__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 15px;
}

.page-cockfighting__dark-bg .page-cockfighting__sub-title {
    color: #FFFFFF;
}

.page-cockfighting__list {
    list-style: disc inside;
    margin-left: 20px;
    font-size: 1.05em;
}

.page-cockfighting__list li {
    margin-bottom: 10px;
}

/* Buttons */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    box-sizing: border-box;
}

.page-cockfighting__btn-primary {
    background-color: #C30808; /* Red for register/login */
    color: #FFFFFF; /* White text for contrast */
    border: 2px solid #C30808;
}

.page-cockfighting__btn-primary:hover {
    background-color: #e01010;
    transform: translateY(-2px);
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: #FFFFFF; /* White text for contrast */
    border: 2px solid #FFFFFF;
}

.page-cockfighting__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-cockfighting__video-cta .page-cockfighting__btn-primary {
    background-color: #017439;
    border-color: #017439;
}

.page-cockfighting__video-cta .page-cockfighting__btn-primary:hover {
    background-color: #005a2e;
    border-color: #005a2e;
}

.page-cockfighting__registration-cta .page-cockfighting__btn-primary {
    margin-top: 40px;
}

/* Image & Text Block */
.page-cockfighting__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-cockfighting__image-left {
    flex: 1;
    min-width: 200px; /* Minimum size requirement */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__text-content {
    flex: 1.5;
}

/* Grid Layouts */
.page-cockfighting__grid-layout,
.page-cockfighting__features-grid,
.page-cockfighting__steps-grid,
.page-cockfighting__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Cards */
.page-cockfighting__card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333; /* Dark text for light card background */
}

.page-cockfighting__dark-bg .page-cockfighting__card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__card-image {
    width: 100%;
    height: 200px; /* Fixed height for uniformity in cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-cockfighting__card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #017439;
}

.page-cockfighting__dark-bg .page-cockfighting__card-title {
    color: #FFFFFF;
}

.page-cockfighting__card-text {
    font-size: 0.95em;
    line-height: 1.6;
}

/* Feature Items */
.page-cockfighting__feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.page-cockfighting__feature-icon {
    width: 100px; /* Larger icons, not small */
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #017439;
}

/* Steps Grid */
.page-cockfighting__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-cockfighting__step-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #FFFFFF;
}