/* -- 7. Event Invite Section -- */
.section-event-invite {
    position: relative;
    background-image: url('/static/img/landing/event_invite_bg_new.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.event-invite-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    /* Align bottom as per design? Or standard center? Design shows image thumbs bottom left, text box right. Let's do a flex row. */
    gap: 40px;
}

.event-thumbnails {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: -50px;
    /* Pull them down a bit to overlap or just sit low? Design shows them floating. */
    position: relative;
    z-index: 2;
}

.event-thumb {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: transform 0.3s;
}

.event-thumb.active {
    border-color: #c5a47e;
    /* Gold border */
}

.event-info-card {
    background: rgba(0, 0, 0, 0.85);
    /* Dark overlay */
    padding: 60px;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.event-title {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.event-desc {
    font-size: 14px;
    line-height: 2;
    /* Loose leading */
    color: #ddd;
    margin-bottom: 50px;
    text-align: justify;
}

.event-actions {
    display: flex;
    gap: 20px;
}

.btn-event {
    padding: 12px 40px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #fff;
    color: #fff;
}

.btn-event-outline {
    background: transparent;
}

.btn-event-outline:hover {
    background: #fff;
    color: #333;
}

.btn-event-gold {
    background: #c5a47e;
    border-color: #c5a47e;
    color: #333;
}

.btn-event-gold:hover {
    background: #b08d66;
}

@media (max-width: 768px) {
    .event-invite-container {
        flex-direction: column-reverse;
    }

    .event-thumbnails {
        margin-bottom: 20px;
        justify-content: center;
        width: 100%;
    }

    .event-thumb {
        width: 100px;
        height: 100px;
    }

    .event-info-card {
        padding: 30px;
        width: 100%;
    }

    .event-title {
        font-size: 24px;
    }
}