/* style/cockfighting.css */

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

.page-cockfighting {
    color: var(--letou1-text-main); /* Light text for dark body background */
    background-color: var(--letou1-background);
}

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

.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
    text-align: center;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    position: relative;
    line-height: 0; /* Remove extra space below image */
}

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

.page-cockfighting__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: 40px;
    padding: 0 20px;
}

.page-cockfighting__hero-title {
    font-weight: 700;
    line-height: 1.2;
    color: var(--letou1-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.6);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-cockfighting__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--letou1-text-secondary);
    margin-bottom: 30px;
}

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

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

.page-cockfighting__btn-primary {
    background: var(--letou1-button-gradient);
    color: #ffffff; /* White text for contrast */
    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(--letou1-gold);
    border: 2px solid var(--letou1-gold);
    box-shadow: 0 4px 10px rgba(242, 193, 78, 0.3);
}

.page-cockfighting__btn-secondary:hover {
    background: var(--letou1-gold);
    color: var(--letou1-background);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(242, 193, 78, 0.5);
}

.page-cockfighting__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--letou1-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(87, 227, 141, 0.3);
}

.page-cockfighting__subsection-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--letou1-text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid var(--letou1-primary-color);
    padding-left: 15px;
}

.page-cockfighting__text-block {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--letou1-text-secondary);
    margin-bottom: 20px;
}

.page-cockfighting__text-link {
    color: var(--letou1-gold);
    text-decoration: none;
    font-weight: 600;
}

.page-cockfighting__text-link:hover {
    text-decoration: underline;
    color: var(--letou1-glow);
}

.page-cockfighting__introduction-section,
.page-cockfighting__types-section,
.page-cockfighting__guide-section,
.page-cockfighting__strategy-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--letou1-divider);
}

.page-cockfighting__introduction-section:last-of-type,
.page-cockfighting__conclusion-section:last-of-type {
    border-bottom: none;
}

.page-cockfighting__feature-list,
.page-cockfighting__type-list,
.page-cockfighting__step-list,
.page-cockfighting__term-list,
.page-cockfighting__strategy-list,
.page-cockfighting__promo-list,
.page-cockfighting__faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-cockfighting__feature-item,
.page-cockfighting__type-item,
.page-cockfighting__step-item,
.page-cockfighting__term-item,
.page-cockfighting__strategy-item,
.page-cockfighting__promo-item {
    background-color: var(--letou1-card-bg);
    border: 1px solid var(--letou1-border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--letou1-text-secondary);
}

.page-cockfighting__feature-item strong,
.page-cockfighting__term-item strong {
    color: var(--letou1-text-main);
}

.page-cockfighting__image-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

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

.page-cockfighting__image-block {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

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

.page-cockfighting__promo-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

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

.page-cockfighting__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-cockfighting__faq-item {
    background-color: var(--letou1-card-bg);
    border: 1px solid var(--letou1-border);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--letou1-text-main);
    cursor: pointer;
    list-style: none; /* For details/summary */
}

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

.page-cockfighting__faq-qtext {
    flex-grow: 1;
    font-size: 1.1rem;
}

.page-cockfighting__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--letou1-gold);
    transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
    padding: 0 25px 20px;
    color: var(--letou1-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-cockfighting__faq-answer p {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-cockfighting__subsection-title {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }
    .page-cockfighting__hero-content {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding-bottom: 40px;
    }
    .page-cockfighting__hero-content {
        margin-top: 0;
    }
    .page-cockfighting__hero-title {
        font-size: 2.2rem;
    }
    .page-cockfighting__hero-description {
        font-size: 1rem;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-cockfighting__subsection-title {
        font-size: 1.2rem;
        padding-left: 10px;
    }
    .page-cockfighting__text-block {
        font-size: 0.95rem;
    }

    .page-cockfighting__introduction-section,
    .page-cockfighting__types-section,
    .page-cockfighting__guide-section,
    .page-cockfighting__strategy-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__conclusion-section {
        padding: 40px 0;
    }

    .page-cockfighting__feature-item,
    .page-cockfighting__type-item,
    .page-cockfighting__step-item,
    .page-cockfighting__term-item,
    .page-cockfighting__strategy-item,
    .page-cockfighting__promo-item {
        padding: 20px;
    }

    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-cockfighting__hero-image-wrapper,
    .page-cockfighting__image-grid,
    .page-cockfighting__image-block,
    .page-cockfighting__promo-image-wrapper,
    .page-cockfighting__container,
    .page-cockfighting__cta-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-cockfighting__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-cockfighting__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }

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

@media (max-width: 480px) {
    .page-cockfighting__hero-title {
        font-size: 1.8rem;
    }
    .page-cockfighting__section-title {
        font-size: 1.6rem;
    }
    .page-cockfighting__subsection-title {
        font-size: 1.1rem;
    }
    .page-cockfighting__hero-description {
        font-size: 0.9rem;
    }
}