/* style/cockfighting-betting-types.css */

/* Biến CSS cho màu sắc */
:root {
    --page-cockfighting-betting-types-primary-color: #0A2342;
    --page-cockfighting-betting-types-secondary-color: #FFD700;
    --page-cockfighting-betting-types-text-light: #F0F2F5;
    --page-cockfighting-betting-types-text-dark: #333333;
    --page-cockfighting-betting-types-background-light: #FFFFFF;
    --page-cockfighting-betting-types-background-dark: #1A3A5F;
    --page-cockfighting-betting-types-accent-gold-dark: #B39700; /* Darker version of FFD700 for text on light gold */
    --page-cockfighting-betting-types-contrast-blue-light: #54657b; /* Lighter version of 0A2342 for text on dark blue */
}

.page-cockfighting-betting-types {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-cockfighting-betting-types-text-dark);
    background-color: var(--page-cockfighting-betting-types-background-light);
}

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

/* Hero Section */
.page-cockfighting-betting-types__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Adjusted for better content visibility */
    background-color: var(--page-cockfighting-betting-types-primary-color);
    color: var(--page-cockfighting-betting-types-text-light);
    overflow: hidden;
    padding: 80px 0;
}

.page-cockfighting-betting-types__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.page-cockfighting-betting-types__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-cockfighting-betting-types-text-light);
    line-height: 1.2;
}

.page-cockfighting-betting-types__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: var(--page-cockfighting-betting-types-text-light);
}

.page-cockfighting-betting-types__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make background image subtle */
    z-index: 1;
}

/* General Section Styling */
.page-cockfighting-betting-types__section {
    padding: 60px 0;
    background-color: var(--page-cockfighting-betting-types-background-light);
    color: var(--page-cockfighting-betting-types-text-dark);
}

.page-cockfighting-betting-types__section:nth-of-type(even) {
    background-color: #f9f9f9; /* Slightly different background for alternating sections */
}

.page-cockfighting-betting-types__section-title {
    font-size: 2.5em;
    color: var(--page-cockfighting-betting-types-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-cockfighting-betting-types__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-cockfighting-betting-types-secondary-color);
    border-radius: 2px;
}

.page-cockfighting-betting-types__sub-title {
    font-size: 1.8em;
    color: var(--page-cockfighting-betting-types-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.page-cockfighting-betting-types__section p {
    font-size: 1.1em;
    margin-bottom: 1em;
    text-align: justify;
}

.page-cockfighting-betting-types__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-cockfighting-betting-types__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-cockfighting-betting-types__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--page-cockfighting-betting-types-secondary-color);
    font-weight: bold;
    font-size: 1.2em;
    top: -2px;
}

/* Highlight text */
.page-cockfighting-betting-types .highlight {
    color: var(--page-cockfighting-betting-types-secondary-color);
    font-weight: bold;
}

/* Call to Action Button */
.page-cockfighting-betting-types__cta-button {
    display: inline-block;
    background-color: var(--page-cockfighting-betting-types-secondary-color);
    color: var(--page-cockfighting-betting-types-primary-color); /* Text on gold should be dark */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--page-cockfighting-betting-types-secondary-color);
}

.page-cockfighting-betting-types__cta-button:hover {
    background-color: var(--page-cockfighting-betting-types-accent-gold-dark);
    color: var(--page-cockfighting-betting-types-text-light);
    transform: translateY(-3px);
    border-color: var(--page-cockfighting-betting-types-accent-gold-dark);
}

.page-cockfighting-betting-types__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
}

/* Image Styling */
.page-cockfighting-betting-types__image-content {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-cockfighting-betting-types__image-small {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin: 15px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Grid for Bet Types */
.page-cockfighting-betting-types__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-cockfighting-betting-types__grid-item {
    background-color: var(--page-cockfighting-betting-types-background-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-cockfighting-betting-types-primary-color);
}

.page-cockfighting-betting-types__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-cockfighting-betting-types__grid-item h3 {
    color: var(--page-cockfighting-betting-types-primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* CTA Section Specific */
.page-cockfighting-betting-types__cta-section {
    background-color: var(--page-cockfighting-betting-types-background-dark);
    color: var(--page-cockfighting-betting-types-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-cockfighting-betting-types__cta-section .page-cockfighting-betting-types__section-title {
    color: var(--page-cockfighting-betting-types-secondary-color);
}

.page-cockfighting-betting-types__cta-section .page-cockfighting-betting-types__section-title::after {
    background-color: var(--page-cockfighting-betting-types-text-light);
}

.page-cockfighting-betting-types__cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-cockfighting-betting-types__contact-link {
    color: var(--page-cockfighting-betting-types-secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-cockfighting-betting-types__contact-link:hover {
    color: var(--page-cockfighting-betting-types-accent-gold-dark);
    text-decoration: underline;
}

.page-cockfighting-betting-types__cta-text {
    margin-top: 25px;
}

.page-cockfighting-betting-types__image-content--cta {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-cockfighting-betting-types__main-title {
        font-size: 2.8em;
    }
    .page-cockfighting-betting-types__subtitle {
        font-size: 1.2em;
    }
    .page-cockfighting-betting-types__section-title {
        font-size: 2em;
    }
    .page-cockfighting-betting-types__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-betting-types__hero-section {
        min-height: 400px;
        padding: 60px 0;
    }
    .page-cockfighting-betting-types__main-title {
        font-size: 2.2em;
    }
    .page-cockfighting-betting-types__subtitle {
        font-size: 1em;
    }
    .page-cockfighting-betting-types__section {
        padding: 40px 0;
    }
    .page-cockfighting-betting-types__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-cockfighting-betting-types__sub-title {
        font-size: 1.4em;
    }
    .page-cockfighting-betting-types__grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-betting-types__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-cockfighting-betting-types__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-betting-types__hero-section {
        min-height: 350px;
        padding: 40px 0;
    }
    .page-cockfighting-betting-types__main-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-types__subtitle {
        font-size: 0.9em;
    }
    .page-cockfighting-betting-types__section {
        padding: 30px 0;
    }
    .page-cockfighting-betting-types__section-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }
    .page-cockfighting-betting-types__sub-title {
        font-size: 1.2em;
    }
    .page-cockfighting-betting-types__list li {
        font-size: 1em;
    }
    .page-cockfighting-betting-types__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-cockfighting-betting-types__cta-button--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}