/* style/cockfighting.css */

.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark body background */
    line-height: 1.6;
    background-color: transparent; /* Body background handled by shared.css */
}

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

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

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

.page-cockfighting__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-cockfighting p {
    color: #f0f0f0;
}

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

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

.page-cockfighting__btn-primary,
.page-cockfighting__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;
    text-align: center;
    box-sizing: border-box;
}

.page-cockfighting__btn-primary {
    background-color: #FFD700;
    color: #000080; /* Navy text on gold button */
    border: 2px solid #FFD700;
}

.page-cockfighting__btn-primary:hover {
    background-color: #e6c200;
    color: #000066;
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-cockfighting__btn-secondary:hover {
    background-color: #FFD700;
    color: #000080;
}

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow: hidden;
    background-color: #000080; /* Auxiliary color as background */
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    color: #ffffff;
}

.page-cockfighting__hero-title {
    font-size: 4em;
    color: #FFD700; /* Gold for hero title */
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-cockfighting__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    overflow: hidden;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Darken image for better text contrast */
}

/* Video Section */
.page-cockfighting__video-section {
    padding: 80px 0;
    background-color: #1a1a2e;
    text-align: center;
}

.page-cockfighting__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    background-color: #000;
    border-radius: 10px;
}

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

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

/* Content Areas */
.page-cockfighting__content-area {
    padding: 80px 0;
    background-color: #1a1a2e; /* Ensure consistent dark background */
}

.page-cockfighting__introduction p,
.page-cockfighting__rules-techniques p,
.page-cockfighting__advantages p,
.page-cockfighting__registration-guide p,
.page-cockfighting__promotions p,
.page-cockfighting__conclusion p {
    color: #f0f0f0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-cockfighting__types-section .page-cockfighting__container {
    background-color: rgba(255, 215, 0, 0.1); /* Semi-transparent gold background for this section */
    padding: 40px;
    border-radius: 10px;
}

.page-cockfighting__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__card {
    background-color: rgba(0, 0, 128, 0.4); /* Semi-transparent navy */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.page-cockfighting__card:hover {
    transform: translateY(-10px);
}

.page-cockfighting__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-cockfighting__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__card-description {
    font-size: 0.95em;
    color: #f0f0f0;
    flex-grow: 1;
}

.page-cockfighting__two-column-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-cockfighting__column {
    background-color: rgba(255, 215, 0, 0.1); /* Semi-transparent gold */
    padding: 30px;
    border-radius: 10px;
    color: #ffffff;
}

.page-cockfighting__column .page-cockfighting__list {
    margin-left: 0;
    list-style-position: inside;
}

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

.page-cockfighting__advantages .page-cockfighting__container {
    background-color: rgba(0, 0, 128, 0.1); /* Semi-transparent navy background for this section */
    padding: 40px;
    border-radius: 10px;
}

.page-cockfighting__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__feature-item {
    background-color: rgba(255, 255, 255, 0.1); /* Light semi-transparent */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

.page-cockfighting__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__step-item {
    background-color: rgba(0, 0, 128, 0.4); /* Semi-transparent navy */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    color: #ffffff;
}

.page-cockfighting__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #000080;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin: -55px auto 20px auto;
    border: 3px solid #000080;
}

.page-cockfighting__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__cta-section {
    text-align: center;
    margin-top: 60px;
}

.page-cockfighting__cta-section .page-cockfighting__btn-primary {
    margin-bottom: 30px; /* Space between button and image */
}

.page-cockfighting__promotions .page-cockfighting__container {
    background-color: rgba(255, 215, 0, 0.1); /* Semi-transparent gold background for this section */
    padding: 40px;
    border-radius: 10px;
}

.page-cockfighting__promotion-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-cockfighting__promotion-list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    color: #f0f0f0;
    text-align: left;
    border-left: 5px solid #FFD700;
}

.page-cockfighting__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* FAQ Section */
.page-cockfighting__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    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;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: #FFD700;
    background-color: rgba(0, 0, 128, 0.6);
    transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
    background-color: rgba(0, 0, 128, 0.8);
}

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
    transform: rotate(45deg);
}