/* style/resources.css */
.page-resources {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-resources__section {
    padding: 60px 0;
}

.page-resources__section-title {
    font-size: 2.5em;
    color: #0A6847;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

/* Hero Section */
.page-resources__hero {
    background: linear-gradient(135deg, #0A6847 0%, #157d5a 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-resources__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:hero:daga_arena,crowd,excitement]') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.page-resources__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-resources__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-resources__btn {
    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;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-resources__btn--primary {
    background-color: #FFD700;
    color: #0A6847;
}

.page-resources__btn--primary:hover {
    background-color: #e6c200;
}

.page-resources__btn--secondary {
    background-color: #0A6847;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources__btn--secondary:hover {
    background-color: #074a33;
    color: #fff;
    border-color: #fff;
}

/* Intro Section */
.page-resources__intro {
    background-color: #fff;
}

/* Topics Grid */
.page-resources__topics {
    background-color: #f0f0f0;
}

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

.page-resources__topic-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0A6847;
}

.page-resources__topic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources__topic-title {
    font-size: 1.5em;
    color: #0A6847;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources__topic-description {
    color: #555;
    font-size: 0.95em;
}

/* Articles Grid */
.page-resources__articles {
    background-color: #f8f8f8;
}

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

.page-resources__article-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources__article-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-resources__article-title {
    font-size: 1.4em;
    color: #0A6847;
    padding: 15px 20px 10px;
    font-weight: bold;
}

.page-resources__article-title a {
    text-decoration: none;
    color: inherit;
}

.page-resources__article-title a:hover {
    color: #FFD700;
}

.page-resources__article-summary {
    padding: 0 20px 15px;
    color: #555;
    font-size: 0.95em;
    flex-grow: 1;
}

.page-resources__article-card .page-resources__btn {
    margin: 0 20px 20px;
    align-self: flex-start;
}

/* CTA Banner */
.page-resources__cta-banner {
    background: linear-gradient(90deg, #0A6847, #157d5a);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-resources__cta-content {
    max-width: 900px;
}

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

.page-resources__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* FAQ Section */
.page-resources__faq {
    background-color: #fff;
}

.page-resources__faq-item {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources__faq-question {
    font-size: 1.3em;
    color: #0A6847;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources__faq-answer {
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources__hero-title {
        font-size: 2.8em;
    }
    .page-resources__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources__section-title {
        font-size: 2em;
    }
    .page-resources__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-resources__hero {
        padding: 80px 0;
    }
    .page-resources__hero-title {
        font-size: 2.2em;
    }
    .page-resources__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources__topics-grid, .page-resources__articles-grid {
        grid-template-columns: 1fr;
    }
    .page-resources__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources__cta-title {
        font-size: 1.8em;
    }
    .page-resources__cta-description {
        font-size: 1em;
    }
    .page-resources__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-resources__hero {
        padding: 60px 0;
    }
    .page-resources__hero-title {
        font-size: 1.8em;
    }
    .page-resources__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-resources__section-title {
        font-size: 1.6em;
    }
    .page-resources__article-title {
        font-size: 1.2em;
    }
    .page-resources__cta-title {
        font-size: 1.6em;
    }
}