/* style/cockfighting.css */

/* Base styles for the cockfighting page content */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for the page, assuming dark body background from shared.css */
    background-color: transparent; /* Main content area will use specific section backgrounds */
}

/* Color Contrast Styling */
.page-cockfighting__dark-bg {
    background-color: #26A9E0; /* Primary brand color as dark background */
    color: #ffffff;
}

.page-cockfighting__light-bg {
    background-color: #ffffff; /* Auxiliary color as light background */
    color: #333333; /* Dark text for light background */
}

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    box-sizing: border-box;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-cockfighting__hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.page-cockfighting__hero-text-content {
    max-width: 800px;
    text-align: center;
}

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

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

/* Video Wrapper for Hero */
.page-cockfighting__hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px; /* Max width for the video */
    background-color: rgba(0, 0, 0, 0.5); /* Placeholder background for video */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
}

.page-cockfighting__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Content Area */
.page-cockfighting__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-cockfighting__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-cockfighting__sub-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-cockfighting__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-cockfighting__highlight {
    font-weight: bold;
    color: #26A9E0; /* Brand color for highlights */
}

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

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

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

/* Buttons */
.page-cockfighting__btn-primary {
    display: inline-block;
    background-color: #EA7C07; /* Login color for primary CTA */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    margin-top: 20px;
}

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

.page-cockfighting__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #26A9E0; /* Primary brand color for secondary CTA text */
    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, transform 0.2s ease;
    border: 2px solid #26A9E0;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    margin-top: 20px;
    margin-left: 15px;
}

.page-cockfighting__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-cockfighting__cta-button {
    margin-top: 40px;
    display: block; /* Make it a block element to center easily */
    margin-left: auto;
    margin-right: auto;
    width: fit-content; /* Adjust width to content */
    padding-left: 40px;
    padding-right: 40px;
}

.page-cockfighting__text-link {
    color: #EA7C07; /* Login color for text links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-cockfighting__text-link:hover {
    color: #d16b05;
}

/* FAQ Section */
.page-cockfighting__faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-cockfighting__faq-list {
    margin-top: 30px;
}

.page-cockfighting__faq-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for items on dark background */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly darker for question background */
    user-select: none;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-cockfighting__faq-question::-webkit-details-marker {
    display: none;
}

.page-cockfighting__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05em;
    line-height: 1.7;
    color: #f0f0f0;
}

/* Conclusion Section */
.page-cockfighting__conclusion-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting__hero-description {
        font-size: 1.1em;
    }
    .page-cockfighting__section-title {
        font-size: 2.2em;
    }
    .page-cockfighting__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
    }
    .page-cockfighting__hero-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-cockfighting__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting__hero-description {
        font-size: 1em;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        font-size: 1em;
        padding: 12px 25px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0;
    }
    .page-cockfighting__btn-secondary {
        margin-top: 15px;
    }
    .page-cockfighting__cta-button {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}