#upcoming-festivals-section {
    background-color: #FFFFFF; /* Clean white background */
    padding: 80px 0;
    /* background-image: url('../images/background/events-bg.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    position: relative; /* Needed for potential overlays */
}

#upcoming-festivals-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

#upcoming-festivals-section .subtitle span {
    position: relative;
}

#upcoming-festivals-section .subtitle span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px; /* Adjust as needed */
    height: 2px;
    background-color: #007bff; /* Subtle blue underline */
}

#upcoming-festivals-section .title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #db4242; /* Accent red color */
    margin-bottom: 40px;
}

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

.event-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.event-image {
    width: 100%;
    height: 240px;
    object-fit: cover; /* Cover the area, cropping if necessary */
    border-bottom: 1px solid #eee;
}

.event-info-block {
    padding: 20px;
    background-color: #fff;
}

.event-category {
    font-size: 0.9rem;
    color: #db4242;
    margin-bottom: 10px;
}

.event-date,
.event-duration {
    font-size: 0.95rem;
    color: #db4242;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-weight: bold;
}

.event-date img,
.event-duration img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.event-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #db4242;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}
