/* style/cockfighting.css */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-cockfighting .highlight {
    color: #007bff;
    font-weight: bold;
}

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

/* Hero Section */
.page-cockfighting__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-cockfighting__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:hero_cockfighting_bg]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-cockfighting__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-cockfighting__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-cockfighting__hero-image-wrapper {
    display: none; /* Hide on small screens */
}

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

/* General Section Styling */
.page-cockfighting__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-cockfighting__section:nth-of-type(even) {
    background-color: #f2f4f6;
}

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-cockfighting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Introduction Section */
.page-cockfighting__introduction .page-cockfighting__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

.page-cockfighting__introduction p {
    flex: 1 1 45%;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.page-cockfighting__introduction .page-cockfighting__image {
    flex: 1 1 45%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.page-cockfighting__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #007bff;
}

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

.page-cockfighting__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffc107;
}

.page-cockfighting__feature-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-cockfighting__feature-item p {
    color: #666;
    font-size: 1em;
}

/* How-To-Join Section */
.page-cockfighting__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-cockfighting__step-list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.page-cockfighting__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    font-size: 2em;
    font-weight: bold;
    color: #ffc107;
    background-color: #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__step-title {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-cockfighting__step-list li p {
    color: #555;
    font-size: 1.1em;
    flex-grow: 1;
}

/* Why Choose Us Section */
.page-cockfighting__why-choose .page-cockfighting__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

.page-cockfighting__why-choose p {
    flex: 1 1 45%;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.page-cockfighting__why-choose .page-cockfighting__image {
    flex: 1 1 45%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Related Pages Section */
.page-cockfighting__related-pages .page-cockfighting__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-cockfighting__detail-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #ffc107;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__detail-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-cockfighting__detail-title a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-cockfighting__detail-title a:hover {
    color: #0056b3;
    text-decoration: underline;
}

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

/* Call to Action Section */
.page-cockfighting__cta {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 8px;
    margin-top: 40px;
}

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

.page-cockfighting__cta-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__cta-subtext {
    margin-top: 25px;
    font-size: 1.1em;
    color: #c0dfff;
}

/* Buttons */
.page-cockfighting__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-cockfighting__button--primary {
    background-color: #ffc107;
    color: #333;
}

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

.page-cockfighting__button--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

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

.page-cockfighting__button--link {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 10px 20px;
    font-size: 1em;
}

.page-cockfighting__button--link:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

/* Links */
.page-cockfighting__link {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-cockfighting__link:hover {
    color: #e0a800;
    text-decoration: underline;
}

.page-cockfighting__link--register, .page-cockfighting__link--secure {
    color: #ffc107;
}

.page-cockfighting__link--register:hover, .page-cockfighting__link--secure:hover {
    color: #e0a800;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-cockfighting__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 0;
    }

    .page-cockfighting__hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .page-cockfighting__hero-image-wrapper {
        display: block;
        flex: 1;
        text-align: right;
    }

    .page-cockfighting__hero-title {
        font-size: 4em;
    }

    .page-cockfighting__introduction .page-cockfighting__content-wrapper,
    .page-cockfighting__why-choose .page-cockfighting__content-wrapper {
        flex-direction: row;
    }

    .page-cockfighting__introduction p,
    .page-cockfighting__why-choose p {
        flex: 1 1 45%;
    }

    .page-cockfighting__introduction .page-cockfighting__image--right {
        order: 2;
        margin-left: 30px;
    }

    .page-cockfighting__why-choose .page-cockfighting__image--left {
        order: 1;
        margin-right: 30px;
    }

    .page-cockfighting__step-list li {
        padding: 30px 40px;
    }
}

@media (max-width: 767px) {
    .page-cockfighting__hero-title {
        font-size: 2.5em;
    }
    .page-cockfighting__hero-description {
        font-size: 1em;
    }
    .page-cockfighting__section-title {
        font-size: 2em;
    }
    .page-cockfighting__introduction .page-cockfighting__content-wrapper,
    .page-cockfighting__why-choose .page-cockfighting__content-wrapper {
        flex-direction: column;
    }
    .page-cockfighting__introduction .page-cockfighting__image,
    .page-cockfighting__why-choose .page-cockfighting__image {
        margin: 20px auto;
    }
    .page-cockfighting__step-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-cockfighting__step-list li::before {
        margin-bottom: 15px;
    }
    .page-cockfighting__feature-item {
        padding: 20px;
    }
    .page-cockfighting__cta-title {
        font-size: 2em;
    }
    .page-cockfighting__cta-description {
        font-size: 1em;
    }
    .page-cockfighting__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}