/* style/cockfighting.css */

/* General Styling */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-cockfighting__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
}

/* Hero Section */
.page-cockfighting__hero-section {
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
    align-items: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: #08160F; /* Ensure background for section */
    overflow: hidden;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for aesthetic */
    filter: brightness(0.7); /* Slightly dim the image for background */
    min-height: 250px;
    min-width: 200px;
}

.page-cockfighting__hero-content {
    max-width: 900px;
    width: 90%;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #11271B; /* Card BG for content block */
    border-radius: 10px;
    margin-top: -80px; /* Pull content slightly over image for visual appeal, but not covering */
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #2E7A4E;
}

.page-cockfighting__main-title {
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
}

.page-cockfighting__hero-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-cockfighting__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-3px);
}

.page-cockfighting__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

/* Dark Background Sections */
.page-cockfighting__dark-bg {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

/* Image content */
.page-cockfighting__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    min-height: 200px;
}

/* Why Choose Section */
.page-cockfighting__why-choose-section {
    background-color: #11271B; /* Card BG */
    padding: 60px 0;
}

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

.page-cockfighting__feature-card {
    background-color: #08160F; /* Background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease;
}

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

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

.page-cockfighting__card-text {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
}

/* How To Section */
.page-cockfighting__how-to-section {
    padding: 60px 0;
}

.page-cockfighting__step-by-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-cockfighting__step-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__step-title {
    color: #2AD16F; /* From Button gradient start */
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__step-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
    margin-bottom: 20px;
}

/* Tips Section */
.page-cockfighting__tips-section {
    background-color: #0A4B2C; /* Deep Green */
    padding: 60px 0;
    color: #F2FFF6;
}

.page-cockfighting__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-cockfighting__list-item {
    background-color: #11271B; /* Card BG */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 5px solid #F2C14E; /* Gold */
    border-radius: 5px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__list-item strong {
    color: #F2FFF6; /* Text Main */
}

/* Promotions Section */
.page-cockfighting__promotions-section {
    padding: 60px 0;
    text-align: center;
}

/* FAQ Section */
.page-cockfighting__faq-section {
    background-color: #11271B; /* Card BG */
    padding: 60px 0;
}

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

.page-cockfighting__faq-item {
    background-color: #08160F; /* Background */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
    background-color: #1E3A2A; /* Divider */
    transition: background-color 0.3s ease;
    list-style: none; /* Remove default marker */
}

.page-cockfighting__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-cockfighting__faq-question:hover {
    background-color: #22C768; /* Auxiliary color */
}

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #F2C14E; /* Gold */
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
    content: "−";
}

.page-cockfighting__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    background-color: #08160F; /* Background */
    border-top: 1px solid #1E3A2A; /* Divider */
}

/* Conclusion Section */
.page-cockfighting__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting__section-title {
        font-size: 2em;
    }
    .page-cockfighting__hero-description {
        font-size: 1.1em;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.8em, 6vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-cockfighting__content-area {
        padding: 20px 15px;
    }

    .page-cockfighting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-cockfighting__hero-content {
        padding: 20px 15px;
        width: 95%;
        margin-top: -40px; /* Less pull-up on mobile */
    }

    .page-cockfighting__main-title {
        font-size: clamp(1.5em, 8vw, 2.5em);
        margin-bottom: 10px;
    }

    .page-cockfighting__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-cockfighting__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__cta-button--small {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    /* Images responsiveness */
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-cockfighting__hero-image {
        min-height: 250px;
    }

    /* All containers with images */
    .page-cockfighting__introduction-section,
    .page-cockfighting__how-to-section,
    .page-cockfighting__tips-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__conclusion-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__content-area,
    .page-cockfighting__feature-grid,
    .page-cockfighting__step-by-step,
    .page-cockfighting__tips-list,
    .page-cockfighting__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Grid layout for features and steps */
    .page-cockfighting__feature-grid,
    .page-cockfighting__step-by-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-cockfighting__hero-section {
        padding-top: 10px !important; /* body already handles offset */
        padding-bottom: 40px;
    }

    .page-cockfighting__feature-card,
    .page-cockfighting__step-item,
    .page-cockfighting__list-item {
        padding: 20px;
    }

    .page-cockfighting__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-cockfighting__faq-answer {
        padding: 15px 20px;
    }

    /* Button containers for multiple buttons */
    .page-cockfighting__cta-buttons,
    .page-cockfighting__button-group,
    .page-cockfighting__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-content {
        margin-top: -20px;
        width: 100%;
        border-radius: 0;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.2em, 9vw, 2em);
    }
    .page-cockfighting__hero-description {
        font-size: 0.9em;
    }
    .page-cockfighting__cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-cockfighting__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting__text-block {
        font-size: 0.95em;
    }
}