/* ==========================================================================
   Family Rave Day - Event List Module
   PAARS achtergrond, GEEL accenten, WIT tekst, POPPINS font
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap");

/* ---------- Container ---------- */
.frd-events {
    background: transparent !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 0 !important;
}

/* ---------- Section Title ---------- */
.frd-events__title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 44px !important;
    font-weight: 900 !important;
    color: #5E16EB !important;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

/* ---------- List ---------- */
.frd-events__list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---------- Row ---------- */
.frd-events__row {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    background: #5E16EB !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    transition: background-color 0.2s ease;
    position: relative;
}

.frd-events__row:first-child {
    border-radius: 12px 12px 0 0;
}

.frd-events__row:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: none !important;
}

.frd-events__row:only-child {
    border-radius: 12px;
}

.frd-events__row:hover {
    background-color: #6D2CF5 !important;
}

/* ---------- Date Block (LEFT) ---------- */
.frd-events__date {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    flex-shrink: 0;
}

.frd-events__day {
    font-family: 'Poppins', sans-serif !important;
    font-size: 42px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
}

.frd-events__month {
    font-family: 'Poppins', sans-serif !important;
    font-size: 42px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    color: #FFE500 !important;
    line-height: 1 !important;
}

.frd-events__year {
    display: none !important;
}

/* ---------- Divider ---------- */
.frd-events__divider {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15) !important;
    margin: 0 30px;
    flex-shrink: 0;
    border-radius: 1px;
}

/* ---------- Info (CENTER) ---------- */
.frd-events__info {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.frd-events__event-name {
    font-family: 'Poppins', sans-serif !important;
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    white-space: nowrap;
    line-height: 1 !important;
    flex-shrink: 0;
}

.frd-events__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    text-transform: uppercase !important;
    white-space: nowrap;
}

.frd-events__pin {
    flex-shrink: 0;
    color: #FFE500 !important;
}

.frd-events__city {
    opacity: 0.8;
    color: #ffffff !important;
}

.frd-events__city::before {
    content: '\2022';
    margin: 0 5px;
}

/* ---------- Ticket Button (RIGHT) - GEEL ---------- */
.frd-events__action {
    flex-shrink: 0;
    margin-left: 30px;
}

.frd-events__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    background: #FFE500 !important;
    color: #363D3C !important;
}

.frd-events__btn:hover {
    background: #fff14d !important;
    color: #363D3C !important;
    text-decoration: none !important;
    transform: scale(1.05);
}

.frd-events__arrow {
    transition: transform 0.2s ease;
    color: #363D3C !important;
}

.frd-events__btn:hover .frd-events__arrow {
    transform: translateX(3px);
}

/* -- Disabled / Sold out -- */
.frd-events__btn--disabled {
    background: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.45) !important;
    cursor: not-allowed;
    pointer-events: none;
    border-radius: 50px;
}

/* -- Coming soon -- */
.frd-events__btn--soon {
    background: transparent !important;
    color: #FFE500 !important;
    border: 2px solid rgba(255, 229, 0, 0.4) !important;
    cursor: default;
    pointer-events: none;
    border-radius: 50px;
}

/* -- Sold out row -- */
.frd-events__row--sold_out {
    opacity: 0.5;
}

.frd-events__row--sold_out:hover {
    background-color: #5E16EB !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .frd-events {
        padding: 30px 15px !important;
    }

    .frd-events__title {
        font-size: 30px !important;
        margin-bottom: 24px;
    }

    .frd-events__row {
        flex-wrap: wrap;
        padding: 20px 15px;
        gap: 10px;
    }

    .frd-events__date {
        min-width: 70px;
    }

    .frd-events__day {
        font-size: 32px !important;
    }

    .frd-events__month {
        font-size: 13px !important;
    }

    .frd-events__divider {
        display: none;
    }

    .frd-events__info {
        flex: 1;
        min-width: 120px;
    }

    .frd-events__event-name {
        font-size: 24px !important;
    }

    .frd-events__location {
        font-size: 12px !important;
    }

    .frd-events__action {
        width: 100%;
        margin-left: 0;
        margin-top: 4px;
    }

    .frd-events__btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .frd-events__title {
        font-size: 24px !important;
    }

    .frd-events__row {
        padding: 16px 12px;
    }

    .frd-events__day {
        font-size: 28px !important;
    }

    .frd-events__event-name {
        font-size: 20px !important;
        white-space: normal;
    }
}