#section {
    padding: 0px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4A8B;
    margin-bottom: 2rem;
    position: relative;
    margin-top: 240px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ffd89b, #ff9a9e);
    border-radius: 2px;
}

/* Activity Cards */
.activity-grid {
    display: grid;
    gap: 4rem;
    margin-bottom: 5rem;
}

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 90px;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-header {
    background: linear-gradient(135deg, #8B4A8B, #D19ED1);
    color: white;
    padding: 2rem;
    text-align: center;
}

.activity-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.activity-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.activity-content {
    padding: 2rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-item-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.video-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Events Section */
.events-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #8B4A8B;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-date {
    background: linear-gradient(135deg, #8B4A8B, #D19ED1);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.event-date .month {
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-info {
    flex-grow: 1;
}

.event-info h3 {
    color: #8B4A8B;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.event-info .event-type {
    display: inline-block;
    background: #f8f9fa;
    color: #8B4A8B;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.event-details {
    color: #666;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #777;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Info Section */
.info-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-section h3 {
    color: #8B4A8B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.modal-content img,
.modal-content video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 80vh;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}



/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .container {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .activity-header h2 {
        font-size: 1.5rem;
    }

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

    .event-header {
        flex-direction: column;
        align-items: stretch;
    }

    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}