/* style/cockfighting.css */

/* Base Styles */
.page-cockfighting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
}

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

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    border-radius: 2px;
}

.page-cockfighting__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-cockfighting__dark-bg {
    background-color: #000000; /* Assuming --black-color is black */
    color: #ffffff;
}

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

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
}

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

.page-cockfighting__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.page-cockfighting__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

/* Buttons */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    white-space: nowrap;
}

.page-cockfighting__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-cockfighting__btn-primary:hover {
    background-color: #1e87b7;
    border-color: #1e87b7;
}

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

.page-cockfighting__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
}

.page-cockfighting__cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-cockfighting__cta-buttons--center {
    justify-content: center;
}

/* About Section */
.page-cockfighting__about-section {
    padding: 80px 0;
}

.page-cockfighting__about-section .page-cockfighting__section-title {
    color: #333333;
}

.page-cockfighting__image-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-cockfighting__content-image {
    width: calc(50% - 10px);
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Types Section */
.page-cockfighting__types-section {
    padding: 80px 0;
}

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

.page-cockfighting__card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: #ffffff;
}

.page-cockfighting__card:hover {
    transform: translateY(-10px);
    background-color: #26A9E0;
}

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

.page-cockfighting__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-cockfighting__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

/* Betting Guide Section */
.page-cockfighting__betting-guide {
    padding: 80px 0;
}

.page-cockfighting__betting-guide .page-cockfighting__section-title {
    color: #333333;
}

.page-cockfighting__subtitle {
    font-size: 1.8em;
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-cockfighting__list,
.page-cockfighting__numbered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333333;
}

.page-cockfighting__numbered-list {
    list-style-type: decimal;
}

.page-cockfighting__list li,
.page-cockfighting__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-cockfighting__list li a,
.page-cockfighting__numbered-list li a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting__list li a:hover,
.page-cockfighting__numbered-list li a:hover {
    text-decoration: underline;
}

/* Advantages Section */
.page-cockfighting__advantages-section {
    padding: 80px 0;
}

.page-cockfighting__advantages-section .page-cockfighting__card {
    background-color: #FFFFFF;
    color: #333333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.page-cockfighting__advantages-section .page-cockfighting__card:hover {
    background-color: #f5f5f5;
    transform: translateY(-5px);
}

.page-cockfighting__advantages-section .page-cockfighting__card-title {
    color: #26A9E0;
}

.page-cockfighting__advantages-section .page-cockfighting__card-text {
    color: #555555;
}

/* Strategy Section */
.page-cockfighting__strategy-section {
    padding: 80px 0;
}

.page-cockfighting__strategy-section .page-cockfighting__section-title {
    color: #333333;
}

.page-cockfighting__list--strategy li {
    color: #333333;
    font-size: 1.1em;
    line-height: 1.7;
}

/* FAQ Section */
.page-cockfighting__faq-section {
    padding: 80px 0;
}

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

.page-cockfighting__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #26A9E0;
    color: #FFFFFF;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
}

.page-cockfighting__faq-question:hover {
    background-color: #1e87b7;
}

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

.page-cockfighting__faq-item.active .page-cockfighting__faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

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

.page-cockfighting__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-cockfighting__faq-answer p {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-cockfighting__faq-answer a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting__faq-answer a:hover {
    text-decoration: underline;
}

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

.page-cockfighting__video-section .page-cockfighting__text-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

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

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

/* Final CTA Section */
.page-cockfighting__cta-final {
    padding: 80px 0;
    text-align: center;
}

.page-cockfighting__cta-final .page-cockfighting__section-title {
    color: #333333;
}

.page-cockfighting__cta-final .page-cockfighting__text-block {
    color: #555555;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-cockfighting__cta-final .page-cockfighting__text-block a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting__cta-final .page-cockfighting__text-block a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting__hero-title {
        font-size: 3em;
    }
    .page-cockfighting__hero-description {
        font-size: 1.2em;
    }
    .page-cockfighting__section-title {
        font-size: 2em;
    }
    .page-cockfighting__content-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-cockfighting {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-cockfighting__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-cockfighting__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting__hero-description {
        font-size: 1.1em;
    }
    .page-cockfighting__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-cockfighting__grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting__content-image {
        width: 100% !important;
        height: auto !important;
    }
    .page-cockfighting__image-row {
        flex-direction: column;
    }
    .page-cockfighting__card {
        padding: 20px;
    }
    .page-cockfighting__faq-question,
    .page-cockfighting__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__video-section,
    .page-cockfighting__video-container,
    .page-cockfighting__video-wrapper,
    .page-cockfighting__about-section .page-cockfighting__container,
    .page-cockfighting__types-section .page-cockfighting__container,
    .page-cockfighting__betting-guide .page-cockfighting__container,
    .page-cockfighting__advantages-section .page-cockfighting__container,
    .page-cockfighting__strategy-section .page-cockfighting__container,
    .page-cockfighting__faq-section .page-cockfighting__container,
    .page-cockfighting__cta-final .page-cockfighting__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-cockfighting video,
    .page-cockfighting__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-cockfighting__video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding-bottom: 56.25% !important;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting__hero-description {
        font-size: 1em;
    }
    .page-cockfighting__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting__subtitle {
        font-size: 1.5em;
    }
    .page-cockfighting__card-title {
        font-size: 1.5em;
    }
}

/* Ensure images do not use filter */
.page-cockfighting img {
    filter: none !important;
}