/* style/cockfighting.css */

/* Base styles for the page content, assuming a dark body background */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text for dark body background */
    line-height: 1.6;
    background-color: transparent; /* Inherit from body or shared, ensuring text contrast */
}

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

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    box-sizing: border-box;
}

.page-cockfighting__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7); /* Dark overlay from primary color */
    z-index: 1;
}

.page-cockfighting__hero-section .page-cockfighting__container {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.page-cockfighting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for prominence */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

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

/* Buttons */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-cockfighting__btn-primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #003366; /* Primary color for text */
    border: 2px solid #FFD700;
}

.page-cockfighting__btn-primary:hover {
    background-color: #e0b800;
    border-color: #e0b800;
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary color */
    border: 2px solid #FFD700;
}

.page-cockfighting__btn-secondary:hover {
    background-color: #FFD700;
    color: #003366;
}

/* Section Titles */
.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-cockfighting__section-title--dark {
    color: #003366; /* Primary color for titles on light backgrounds */
}

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

.page-cockfighting__text-block--dark {
    color: #333333; /* Dark text for light backgrounds */
}

/* Sections */
.page-cockfighting__introduction-section,
.page-cockfighting__features-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-section {
    padding: 80px 0;
    background-color: #001a33; /* Slightly lighter dark background from primary color */
}

.page-cockfighting__types-section,
.page-cockfighting__guide-section,
.page-cockfighting__support-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background */
    color: #333333;
}

.page-cockfighting__tips-section {
    padding: 80px 0;
    background-color: #003366; /* Primary brand color */
}

/* Image Wrapper */
.page-cockfighting__image-wrapper {
    margin: 40px auto;
    text-align: center;
}

.page-cockfighting__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block; /* Ensures max-width works as expected */
    margin: 0 auto; /* Center image */
}

.page-cockfighting__image-wrapper--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 50%; /* Adjust for layout with text */
}

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

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

.page-cockfighting__card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: #ffffff;
}

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

.page-cockfighting__card--light {
    background-color: #ffffff; /* White on light background */
    color: #333333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-cockfighting__card-title--dark {
    color: #003366;
}

.page-cockfighting__card-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-cockfighting__card-text--dark {
    color: #555555;
}

/* Features */
.page-cockfighting__feature-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-cockfighting__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-cockfighting__feature-description {
    font-size: 0.95em;
    color: #e0e0e0;
}

/* Guide Steps */
.page-cockfighting__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__step-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.page-cockfighting__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #003366;
    background: #FFD700;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.page-cockfighting__step-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-cockfighting__step-description {
    font-size: 1em;
    color: #555555;
}

.page-cockfighting__step-description a {
    color: #003366;
    text-decoration: underline;
}

.page-cockfighting__step-description a:hover {
    color: #FFD700;
}

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

/* Tips List */
.page-cockfighting__list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-cockfighting__list-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-cockfighting__list-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-cockfighting__list-description {
    font-size: 0.95em;
    color: #e0e0e0;
}

/* Promotions */
.page-cockfighting__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__promotion-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-cockfighting__promotion-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__promotion-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-cockfighting__promotion-description {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom */
}

/* Support Channels */
.page-cockfighting__support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__support-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.page-cockfighting__support-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-cockfighting__support-title--dark {
    color: #003366;
}

.page-cockfighting__support-description {
    font-size: 1em;
    color: #555555;
}

/* FAQ Section */
.page-cockfighting__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}