/* --- Events Section --- */
.events-section {
    padding: 10% 10%;
    text-align: center;
    /* background-image set dynamically via data-field-bg */
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.45) 0%, rgba(21, 21, 21, 0.58) 100%);
    z-index: 1;
}

.events-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.events-title-main {
    font-family: var(--font-candlefish);
    font-size: 40px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
    width: 80%;
}

.events-date-main {
    font-family: var(--font-legan);
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.event-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-title {
    font-family: var(--font-primary);
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.event-description {
    font-family: var(--font-legan);
    font-size: 14px;
    color: #DDDDDD;
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid #FFFFFF;
    padding: 8px 20px;
    transition: all 0.3s;
}

.event-btn:hover {
    background: #FFFFFF;
    color: #000000;
}

@media (max-width: 768px) {
    .events-title-main {
        font-size: 32px;
    }
}