/* style/cockfighting.css */

/* Custom Colors */
:root {
    --page-cockfighting-bg-color: #08160F;
    --page-cockfighting-card-bg: #11271B;
    --page-cockfighting-text-main: #F2FFF6;
    --page-cockfighting-text-secondary: #A7D9B8;
    --page-cockfighting-border: #2E7A4E;
    --page-cockfighting-glow: #57E38D;
    --page-cockfighting-gold: #F2C14E;
    --page-cockfighting-divider: #1E3A2A;
    --page-cockfighting-deep-green: #0A4B2C;
    --page-cockfighting-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --primary-color: #11A84E;
    --secondary-color: #22C768;
}

.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: var(--page-cockfighting-text-main);
    background-color: var(--page-cockfighting-bg-color);
    line-height: 1.6;
}

/* Sections */
.page-cockfighting__section {
    padding: 60px 0;
    background-color: var(--page-cockfighting-bg-color);
}

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

.page-cockfighting__dark-bg {
    background-color: var(--page-cockfighting-bg-color);
    color: var(--page-cockfighting-text-main);
}

.page-cockfighting__light-bg {
    background-color: var(--page-cockfighting-text-main);
    color: #333333; /* Dark text on light background for contrast */
}

/* Typography */
.page-cockfighting__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--page-cockfighting-gold);
    text-align: center;
    margin-bottom: 20px;
}

.page-cockfighting__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--page-cockfighting-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-cockfighting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--page-cockfighting-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-cockfighting__sub-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-cockfighting__feature-heading, .page-cockfighting__step-title, .page-cockfighting__image-title, .page-cockfighting__promotion-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--page-cockfighting-text-main);
    margin-bottom: 10px;
}

.page-cockfighting__light-bg .page-cockfighting__feature-heading, .page-cockfighting__light-bg .page-cockfighting__step-title, .page-cockfighting__light-bg .page-cockfighting__image-title, .page-cockfighting__light-bg .page-cockfighting__promotion-title {
    color: #333333;
}

.page-cockfighting__description, .page-cockfighting__text-block, .page-cockfighting__feature-item p, .page-cockfighting__step-item p, .page-cockfighting__image-description, .page-cockfishing__promotion-description, .page-cockfighting__faq-answer p, .page-cockfighting__cta-description {
    font-size: 1rem;
    color: var(--page-cockfighting-text-secondary);
    margin-bottom: 15px;
}

.page-cockfighting__light-bg .page-cockfighting__description, .page-cockfighting__light-bg .page-cockfighting__text-block, .page-cockfighting__light-bg .page-cockfighting__feature-item p, .page-cockfighting__light-bg .page-cockfighting__step-item p, .page-cockfighting__light-bg .page-cockfighting__image-description, .page-cockfighting__light-bg .page-cockfishing__promotion-description, .page-cockfighting__light-bg .page-cockfighting__faq-answer p, .page-cockfighting__light-bg .page-cockfighting__cta-description {
    color: #555555;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.page-cockfighting__btn-primary {
    background: var(--page-cockfighting-button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-cockfighting__btn-secondary {
    background: transparent;
    color: var(--page-cockfighting-gold);
    border: 2px solid var(--page-cockfighting-gold);
}

.page-cockfighting__btn-secondary:hover {
    background: var(--page-cockfighting-gold);
    color: var(--page-cockfighting-bg-color);
    transform: translateY(-2px);
}

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* body handles padding-top from header */
    overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Adjust as needed */
    margin-bottom: 40px;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-cockfighting__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

/* Feature List */
.page-cockfighting__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-cockfighting__feature-item {
    background-color: var(--page-cockfighting-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-cockfighting-border);
    transition: transform 0.3s ease;
}

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

/* Image Grid (Cockfighting Types) */
.page-cockfighting__image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__image-card {
    background-color: #ffffff; /* Light background for contrast */
    color: #333333; /* Dark text */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-cockfighting__image-card:hover {
    transform: translateY(-5px);
}

.page-cockfighting__image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-cockfighting__image-card .page-cockfighting__image-title {
    color: var(--primary-color);
    padding: 15px 15px 5px 15px;
}

.page-cockfighting__image-card .page-cockfighting__image-description {
    color: #555555;
    padding: 0 15px 20px 15px;
    font-size: 0.95rem;
}

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

.page-cockfighting__step-item {
    background-color: var(--page-cockfighting-card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-cockfighting-border);
}

.page-cockfighting__step-icon {
    width: 60px;
    height: 60px;
    background: var(--page-cockfighting-button-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px var(--page-cockfighting-glow);
}

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

.page-cockfighting__promotion-card {
    background-color: #ffffff; /* Light background for contrast */
    color: #333333; /* Dark text */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-cockfighting__promotion-card:hover {
    transform: translateY(-5px);
}

.page-cockfighting__promotion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-cockfighting__promotion-card .page-cockfighting__promotion-title {
    color: var(--primary-color);
    padding: 15px 15px 5px 15px;
}

.page-cockfighting__promotion-card .page-cockfishing__promotion-description {
    color: #555555;
    padding: 0 15px 20px 15px;
    font-size: 0.95rem;
}

/* Call to Action */
.page-cockfighting__call-to-action {
    padding: 80px 0;
    text-align: center;
    background-color: var(--page-cockfighting-deep-green);
    border-top: 5px solid var(--page-cockfighting-gold);
    border-bottom: 5px solid var(--page-cockfighting-gold);
}

.page-cockfighting__cta-title {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    color: var(--page-cockfighting-gold);
    margin-bottom: 20px;
}

/* FAQ Section */
.page-cockfighting__faq-list {
    margin-top: 40px;
}

.page-cockfighting__faq-item {
    background-color: #ffffff; /* Light background for contrast */
    color: #333333; /* Dark text */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.page-cockfighting__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* Hide default marker */
    color: var(--primary-color);
}

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

.page-cockfighting__faq-question .page-cockfighting__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 10px;
    color: var(--page-cockfighting-gold);
}

.page-cockfighting__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting__hero-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-cockfighting__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .page-cockfighting__sub-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .page-cockfighting__btn-primary, .page-cockfighting__btn-secondary {
        width: 100% !important;
        max-width: 300px !important; /* Limit width for small screens */
    }

    /* Images responsive */
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Containers responsive */
    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container,
    .page-cockfighting__hero-section,
    .page-cockfighting__content-area,
    .page-cockfighting__image-grid,
    .page-cockfighting__step-by-step,
    .page-cockfighting__promotions-grid,
    .page-cockfighting__faq-list,
    .page-cockfighting__call-to-action {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__hero-section {
        padding-top: 10px !important; /* body handles --header-offset, this is for visual space */
    }
    .page-cockfighting__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0;
    }
    .page-cockfighting__image-card img, .page-cockfighting__promotion-card img {
        height: auto;
        min-height: 200px; /* Ensure minimum height for content images */
    }
    .page-cockfighting__feature-item,
    .page-cockfighting__step-item,
    .page-cockfighting__image-card,
    .page-cockfighting__promotion-card {
        padding: 20px;
    }
    .page-cockfighting__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }
    .page-cockfighting__faq-answer {
        padding: 0 15px 15px 15px;
    }
    .page-cockfighting__faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-content {
        padding: 0 10px;
    }
    .page-cockfighting__section {
        padding: 40px 0;
    }
    .page-cockfighting__content-area {
        padding: 0 10px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .page-cockfighting__description {
        font-size: 0.9rem;
    }
    .page-cockfighting__cta-title {
        font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    }
}