/* style/cockfighting.css */

/* Base styles for the page content */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: #f8f8f8; /* Body background color from shared.css */
}

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

/* Hero Section */
.page-cockfighting__hero-section {
    background: linear-gradient(135deg, #1A202C, #3A3F47); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff; /* Light text for dark background */
}

.page-cockfighting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
}

.page-cockfighting__brand-highlight {
    color: #FFD700;
}

.page-cockfighting__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-cockfighting__brand-text {
    font-weight: bold;
    color: #FFD700;
}

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

.page-cockfighting__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text */
    border: none;
}

.page-cockfighting__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-cockfighting__button--secondary {
    background-color: #1A202C; /* Dark button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-cockfighting__button--secondary:hover {
    background-color: #3A3F47;
    transform: translateY(-3px);
}

.page-cockfighting__button--small {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

.page-cockfighting__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

.page-cockfighting__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* General Section Styles */
.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__guide-section,
.page-cockfighting__types-section,
.page-cockfighting__tips-section,
.page-cockfighting__safety-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-cockfighting__introduction-section {
    background-color: #ffffff;
}

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #1A202C;
    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: #FFD700;
    border-radius: 2px;
}

.page-cockfighting__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.page-cockfighting__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

.page-cockfighting__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__feature-icon {
    width: 250px; /* Enforcing minimum size for images */
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-cockfighting__feature-description {
    font-size: 1em;
    color: #555555;
}

/* Guide Section */
.page-cockfighting__guide-section {
    background-color: #f0f0f0;
}

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

.page-cockfighting__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-cockfighting__step-title {
    font-size: 1.4em;
    color: #1A202C;
    margin-bottom: 15px;
}

.page-cockfighting__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

.page-cockfighting__guide-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 40px auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Types Section */
.page-cockfighting__type-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-cockfighting__type-item {
    background-color: #ffffff;
    border-left: 5px solid #FFD700;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.page-cockfighting__type-heading {
    font-size: 1.6em;
    color: #1A202C;
    margin-bottom: 10px;
}

.page-cockfighting__type-description {
    font-size: 1.1em;
    color: #555555;
}

/* Tips Section */
.page-cockfighting__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-cockfighting__tip-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-cockfighting__tip-title {
    font-size: 1.4em;
    color: #1A202C;
    margin-bottom: 15px;
}

.page-cockfighting__tip-description {
    font-size: 1em;
    color: #555555;
}

.page-cockfighting__tips-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 40px auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Safety Section */
.page-cockfighting__safety-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-cockfighting__safety-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.page-cockfighting__safety-heading {
    font-size: 1.5em;
    color: #1A202C;
    margin-bottom: 10px;
}

.page-cockfighting__safety-description {
    font-size: 1em;
    color: #555555;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
    background-color: #f0f0f0;
}

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

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

.page-cockfighting__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__promo-image {
    width: 100%;
    max-width: 400px; /* Example size, ensuring >200px */
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-cockfighting__promo-title {
    font-size: 1.6em;
    color: #1A202C;
    margin-bottom: 15px;
}

.page-cockfighting__promo-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
}

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

.page-cockfighting__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
    font-size: 1.2em;
    color: #1A202C;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-cockfighting__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-cockfighting__faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 10px;
}

.page-cockfighting__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}


/* CTA Section */
.page-cockfighting__cta-section {
    background: #1A202C; /* Dark background */
    color: #ffffff; /* Light text */
    text-align: center;
    padding: 80px 0;
}

.page-cockfighting__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-cockfighting__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-cockfighting__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting__hero-description {
        font-size: 1.1em;
    }
    .page-cockfighting__section-title {
        font-size: 2em;
    }
    .page-cockfighting__features-grid,
    .page-cockfighting__step-by-step,
    .page-cockfighting__tips-grid,
    .page-cockfighting__safety-list,
    .page-cockfighting__promo-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-cockfighting__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 60px 0;
    }
    .page-cockfighting__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting__hero-description {
        font-size: 1em;
    }
    .page-cockfighting__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-cockfighting__section-title {
        font-size: 1.8em;
    }
    .page-cockfighting__introduction-section,
    .page-cockfighting__features-section,
    .page-cockfighting__guide-section,
    .page-cockfighting__types-section,
    .page-cockfighting__tips-section,
    .page-cockfighting__safety-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__cta-section {
        padding: 40px 0;
    }
    .page-cockfighting__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting__hero-description {
        font-size: 0.9em;
    }
    .page-cockfighting__button {
        width: 90%;
    }
    .page-cockfighting__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting__feature-title,
    .page-cockfighting__step-title,
    .page-cockfighting__type-heading,
    .page-cockfighting__tip-title,
    .page-cockfighting__safety-heading,
    .page-cockfighting__promo-title,
    .page-cockfighting__faq-question {
        font-size: 1.2em;
    }
    .page-cockfighting__cta-title {
        font-size: 1.5em;
    }
    .page-cockfighting__feature-icon {
        width: 200px; /* Minimum size */
        height: 150px;
    }
    .page-cockfighting__promo-image {
        max-width: 300px; /* Example size, ensuring >200px */
        height: 200px;
    }
}

/* Ensure no image filters are applied */
.page-cockfighting img {
    filter: none;
}