/* Resources page styles */

/* Page header */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/resources/livestream.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 4.5rem;
}

.header-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.header-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Resource overview */
.resource-overview {
    padding: 4rem 0;
    background-color: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.overview-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.overview-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.overview-icon .icon {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.overview-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-content p {
    font-size: 2.75rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.overview-content span {
    color: var(--text-light);
    font-size: 1rem;
}

/* Core advantages */
.core-advantages {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.advantage-image {
    height: 16rem;
    overflow: hidden;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-image img {
    transform: scale(1.05);
}

.advantage-content {
    padding: 2rem;
}

.advantage-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.advantage-list {
    list-style: none;
}

.advantage-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.advantage-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Join us */
.join-us {
    padding: 6rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.join-content {
    max-width: 48rem;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-content p {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.join-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .join-buttons {
        flex-direction: column;
    }

    .join-content h2 {
        font-size: 2rem;
    }
} 