/* style/cockfighting.css */

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

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff; /* White text on dark background */
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

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

.page-cockfighting__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 2;
}

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

.page-cockfighting__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

/* General Section Styles */
.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #1A2B3C;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-cockfighting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
}

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

/* Intro Section */
.page-cockfighting__intro-section {
    padding: 80px 0;
    background-color: #ffffff; /* Light background */
}

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

.page-cockfighting__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-cockfighting__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-cockfighting__feature-title {
    font-size: 1.5em;
    color: #1A2B3C;
    margin-bottom: 10px;
}

.page-cockfighting__feature-text {
    color: #666666;
}

/* History Section */
.page-cockfighting__history-section {
    padding: 80px 0;
    background-color: #1A2B3C; /* Dark background */
    color: #ffffff; /* White text */
}

.page-cockfighting__history-section .page-cockfighting__section-title {
    color: #ffffff;
}

.page-cockfighting__history-section .page-cockfighting__section-title::after {
    background-color: #FFD700;
}

.page-cockfighting__history-section .page-cockfighting__section-description {
    color: #f0f0f0;
}

.page-cockfighting__content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-cockfighting__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-cockfighting__content-text {
    flex: 1;
}

.page-cockfighting__content-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-cockfighting__content-image {
    flex: 1;
    text-align: center;
}

.page-cockfighting__image-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Rules Section */
.page-cockfighting__rules-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Light background */
}

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

.page-cockfighting__game-type-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-cockfighting__game-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-cockfighting__card-title {
    font-size: 1.4em;
    color: #1A2B3C;
    margin-bottom: 10px;
}

.page-cockfighting__card-text {
    color: #666666;
    font-size: 0.95em;
}

.page-cockfighting__text-block {
    margin-top: 60px;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 10px;
    text-align: left;
    color: #333333;
}

.page-cockfighting__text-block--centered {
    text-align: center;
}

.page-cockfighting__text-block--margin-top {
    margin-top: 40px;
}

/* How to Join Section */
.page-cockfighting__how-to-join-section {
    padding: 80px 0;
    background-color: #1A2B3C; /* Dark background */
    color: #ffffff;
}

.page-cockfighting__how-to-join-section .page-cockfighting__section-title {
    color: #ffffff;
}

.page-cockfighting__how-to-join-section .page-cockfighting__section-title::after {
    background-color: #FFD700;
}

.page-cockfighting__how-to-join-section .page-cockfighting__section-description {
    color: #f0f0f0;
}

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

.page-cockfighting__step-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-cockfighting__step-number {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #1A2B3C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.page-cockfighting__step-text {
    color: #f0f0f0;
    margin-bottom: 20px;
    flex-grow: 1; /* Ensure text takes up available space */
}

/* Benefits Section */
.page-cockfighting__benefits-section {
    padding: 80px 0;
    background-color: #ffffff; /* Light background */
}

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

.page-cockfighting__benefit-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-cockfighting__benefit-item:hover {
    transform: translateY(-8px);
}

.page-cockfighting__benefit-icon {
    width: 100px; /* Larger icons */
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-cockfighting__benefit-title {
    font-size: 1.5em;
    color: #1A2B3C;
    margin-bottom: 10px;
}

.page-cockfighting__benefit-text {
    color: #666666;
    flex-grow: 1;
    margin-bottom: 15px;
}

/* Tips Section */
.page-cockfighting__tips-section {
    padding: 80px 0;
    background-color: #1A2B3C; /* Dark background */
    color: #ffffff;
}

.page-cockfighting__tips-section .page-cockfighting__section-title {
    color: #ffffff;
}

.page-cockfighting__tips-section .page-cockfighting__section-title::after {
    background-color: #FFD700;
}

.page-cockfighting__tips-section .page-cockfighting__section-description {
    color: #f0f0f0;
}

.page-cockfighting__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-cockfighting__tip-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #f0f0f0;
    font-size: 1.05em;
}

.page-cockfighting__tip-item strong {
    color: #FFD700;
}

/* FAQ Section */
.page-cockfighting__faq-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Light background */
}

.page-cockfighting__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-cockfighting__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #f0f0f0;
    color: #1A2B3C;
    font-weight: bold;
    font-size: 1.15em;
    transition: background-color 0.3s ease;
}

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

.page-cockfighting__faq-heading {
    margin: 0;
    color: #1A2B3C;
}

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

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

.page-cockfighting__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    color: #555555;
}

.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: 0;
}
}
}
}
}
}
}
}