/* style/cockfighting.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #1A1A1A;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #1A1A1A;
    --bg-light-card: rgba(255, 255, 255, 0.1);
    --border-color: #e0e0e0;
}

.page-cockfighting {
    font-family: Arial, sans-serif;
    color: var(--text-light); /* Body background is dark (#0d0d0d), so use light text */
    background-color: transparent; /* Main content background will be handled by sections */
}

.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: var(--secondary-color);
    color: var(--text-light);
    overflow: hidden;
}

.page-cockfighting__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.page-cockfighting__main-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-cockfighting__hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
}

.page-cockfighting__btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-cockfighting__btn-primary:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting__section {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-cockfighting__section-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__introduction-section .page-cockfighting__section-title,
.page-cockfighting__types-section .page-cockfighting__section-title,
.page-cockfighting__promotions-section .page-cockfighting__section-title,
.page-cockfighting__cta-final-section .page-cockfighting__section-title {
    color: var(--primary-color);
}

.page-cockfighting__text-block {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__dark-bg {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

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

.page-cockfighting__feature-card,
.page-cockfighting__promotion-card {
    background: var(--bg-light-card);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    color: var(--text-light);
}

.page-cockfighting__feature-card:hover,
.page-cockfighting__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting__feature-title,
.page-cockfighting__promotion-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-cockfighting__feature-card p,
.page-cockfighting__promotion-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.page-cockfighting__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-cockfighting__list-item {
    background: var(--bg-light-card);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: var(--text-light);
}

.page-cockfighting__list-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-cockfighting__list-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.page-cockfighting__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-cockfighting__guide-item {
    background: var(--bg-light-card);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    color: var(--text-light);
}

.page-cockfighting__guide-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-cockfighting__guide-item p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-cockfighting__guide-button {
    margin-top: 15px;
}

.page-cockfighting__promotions-button {
    margin-top: 50px;
}

.page-cockfighting__commitment-section .page-cockfighting__list-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-cockfighting__commitment-section .page-cockfighting__list-title {
    font-size: 24px;
}

.page-cockfighting__cta-final-section {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 100px 20px;
}

.page-cockfighting__cta-final-section .page-cockfighting__section-title {
    color: var(--secondary-color);
    text-shadow: none;
}

.page-cockfighting__cta-final-section .page-cockfighting__text-block {
    color: var(--secondary-color);
}

.page-cockfighting__cta-final-section .page-cockfighting__btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.page-cockfighting__cta-final-section .page-cockfighting__btn-primary:hover {
    background: #000;
    color: var(--primary-color);
}

.page-cockfighting__cta-final-section .page-cockfighting__btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.page-cockfighting__cta-final-section .page-cockfighting__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-cockfighting__main-title {
        font-size: 40px;
    }
    .page-cockfighting__hero-description {
        font-size: 18px;
    }
    .page-cockfighting__section-title {
        font-size: 32px;
    }
    .page-cockfighting__text-block {
        font-size: 16px;
    }
    .page-cockfighting__feature-title,
    .page-cockfighting__promotion-title {
        font-size: 22px;
    }
    .page-cockfighting__list-title {
        font-size: 20px;
    }
    .page-cockfighting__guide-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
    }
    .page-cockfighting__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-cockfighting__hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-cockfighting__cta-button {
        width: 100% !important;
        padding: 12px 20px;
        font-size: 16px;
    }
    .page-cockfighting__section {
        padding: 60px 15px;
    }
    .page-cockfighting__container {
        padding: 0;
    }
    .page-cockfighting__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-cockfighting__text-block {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .page-cockfighting__features-grid,
    .page-cockfighting__promotions-grid {
        gap: 20px;
    }
    .page-cockfighting__feature-card,
    .page-cockfighting__promotion-card,
    .page-cockfighting__list-item,
    .page-cockfighting__guide-item {
        padding: 20px;
    }
    .page-cockfighting__feature-title,
    .page-cockfighting__promotion-title {
        font-size: 20px;
    }
    .page-cockfighting__list-title {
        font-size: 18px;
    }
    .page-cockfighting__guide-title {
        font-size: 22px;
    }
    .page-cockfighting__feature-card p,
    .page-cockfighting__promotion-card p,
    .page-cockfighting__list-item p,
    .page-cockfighting__guide-item p {
        font-size: 15px;
    }
    .page-cockfighting__content-image,
    .page-cockfighting__hero-image,
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-cockfighting__hero-section,
    .page-cockfighting__introduction-section,
    .page-cockfighting__why-choose-section,
    .page-cockfighting__types-section,
    .page-cockfighting__guide-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__commitment-section,
    .page-cockfighting__cta-final-section,
    .page-cockfighting__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-cockfighting__cta-final-section {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__main-title {
        font-size: 28px;
    }
    .page-cockfighting__hero-description {
        font-size: 15px;
    }
    .page-cockfighting__section-title {
        font-size: 24px;
    }
    .page-cockfighting__cta-buttons {
        max-width: 100%;
    }
    .page-cockfighting__cta-button {
        font-size: 15px;
        padding: 10px 15px;
    }
    .page-cockfighting__feature-title,
    .page-cockfighting__promotion-title {
        font-size: 18px;
    }
    .page-cockfighting__list-title {
        font-size: 16px;
    }
    .page-cockfighting__guide-title {
        font-size: 20px;
    }
}