/* style/cockfighting.css */

/* Base styles for the page content, ensuring dark text on light body background */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background #f4f4f4 */
    background-color: transparent; /* Inherit from body or shared.css */
}

/* Container for consistent spacing */
.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-cockfighting__hero-section {
    background: linear-gradient(135deg, #1A237E, #3b429e); /* Primary color with a slight gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 1;
}

.page-cockfighting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Auxiliary color for highlight */
    line-height: 1.2;
}

.page-cockfighting__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

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

.page-cockfighting__hero-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-cockfighting__hero-btn--primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #1A237E; /* Primary color for text */
    border: 2px solid #FFD700;
}

.page-cockfighting__hero-btn--primary:hover {
    background-color: #e5c100;
    border-color: #e5c100;
    transform: translateY(-3px);
}

.page-cockfighting__hero-btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-cockfighting__hero-btn--secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-3px);
}

/* Section titles */
.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Primary color */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Auxiliary color */
    border-radius: 2px;
}

.page-cockfighting__section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
}

/* Content Grid */
.page-cockfighting__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.page-cockfighting__content-grid--reverse {
    grid-template-columns: 1fr 1fr; /* Explicitly set for desktop */
}

.page-cockfighting__image-wrapper {
    text-align: center;
}

.page-cockfighting__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__text-content {
    font-size: 1.1em;
    color: #444444;
}

.page-cockfighting__text-content p {
    margin-bottom: 15px;
}

/* Introduction Section */
.page-cockfighting__introduction {
    padding: 80px 0;
    background-color: #fcfcfc;
}

/* Why Choose Us Section */
.page-cockfighting__why-choose-us {
    padding: 80px 0;
    background-color: #f0f2f5;
}

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

.page-cockfighting__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__feature-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__feature-description {
    color: #666666;
}

/* How To Play Section */
.page-cockfighting__how-to-play {
    padding: 80px 0;
    background-color: #fcfcfc;
}

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

.page-cockfighting__step-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-cockfighting__step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1A237E;
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #FFD700;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-cockfighting__step-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__step-description {
    color: #666666;
    margin-bottom: 25px;
}

.page-cockfighting__step-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-cockfighting__step-btn:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

/* Tips & Strategies Section */
.page-cockfighting__tips-strategies {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-cockfighting__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-cockfighting__strategy-list li {
    background-color: #ffffff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #1A237E;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #444444;
    transition: transform 0.2s ease;
}

.page-cockfighting__strategy-list li:hover {
    transform: translateX(5px);
}

.page-cockfighting__strategy-list li strong {
    color: #1A237E;
}

/* Live Experience Section */
.page-cockfighting__live-experience {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.page-cockfighting__live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-cockfighting__live-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-cockfighting__live-item-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting__live-item-description {
    color: #666666;
}

.page-cockfighting__image-wrapper--full-width {
    margin-top: 40px;
    margin-bottom: 60px;
}

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

.page-cockfighting__cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-cockfighting__cta-btn--primary {
    background-color: #1A237E;
    color: #FFD700;
    border: 2px solid #1A237E;
}

.page-cockfighting__cta-btn--primary:hover {
    background-color: #FFD700;
    color: #1A237E;
    border-color: #FFD700;
    transform: translateY(-3px);
}

.page-cockfighting__cta-btn--secondary {
    background-color: transparent;
    color: #1A237E;
    border: 2px solid #1A237E;
}

.page-cockfighting__cta-btn--secondary:hover {
    background-color: #1A237E;
    color: #FFD700;
    transform: translateY(-3px);
}

/* FAQ Section */
.page-cockfighting__faq-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-cockfighting__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting__faq-item {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.page-cockfighting__faq-question {
    font-size: 1.3em;
    color: #1A237E;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
}

.page-cockfighting__faq-answer {
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Related Links Section */
.page-cockfighting__related-links {
    padding: 80px 0;
    background-color: #fcfcfc;
}

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

.page-cockfighting__link-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    text-decoration: none;
    color: #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-cockfighting__link-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting__link-description {
    color: #666666;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-cockfighting__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting__hero-description {
        font-size: 1.1em;
    }
    .page-cockfighting__content-grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting__content-grid--reverse {
        grid-template-columns: 1fr; 
    }
    .page-cockfighting__content-grid .page-cockfighting__image-wrapper:first-child {
        order: 2;
    }
    .page-cockfighting__content-grid--reverse .page-cockfighting__image-wrapper:first-child {
        order: 1; /* Keep image first for reverse layout on mobile */
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 80px 0 60px;
    }
    .page-cockfighting__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting__hero-description {
        font-size: 1em;
    }
    .page-cockfighting__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__section-title {
        font-size: 2em;
    }
    .page-cockfighting__features-grid,
    .page-cockfighting__steps-grid,
    .page-cockfighting__live-features,
    .page-cockfighting__links-grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-cockfighting__section-title {
        font-size: 1.8em;
    }
    .page-cockfighting__feature-title,
    .page-cockfighting__step-title,
    .page-cockfighting__live-item-title,
    .page-cockfighting__link-title,
    .page-cockfighting__faq-question {
        font-size: 1.2em;
    }
}