/* style/cockfighting-rules-watching.css */
.page-cockfighting-rules-watching {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #0A2342; /* Main background color */
    line-height: 1.6;
}

.page-cockfighting-rules-watching__hero {
    background: linear-gradient(135deg, #0A2342 0%, #2a4a75 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-cockfighting-rules-watching__hero-content {
    max-width: 900px;
    z-index: 10;
    position: relative;
}

.page-cockfighting-rules-watching__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-rules-watching__hero-description {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-cockfighting-rules-watching__hero-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-cockfighting-rules-watching__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 5px;
    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-rules-watching__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-cockfighting-rules-watching__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.15; /* Subtle background image */
    z-index: 1;
}

.page-cockfighting-rules-watching__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
}

.page-cockfighting-rules-watching__section {
    padding: 60px 20px;
    text-align: center;
}

.page-cockfighting-rules-watching__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-cockfighting-rules-watching__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-rules-watching__section-description {
    font-size: 1.1em;
    color: #E0E0E0;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-cockfighting-rules-watching__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

@media (min-width: 768px) {
    .page-cockfighting-rules-watching__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-cockfighting-rules-watching__content-grid--reverse {
        grid-template-columns: 1fr 1fr;
    }
    .page-cockfighting-rules-watching__content-grid--reverse .page-cockfighting-rules-watching__text-block {
        order: 2;
    }
    .page-cockfighting-rules-watching__content-grid--reverse .page-cockfighting-rules-watching__image-wrapper {
        order: 1;
    }
}

.page-cockfighting-rules-watching__text-block {
    background-color: #1A3A5B; /* Slightly lighter dark blue for content blocks */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-rules-watching__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-cockfighting-rules-watching__mini-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-cockfighting-rules-watching__text-block p,
.page-cockfighting-rules-watching__text-block ul {
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-cockfighting-rules-watching__text-block ul {
    list-style-type: disc;
    padding-left: 20px;
}

.page-cockfighting-rules-watching__text-block li {
    margin-bottom: 8px;
}

.page-cockfighting-rules-watching__text-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-cockfighting-rules-watching__text-link:hover {
    color: #e6c200;
}

.page-cockfighting-rules-watching__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-cockfighting-rules-watching__section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-rules-watching__advantage-grid,
.page-cockfighting-rules-watching__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-rules-watching__advantage-item,
.page-cockfighting-rules-watching__feature-item {
    background-color: #1A3A5B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-cockfighting-rules-watching__advantage-item:hover,
.page-cockfighting-rules-watching__feature-item:hover {
    transform: translateY(-5px);
}

.page-cockfighting-rules-watching__advantage-item h3,
.page-cockfighting-rules-watching__feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-cockfighting-rules-watching__advantage-item p,
.page-cockfighting-rules-watching__feature-item p {
    color: #E0E0E0;
}

.page-cockfighting-rules-watching__image-wrapper--full-width {
    margin-top: 40px;
}

.page-cockfighting-rules-watching__why-debet .page-cockfighting-rules-watching__closing-statement {
    font-size: 1.2em;
    margin-top: 50px;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-cockfighting-rules-watching__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-cockfighting-rules-watching__hero-title {
        font-size: 3em;
    }
    .page-cockfighting-rules-watching__section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 767px) {
    .page-cockfighting-rules-watching__hero {
        padding: 60px 15px;
    }
    .page-cockfighting-rules-watching__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting-rules-watching__hero-description {
        font-size: 1em;
    }
    .page-cockfighting-rules-watching__section {
        padding: 40px 15px;
    }
    .page-cockfighting-rules-watching__section-title {
        font-size: 2em;
    }
    .page-cockfighting-rules-watching__sub-title {
        font-size: 1.5em;
    }
    .page-cockfighting-rules-watching__mini-title {
        font-size: 1.1em;
    }
    .page-cockfighting-rules-watching__text-block {
        padding: 20px;
    }
    .page-cockfighting-rules-watching__advantage-grid,
    .page-cockfighting-rules-watching__feature-grid {
        gap: 20px;
    }
    .page-cockfighting-rules-watching__advantage-item,
    .page-cockfighting-rules-watching__feature-item {
        padding: 20px;
    }
    .page-cockfighting-rules-watching__cta-button--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-cockfighting-rules-watching__content-grid--reverse .page-cockfighting-rules-watching__text-block {
        order: unset;
    }
    .page-cockfighting-rules-watching__content-grid--reverse .page-cockfighting-rules-watching__image-wrapper {
        order: unset;
    }
}