.eventsSection {
    padding: 60px 90px; 
    color: #fff;
    
}
@media (min-width: 569px) and (max-width: 1024px) {
    .eventsSection {
        padding: 17px 40px;
    }
}

@media (max-width: 568px) {
    .eventsSection {
        padding: 17px 16px;
    }
}

.eventsSection .container {
    max-width: 1440px;
    margin: 0 auto;
}

.eventsSection .title {
    text-transform: uppercase;
    color: #E45D50; 
    margin-bottom: 20px;
    font-family: 'Bungee Inline', sans-serif;
    font-size: 40px;
}

.eventsSection .events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 568px) {
    .eventsSection .events {
        display: none;
    }
}

.eventsSection .event {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.event.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 568px) {
    .eventsSection .event {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.eventsSection .event.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 568px) {
    .eventsSection .event.reverse {
        flex-direction: column;
    }
}

.eventsSection .image {
    flex: 1;
}

.eventsSection .image img {
    width: 100%;
    border-radius: 10px;
    opacity: 1; 
    transform: scale(1); 
    transition: all 0.6s ease;
}

.eventsSection .image img.animate-in {
    opacity: 1;
    transform: scale(1);
}

.eventsSection .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.eventsSection .titleUl {
    margin-bottom: 40px;
    color: white;
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 568px) {
    .eventsSection .titleUl {
        margin-bottom: 20px;
        font-size: 20px;
    }
}

.eventsSection .features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 568px) {
    .eventsSection .features {
        gap: 20px;
    }
}

.eventsSection .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eventsSection .feature img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.eventsSection .feature span {
    line-height: 1.5;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
}

.eventsSection .cta {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

@media (max-width: 568px) {
    .eventsSection .cta {
        justify-content: center;
    }
}

.eventsSection .btnlink {
    background-color: #CD447E; 
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 40px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    max-width: 200px;
}

@media (max-width: 568px) {
    .eventsSection .btnlink {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.eventsSection .btnlink:hover {
    background-color: #b93d6f;
    transform: scale(1.05);
}

.eventsSection .btnlink:active {
    transform: scale(0.98);
}

.eventsSection .btnlink img {
    width: 20px;
    height: 20px;
}
.event:nth-child(1) {
    transition-delay: 0.1s;
}

.event:nth-child(2) {
    transition-delay: 0.2s;
}

.event:nth-child(3) {
    transition-delay: 0.3s;
}
.event:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.event:hover .image img {
    transform: scale(1.02);
}
.image img[src=""] {
    background: #333;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image img[src=""]:after {
    content: 'Loading event image...';
    color: #fff;
}
@media (max-width: 480px) {
    .titleUl {
        font-size: 1.3rem;
    }
    
    .feature {
        gap: 8px;
    }
    
    .feature img {
        width: 16px;
        height: 16px;
    }
    
    .btnlink {
        padding: 10px 16px;
        margin-top: 20px;
    }
}
