/* style/cockfighting-arena-history.css */
.page-cockfighting-arena-history {
    font-family: 'Arial', sans-serif;
    color: #f5dcbd; /* Light text for dark background */
    background-color: #0A2342; /* Main dark blue background */
}

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

.page-cockfighting-arena-history__hero {
    background: linear-gradient(135deg, #0A2342, #1a3a60);
    color: #FFD700; /* Gold text for hero section */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-cockfighting-arena-history__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-cockfighting-arena-history__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-cockfighting-arena-history__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(50%) blur(2px);
    transform: scale(1.05);
}

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

.page-cockfighting-arena-history__subtitle {
    font-size: 1.4em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #f5dcbd;
}

.page-cockfighting-arena-history__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    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-arena-history__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-cockfighting-arena-history__cta-button--secondary {
    background-color: #0A2342; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue button */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-cockfighting-arena-history__cta-button--secondary:hover {
    background-color: #1a3a60;
    border-color: #f5dcbd;
}

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

.page-cockfighting-arena-history__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-cockfighting-arena-history__section:last-of-type {
    border-bottom: none;
}

.page-cockfighting-arena-history__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-cockfighting-arena-history__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-cockfighting-arena-history__content-grid.reverse-grid {
    grid-template-columns: 1fr 1fr;
}

.page-cockfighting-arena-history__content-grid.reverse-grid .page-cockfighting-arena-history__image-wrapper {
    order: 2;
}

.page-cockfighting-arena-history__content-grid.reverse-grid .page-cockfighting-arena-history__text-content {
    order: 1;
}

.page-cockfighting-arena-history__text-content h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-cockfighting-arena-history__text-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f5dcbd;
}

.page-cockfighting-arena-history__image-wrapper {
    text-align: center;
}

.page-cockfighting-arena-history__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-arena-history__image-caption {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 15px;
    font-style: italic;
}

.page-cockfighting-arena-history__cta-group {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.page-cockfighting-arena-history__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-cockfighting-arena-history__conclusion p {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
}

.highlight-keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-cockfighting-arena-history__title {
        font-size: 2.8em;
    }
    .page-cockfighting-arena-history__subtitle {
        font-size: 1.2em;
    }
    .page-cockfighting-arena-history__section-title {
        font-size: 2em;
    }
    .page-cockfighting-arena-history__content-grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-arena-history__content-grid.reverse-grid .page-cockfighting-arena-history__image-wrapper,
    .page-cockfighting-arena-history__content-grid.reverse-grid .page-cockfighting-arena-history__text-content {
        order: unset;
    }
    .page-cockfighting-arena-history__cta-button--secondary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-arena-history__hero {
        padding: 80px 0;
    }
    .page-cockfighting-arena-history__title {
        font-size: 2.2em;
    }
    .page-cockfighting-arena-history__subtitle {
        font-size: 1em;
    }
    .page-cockfighting-arena-history__section {
        padding: 40px 0;
    }
    .page-cockfighting-arena-history__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-cockfighting-arena-history__text-content h3 {
        font-size: 1.5em;
    }
    .page-cockfighting-arena-history__text-content p {
        font-size: 0.95em;
    }
    .page-cockfighting-arena-history__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-cockfighting-arena-history__cta-group {
        flex-direction: column;
        align-items: center;
    }
    .page-cockfighting-arena-history__cta-button--secondary {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-arena-history__title {
        font-size: 1.8em;
    }
    .page-cockfighting-arena-history__subtitle {
        font-size: 0.9em;
    }
    .page-cockfighting-arena-history__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting-arena-history__cta-button {
        width: 100%;
        max-width: 280px;
    }
    .page-cockfighting-arena-history__cta-button--large {
        width: 100%;
        max-width: 300px;
    }
}