body {
    font-family: "Open Sans", sans-serif;
    color: #000;
    background: #f5f5f5;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/* Enhanced Events Section */
.events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    padding-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #000;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #DEAD3C;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    color: #666;
    margin-bottom: 0;
    font-size: 16px;
}

/* Event Cards */
.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.event-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-image {
    transform: scale(1.15);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #DEAD3C, #997729);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(222, 173, 60, 0.4);
    z-index: 2;
}

.event-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #24325d;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: "Raleway", sans-serif;
}

.event-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.9rem;
}

.meta-item i {
    color: #DEAD3C;
    font-size: 18px;
}

.event-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #DEAD3C;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-cta:hover {
    gap: 12px;
    color: #997729;
}

.event-cta i {
    transition: transform 0.3s ease;
}

.event-cta:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .event-image-wrapper {
        height: 220px;
    }

    .event-content {
        padding: 24px;
    }

    .event-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 24px;
    }

    .event-badge {
        top: 15px;
        right: 15px;
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.event-card:nth-child(1) {
    animation-delay: 0.1s;
}

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

.event-card:nth-child(3) {
    animation-delay: 0.3s;
}