/* style/cockfighting-arena-rules.css */
.page-cockfighting-arena-rules {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2342; /* Deep blue primary background */
}

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

.page-cockfighting-arena-rules__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-cockfighting-arena-rules__hero-content {
    max-width: 800px;
}

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

.page-cockfighting-arena-rules__hero-description {
    font-size: 1.2em;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.page-cockfighting-arena-rules__hero-image-wrapper {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-arena-rules__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.page-cockfighting-arena-rules__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-arena-rules__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub titles */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-cockfighting-arena-rules__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-cockfighting-arena-rules__text-content .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-cockfighting-arena-rules__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Deep blue text on gold button */
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-arena-rules__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-cockfighting-arena-rules__cta-button--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-cockfighting-arena-rules__cta-button--secondary:hover {
    background-color: #1a3a60;
    color: #FFD700;
    transform: translateY(-2px);
}

.page-cockfighting-arena-rules__inline-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-cockfighting-arena-rules__inline-link:hover {
    color: #e6c200;
}

.page-cockfighting-arena-rules__content-with-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.page-cockfighting-arena-rules__content-with-image--reverse {
    flex-direction: row-reverse;
}

.page-cockfighting-arena-rules__text-block {
    flex: 1;
    min-width: 300px;
}

.page-cockfighting-arena-rules__image-inline {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-arena-rules__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-arena-rules ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-cockfighting-arena-rules ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-cockfighting-arena-rules__hero-title {
        font-size: 2.5em;
    }
    .page-cockfighting-arena-rules__section-title {
        font-size: 2em;
    }
    .page-cockfighting-arena-rules__sub-title {
        font-size: 1.5em;
    }
    .page-cockfighting-arena-rules__content-with-image {
        flex-direction: column;
    }
    .page-cockfighting-arena-rules__content-with-image--reverse {
        flex-direction: column;
    }
    .page-cockfighting-arena-rules__image-inline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-arena-rules__hero-section {
        padding: 60px 15px;
    }
    .page-cockfighting-arena-rules__hero-title {
        font-size: 2em;
    }
    .page-cockfighting-arena-rules__hero-description {
        font-size: 1em;
    }
    .page-cockfighting-arena-rules__section {
        padding: 40px 0;
    }
    .page-cockfighting-arena-rules__section-title {
        font-size: 1.8em;
    }
    .page-cockfighting-arena-rules__sub-title {
        font-size: 1.3em;
    }
    .page-cockfighting-arena-rules__text-content {
        font-size: 0.95em;
    }
    .page-cockfighting-arena-rules__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-arena-rules__hero-title {
        font-size: 1.7em;
    }
    .page-cockfighting-arena-rules__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting-arena-rules__sub-title {
        font-size: 1.2em;
    }
}