/* ===== EventPro Modern Card Design ===== */

.ep-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e1e1e1;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ep-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #804CE4FF;
}

/* ===== Detail Row (Vuexy Style) ===== */

.ep-detail-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 12px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #eef0f4;
    transition: all 0.25s ease;
}

.ep-detail-item:hover {
    background: #ffffff;
    border-color: #804CE4FF;
    box-shadow: 0 6px 16px rgba(128,76,228,0.12);
}

/* ===== Icon Column (Fixed Width) ===== */

.ep-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

/* ===== Text Area ===== */

.ep-text {
    display: flex;
    align-items: center;
    width: 100%;
}

/* ===== Label Column (Alignment Control) ===== */

.ep-label {
    width: 130px; /* 🔥 Venue & Location start from same line */
    font-size: 13px;
    font-weight: 700;
    color: #804CE4FF;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    flex-shrink: 0;
}

/* ===== Value Column ===== */

.ep-value {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
}

/* ===== Contact Area ===== */

.ep-contact-area {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.ep-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #804CE4FF;
    color: #ffffff !important;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #804CE4FF;
    transition: all 0.3s ease;
    min-width: 250px;
}

.ep-contact-btn:hover {
    background: #ffffff;
    color: #804CE4FF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128,76,228,0.2);
}

.ep-contact-btn.ep-login {
    background: #666666;
    border-color: #666666;
}

.ep-contact-btn.ep-login:hover {
    background: #ffffff;
    color: #666666 !important;
    box-shadow: 0 4px 12px rgba(102,102,102,0.2);
}

.ep-btn-icon {
    font-size: 16px;
}

/* ===== Mobile Responsive ===== */

@media (max-width: 768px) {
    .ep-card {
        padding: 20px;
        margin: 20px 0;
    }

    .ep-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .ep-label {
        width: auto;
        font-size: 12px;
    }

    .ep-contact-btn {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .ep-detail-item {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .ep-icon {
        margin: 0 0 10px 0;
    }

    .ep-text {
        align-items: center;
        text-align: center;
    }
}
