/* Custom Footer Styles */
.expanded-footer {
    background-color: #2c3e2c;
    color: #ecf0f1;
    padding: 60px 0 20px 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
}

    .footer-logo:hover {
        color: #7fbe41;
        text-decoration: none;
    }

.footer-logo-link {
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

    .footer-logo-link:hover {
        opacity: 0.8;
        text-decoration: none;
    }

.footer-logo-img {
    max-height: 130px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-section h5 {
    color: #ecf0f1;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #7fbe41;
        }

.contact-info p {
    color: #bdc3c7;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-info i {
    margin-right: 8px;
    color: #7fbe41;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #4a5c4a;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-bottom-text {
    color: #95a5a6;
    font-size: 0.9rem;
    line-height: 1.3;
}

.footer-text-line-1,
.footer-text-line-2,
.footer-text-line-3 {
    margin: 0;
    padding: 0;
}

.social-icons {
    text-align: right;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #4a5c4a;
    color: #ecf0f1;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background-color: #7fbe41;
        color: #fff;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .social-icon i {
        font-size: 16px;
    }

@media (max-width: 768px) {
    .social-icons {
        text-align: center;
        margin-top: 20px;
    }

    .footer-section {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-content {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-text {
        text-align: center;
    }
}

/* Events Section Styles */
.events-container {
    max-height: 600px;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

    .events-container::-webkit-scrollbar {
        width: 8px;
    }

    .events-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .events-container::-webkit-scrollbar-thumb {
        background: #7fbe41;
        border-radius: 10px;
    }

        .events-container::-webkit-scrollbar-thumb:hover {
            background: #94c83f;
        }

.event-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #7fbe41;
    transition: all 0.3s ease;
}

    .event-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(127, 190, 65, 0.2);
    }

    .event-item:last-child {
        margin-bottom: 0;
    }

.event-image {
    flex-shrink: 0;
    margin-right: 20px;
    width: 120px;
    height: 120px;
}

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 2px solid #7fbe41;
    }

.event-content {
    flex: 1;
}

.event-date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #7fbe41;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.event-list {
    margin-left: 0;
}

.event-entry {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

    .event-entry:last-child {
        margin-bottom: 0;
    }

.event-time {
    font-weight: 600;
    color: #495057;
    min-width: 80px;
    margin-right: 20px;
    font-size: 0.95rem;
    background-color: #7fbe41;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
}

.event-title {
    flex: 1;
    color: #343a40;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .event-image {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100px;
        height: 100px;
        align-self: center;
    }

    .event-entry {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }

    .event-time {
        margin-right: 0;
        margin-bottom: 8px;
        min-width: auto;
    }

    .events-container {
        max-height: 500px;
        padding: 15px;
    }
}
